/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    background: radial-gradient(circle,rgba(48, 0, 0, 1) 0%, rgba(176, 0, 0, 1) 100%);
}

/* Poppins Font Weights */
.poppins-light { font-weight: 300; }
.poppins-regular { font-weight: 400; }
.poppins-medium { font-weight: 500; }
.poppins-semibold { font-weight: 600; }
.poppins-bold { font-weight: 700; }

/* Layout */
.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
}
nav {
    flex: 1;
    text-align: right;
}
nav ul {
    display: inline-block;
    list-style-type: none;
}
nav ul li {
    display: inline-block;
    margin-right: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #FFFFFF;
}

/* Header Hero */
.header {
    background:
        radial-gradient(#C0BFC9,#D9AEF2),
        url("sokss.gif");
    background-size: cover;
    background-position: center;        /* ← fixed typo */
    background-blend-mode: overlay;
    margin-bottom: 70px;
}
.header .row {
    margin-top: 70px;
}
.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img {
    max-width: 100%;
    padding: 50px 0;
}
.col-2 h1 {
    font-size: 65px;
    line-height: 70px;
    margin: 25px 0;
}
.btn {
    display: inline-block;
    background: #B00000;
    color: #DECCCC;
    padding: 10px 30px;
    margin: 20px 0;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.5s;

    /* Visual upgrades you liked */
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(176, 0, 0, 0.7);
}

.btn:hover {
    background: #905EAB;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(144, 94, 171, 0.5);
}

/* Categories */
.categories {
    margin: 70px 0;
}
.col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}
.col-3 img {
    width: 100%;
    border-radius: 10px;
}

/* Products */
.col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.col-4 img {
    width: 100%;
    border-radius: 10px;
}
.col-4:hover {
    transform: translateY(-10px);
}
.title {
    text-align: center;
    margin: 40px auto 40px;
    position: relative;
    line-height: 60px;
    color: #FFF;
    font-size: 28px;
}
.title::after {
    content: '';
    background: #FF0000;
    width: 130px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
h4 {
    color: #FFF;
    font-weight: normal;
    margin: 10px 0;
}
.col-4 p {
    font-size: 14px;
    color: #FFF;
}
.rating .fa {
    color: #FF0000;
    font-size: 14px;
}
.col-2 {
    transition: transform 0.5s;
}
.col-2:hover {
    transform: translateY(-10px);
}

/* Offer Section */
.offer {
    background: radial-gradient(#969696, #000000);
    margin-top: 80px;
    padding: 30px 0;
}
.offer-img {
    padding: 50px;
    max-width: 100%;
}
small {
    color: #FFFFFF;
    line-height: 1.6;
}

/* Testimonials */
.testimonial {
    padding-top: 100px;
}
.testimonial .col-3 {
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s;
    border-radius: 10px;
    background: radial-gradient(#FFFFFF, #B0B0B0);
}
.testimonial .col-3 img {
    width: 60px;
    height: 60px;
    margin-top: 20px;
    border-radius: 50%;
}
.testimonial .col-3:hover {
    transform: translateY(-10px);
}
.fa-quote-left {
    font-size: 34px;
    color: #9E0000;
}
.testimonial .col-3 p {
    font-size: 14px;
    margin: 12px 0;
    color: #777;
}
.testimonial .col-3 h3 {
    font-weight: 600;
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

/* Brands */
.brands {
    margin: 100px auto;
}
.col-5 {
    width: 160px;
    padding: 10px;
}
.col-5 img {
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.5s;
}
.col-5 img:hover {
    filter: grayscale(0);
}

/* Footer */
.footer {
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
    margin-top: 100px;
    text-align: center;                /* helps center everything on mobile */
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;           /* centers all columns */
    gap: 40px;                          /* clean spacing instead of space-between */
    align-items: flex-start;
}

/* Mobile: one centered column per row */
.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    flex-basis: 100%;
    max-width: 400px;
    min-width: 250px;
    margin-bottom: 40px;
    padding: 0 15px;
}

/* Desktop layout (3 columns) */
@media (min-width: 768px) {
    .footer-col-1 { flex-basis: 30%; }
    .footer-col-2,
    .footer-col-3 { flex-basis: 30%; }
    .footer-col-4 { display: none; }   /* if you don’t have a 4th column */
}

/* Titles and links */
.footer h3 {
    color: #FFFFFF;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.3s;
}
.footer ul li a:hover {
    color: #FFFFFF;
}

/* Full-width line above copyright */
.footer hr {
    width: 100%;
    max-width: none;
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 40px 0 20px 0;
}

/* Copyright always centered */
.copyright {
    text-align: center;
    color: #8a8a8a;
    padding: 20px 0;
    font-size: 13px;
    width: 100%;
}

/* Mobile responsiveness (cleaned up) */
.menu-icon {
    width: 28px;
    margin-left: 20px;
    display: none;
    cursor: pointer;
}
@media only screen and (max-width: 800px) {
    .menu-icon { display: block; }
    nav ul {
        position: absolute;
        top: 115px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
        z-index: 10;
    }
    nav ul li { display: block; margin: 15px 50px; }
    nav ul li a { color: #fff; }
    .logo { flex: 1 1 auto; margin-right: 20px; }
    .navbar { justify-content: space-between; }
    nav { flex: none; }
}

/* All Products Page */

.row-2{
  justify-content: space-between;
  margin: 100px auto 50px;
}

select{
background: #B00000;
color: white;
border: none;
padding: 12px 20px;
border-radius: 50px;
font-family: "Poppins", sans-serif;
font-weight: 600;
cursor: pointer;
box-shadow: 0 0 20px rgba(176,0,0,0.8);
transition: all 0.3s;
}

select:hover{
    background: #ff1a1a;
    transform: scale(1.05);
}

.page-btn {
  margin: 0 auto 80px;
  text-align: center;           /* centers the buttons horizontally */
  font-family: "Poppins", sans-serif;
}

.page-btn span {
  display: inline-block;
  background: #B00000;                  /* main red */
  color: white;
  border: none;
  margin-left: 10px;                     /* keeps your original spacing */
  width: 50px;                           /* a bit wider so numbers look good */
  height: 50px;
  line-height: 50px;                     /* vertically center the number */
  text-align: center;
  border-radius: 50px;                   /* fully rounded = pill shape */
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(176, 0, 0, 0.8);
  transition: all 0.3s ease;
  user-select: none;
}

/* Hover & Active states */
.page-btn span:hover {
  background: #ff1a1a;
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 30, 30, 0.9);
}

.page-btn span:active {
  transform: scale(0.98);
}

/* Optional: current/active page style */
.page-btn span.current {
  background: #ff1a1a;
  box-shadow: 0 0 30px rgba(255, 30, 30, 0.9);
  transform: scale(1.08);
  cursor: default;
}

/* Optional: disabled / unavailable pages (e.g. "..." or grayed) */
.page-btn span.disabled {
  background: #666;
  color: #ccc;
  box-shadow: none;
  cursor: not-allowed;
}

/*-- Single Product Details --*/
.single-product {
    margin-top: 80px;
}

.single-product .col-2 img {
    padding: 0;
    display: block;
    width: 100%;
    border-radius: 10px;
}

.single-product .col-2 {
    padding: 20px;
}

/* Text stays completely still */
.single-product h1,
.single-product h4,
.single-product p,
.single-product select,
.single-product input {
    transition: none !important;     /* prevents any movement */
}

/* Price */
.single-product h4 {
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
    color: #555;
}

/* Select & quantity input */
.single-product select {
    display: block;
    padding: 10px;
    margin-top: 20px;
    width: 100%;
    border: 1px solid #ff523b;
}

.single-product input[type="number"] {
    width: 60px;
    padding: 10px;
    margin-top: 20px;
    margin-right: 10px;
}

/* ADD TO CART BUTTON – only this moves up on hover */
.single-product .btn {
    display: inline-block;
    background: #B00000;
    color: #DECCCC;
    padding: 12px 40px;
    margin: 30px 0;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(176, 0, 0, 0.7);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.single-product .btn:hover {
    background: #905EAB;
    transform: translateY(-8px);           /* only the button lifts */
    box-shadow: 0 12px 30px rgba(144, 94, 171, 0.6);
}

/* Thumbnail gallery – only the hovered one moves */
.small-img-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.small-img-col:hover {
    border-color: #ff523b;
    transform: translateY(-10px);          /* only this thumbnail lifts */
    box-shadow: 0 10px 20px rgba(255, 82, 59, 0.3);
}

/* Active thumbnail (when clicked) */
.small-img-col.active {
    border-color: #ff523b;
    transform: translateY(-10px);
}



@media only screen and (max-width: 600px) {
    .row { text-align: center; }
    .col-2,.col-3,.col-4,.col-5 { flex-basis: 100%; margin-bottom: 30px; }
    .col-2 img { padding: 0; }
    .offer-img { padding: 20px; }
}
@media only screen and (max-width: 480px) {
    .col-2 h1 { font-size: 50px; line-height: 50px; margin: 5px 0; text-align: left; }
    .btn { text-align: left; }
    .brands img { width: 100px; }
    .header { background-position: right center; }
    .logo img { width: 290px; margin-left: -25px; }
}

/* ——— ONLY NEW THING: Simple Music Player (Neon Coast) ——— */
.simple-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#toggleMusic {
    background: #B00000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(176,0,0,0.8);
    transition: all 0.3s;
}
#toggleMusic:hover {
    background: #ff1a1a;
    transform: scale(1.05);
}

