.main-container {
    position: fixed;      
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 6px 24px;
    box-sizing: border-box;


    background: rgba(30, 5, 5, 0.97);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

/* ── LOGO ── */
.main-logo-icon {
    height: 100px;         
    transition: height 0.35s ease;
    flex-shrink: 0;
}


/* ── CENTER MENU ── */
.nav-menu {
    display: flex;
    gap: 36px;
    justify-content: center;
    flex: 1;
    min-width: 0;
    margin: 0 20px;
}

.menu {
    text-decoration: none;
    color: rgb(235, 125, 47);
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}


.menu:hover {
    color: #fff;

    }

/* ── RIGHT ICONS ── */
.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
    margin-right: 6px;
}

/* Login / Signup buttons */
.nav-icons .nav-menu {
    gap: 14px;
    flex: unset;
    margin: 0;
}

.nav-icons .menu {
    font-size: 15px;
    font-weight: 700;
    padding: 6px 16px;
    border: 2px solid rgb(235, 125, 47);
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.nav-icons .menu:hover {
    background: rgb(235, 125, 47);
    color: #fff;
}

.nav-icons .menu::after {
    display: none;
}

/* ── SEARCH WRAPPER ── */
.search-wrapper {
    position: relative;
    cursor: pointer;
}

.search-icon {
    display: flex;
    align-items: center;
}

.search-dropdown {
    position: absolute;
    top: 46px;
    right: 0;

    width: 240px;
    background: rgba(20, 10, 3, 0.97);
    border: 1px solid rgba(224, 123, 46, 0.25);
    border-radius: 10px;

    display: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 999;
}

.search-wrapper:hover .search-dropdown {
    display: block;
    animation: dropIn 0.2s ease;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(224, 123, 46, 0.2);
    background: transparent;
    color: #f5ede0;
    font-size: 14px;
    box-sizing: border-box;
}

.search-input::placeholder {
    color: #a07850;
}

.search-options a {
    display: block;
    padding: 9px 14px;
    text-decoration: none;
    color: #c9b090;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.search-options a:hover {
    background: rgba(224, 123, 46, 0.15);
    color: #f0a050;
}


.card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: orange;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s;
}

.btn:hover {
    background-color: darkorange;
}

#nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: rgb(235, 125, 47);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(30, 5, 5, 0.98);
        gap: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    #nav-toggle:checked + .main-container .nav-menu {
        max-height: 400px;
    }

    #nav-toggle:checked + .main-container .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #nav-toggle:checked + .main-container .hamburger span:nth-child(2) {
        opacity: 0;
    }
    #nav-toggle:checked + .main-container .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu {
        padding: 14px 24px;
        font-size: 17px;
        border-bottom: 1px solid rgba(235, 125, 47, 0.1);
    }

    .menu::after { display: none; }

    .nav-icons { gap: 12px; }
    .nav-icons .nav-menu { display: none; }
}


      :root {
          --primary: #c0392b;
          --primary-dark: #922b21;
          --gold: #d4a017;
          --gold-light: #f5e6c0;
          --cream: #fdf6ec;
          --dark: #2c1a0e;
          --text: #4a2f1a;
          --card-bg: #fff9f2;
          --shadow: rgba(44, 26, 14, 0.12);
      }

      body {
          font-family: 'Titillium Web', sans-serif;
          background-color:rgb(245, 233, 233);
          color: var(--text);
          margin: 0px;
          padding: 0px;
      }

      /* ── HERO BANNER ── */
      .bestsellers-hero {
          background: linear-gradient(135deg, #2c1a0e 0%, #5c2d0e 50%, #922b21 100%);
          padding: 20px;
          padding-top: 40px;
          padding-bottom: 15px;
          text-align: center;
          position: relative;
          overflow: hidden;   
          margin-top: 30px;
          margin-bottom: 5px;
      }

      .bestsellers-hero::before {
          content: '';
          position: absolute;
          inset: 0;
          background-image:
              radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(192, 57, 43, 0.2) 0%, transparent 50%);
      }

      .hero-badge {
          display: inline-block;
          background: var(--gold);
          color: #2c1a0e;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 2.5px;
          text-transform: uppercase;
          padding: 6px 18px;
          border-radius: 20px;
          margin-top: 45px;
          margin-bottom: 5px;
          position: relative;
      }

      .bestsellers-hero h1 {
           font-family: "Titillium Web", sans-serif; 
          font-size: 52px;
          color: #fff;
          font-weight: 700;
          line-height: 1.15;
          position: relative;
          margin-bottom: 14px;
          margin-top: 5px;
      }

      .bestsellers-hero h1 span {
          color: var(--gold);
      }

      .bestsellers-hero p {
          color: rgba(255, 255, 255, 0.75);
          font-size: 16px;
          font-weight: 300;
          max-width: 480px;
          margin: 0 auto;
          position: relative;
      }
      .section-label {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 8px 48px 24px;
        max-width: 1200px;
        margin: 0 auto;
      }
 
      .section-label::before,
      .section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(to right, transparent, #d4a017, transparent);
      }
 
      .section-label span {
        font-family: "Titillium Web", sans-serif; 
        font-size: 18px;
        color: var(--gold);
        white-space: nowrap;
        font-style: italic;
      }
 

      /* ── FILTER TABS ── */
      .filter-section {
          display: flex;
          justify-content: center;
          gap: 12px;
          padding: 32px 48px 20px;
          flex-wrap: wrap;
      }

      .filter-btn {
          padding: 9px 22px;
          border: 2px solid #e0cdb8;
          background: #fff;
          color: var(--text);
          border-radius: 24px;
          font-family: "Titillium Web", sans-serif; 
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.2s;
          letter-spacing: 0.3px;
      }

      .filter-btn:hover {
          border-color: var(--primary);
          color: var(--primary);
      }

      .filter-btn.active {
          background: var(--primary);
          border-color: var(--primary);
          color: #fff;
      }



      /* ── BESTSELLER GRID ── */
      .bestsellers-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
          gap: 28px;
          padding: 0 48px 64px;
          max-width: 1300px;
          margin: 0 auto;
      }

      /* ── PRODUCT CARD ── */
      .bs-card {
          background: var(--card-bg);
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 4px 20px var(--shadow);
          transition: transform 0.25s, box-shadow 0.25s;
          position: relative;
      }

      .bs-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 12px 36px rgba(24, 17, 12, 0.18);
      }

      /* Rank badge */
      .rank-badge {
          position: absolute;
          top: 14px;
          left: 14px;
          width: 70px;
          height: 25px;
          border-radius: 10px;
          background: var(--primary);
          color: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 400;
          font-size: 13px;
          z-index: 2;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
          background-color: #fffefe;
      }

      .rank-badge.bronze {
          background:rgb(239, 211, 211);
          color: #000000;
      }

      /* Hot label */
      .hot-label {
          position: absolute;
          top: 14px;
          right: 14px;
          background: #e74c3c;
          color: #fff;
          font-size: 10px;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          padding: 4px 10px;
          border-radius: 10px;
          z-index: 2;
      }

      .new-label {
          background: #27ae60;
      }

      .card-img-wrap {
          height: 200px;
          overflow: hidden;
          background: #f0e6d6;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .card-img-wrap img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s ease;
      }

      .bs-card:hover .card-img-wrap img {
          transform: scale(1.06);
      }

      .card-body {
          padding: 18px 20px 20px;
      }

      .card-body h3 {  
          font-family: "Titillium Web", sans-serif; 
          font-size: 20px;
          color: var(--dark);
          margin-bottom: 5px;
      }

      .card-body p {
          font-size: 13.5px;
          color: #7a5c3e;
          margin-bottom: 12px;
          font-weight: 300;
      }

      /* Stars */
      .stars {
          display: flex;
          align-items: center;
          gap: 4px;
          margin-bottom: 14px;
      }

      .star {
          color: var(--gold);
          font-size: 14px;
      }

      .rating-count {
          font-size: 12px;
          color: #9e7d5e;
          margin-left: 4px;
      }

      /* Price + CTA */
      .card-footer {
          display: flex;
          align-items: center;
          justify-content: space-between;
      }

      .price-wrap {
          display: flex;
          flex-direction: column;
      }

      .price {
          font-size: 20px;
          font-weight: 700;
          color: var(--primary);
      }

      .price-old {
          font-size: 12px;
          color: #aaa;
          text-decoration: line-through;
      }

      
button {
        background: rgb(113, 18, 18);
          color: #fff;
          border: none;
          padding: 9px 18px;
          border-radius: 24px;
          font-family: 'Titillium Web', sans-serif;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          transition: background 0.2s, transform 0.1s;
          letter-spacing: 0.4px;
}

button:hover {
    background: #4c531c;
}


/* Footer */
.footer{
    background:rgb(47, 1, 1);
    color: #fff;
    padding: 30px 0;  
    margin-top: 40px;
}

/* Container */
.footer-container{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;  
    gap: 20px;  
    padding: 0 30px;
    align-items: start;
}

/* Sections */
.footer-section h3{
    margin-bottom: 8px;
}

.footer-section p{
    font-size: 14px;
    color: #ccc;
    margin: 5px 0;
}

/* About Section  */
.about-row{
    display: flex;
    align-items: center;
    gap: 30px;   
}

/* Logo */
.logo-box img{
    width: 160px;  
}

/* Description */
.desc-box{
    max-width: 400px;
    font-size: 14px;
    line-height: 1.5;
}

/* Tagline */
.tagline-2{
    text-align: center;
    margin-top: 15px;  
    font-size: 16px;
    color: #ddd;
}

/* Links */
.footer-section ul{
    list-style: none;
    padding: 0;
}

.footer-section ul li{
    margin: 6px 0;
}

.footer-section ul li a{
    color: #ccc;
    text-decoration: none;
}

.footer-section ul li a:hover{
    color: white;
}

/* Contact */
.contact-link{
    display: block;
    color: #ccc;
    margin: 4px 0;
    text-decoration: none;
}

.contact-link:hover{
    color: white;
}

/* Bottom */
.footer-bottom{
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-top: 1px solid #333;
    font-size: 13px;
}

.social-icons{
    margin-top: 10px;
    padding-top: 20px;
}

.social-icons a{
    display: inline-flex;
    align-items: center;
    justify-content: right;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    margin-bottom:10px ;
    transition: 0.3s;
}

/* Hover Effects */
.social-icons a:hover{
    transform: scale(1.1);
}

.location-iocon:hover{

 transform: scale(1.1);
}

.tagline-2{
    font-weight: 600;
}

.desc-box{
     font-weight: 400;
     font-size: 16px;
}
  @media (max-width: 768px) {

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    /* About section */
    .about-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-box img {
        width: 80px;
        margin-bottom: 10px;
    }

    .desc-box p {
        font-size: 14px;
        line-height: 1.5;
    }

    .tagline-2 {
        text-align: center;
        font-size: 14px;
        margin-top: 10px;
    }

    /* All sections */
    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 10px;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        margin: 5px 0;
    }

    /* Contact links */
    .contact-link {
        display: block;
        margin: 8px 0;
        font-size: 14px;
    }

    .contact-link img {
        margin-right: 5px;
    }

    /* Social icons */
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    /* Bottom */
    .footer-bottom {
        text-align: center;
        font-size: 13px;
        padding: 10px;
    }
}

