:root {
    --pink: rgb(250, 198, 207);
}

/* ----- PROMO TOP BAR ----- */
.promo-topbar {
    background: var(--pink);
    color: black;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    text-align: center;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1050;
}

.promo-topbar a {
    color: black;
    text-decoration: none;
    /* text-underline-offset: 3px; */
    font-weight: 500;
}


.transparent-header {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 1040;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.transparent-header:hover {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.transparent-header:hover .sidebar-toggle {
    background: rgba(0, 0, 0, 0.1);
    color: pink;
}

.transparent-header:hover .logo-center h1,
.transparent-header:hover .logo-center small,
.transparent-header:hover .social-links a {
    color: black !important;
    text-shadow: none;
}

.transparent-header:hover .sidebar-toggle:hover {
    background: black;
    color: white;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sidebar-toggle {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-center {
    text-align: center;
    text-decoration: none;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.logo-center h1 {
    font-size: clamp(1.3rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin: 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo-center small {
    color: white;
    display: block;
    font-size: clamp(0.55rem, 2vw, 0.7rem);
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    transition: color 0.3s ease;
    margin-top: 0.5em;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.social-links a {
    color: white;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    text-decoration: none;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    padding: 5px;
}

.social-links a:hover {
    color: pink !important;
}

/* ----- SIDEBAR ----- */
.offcanvas-start {
    width: 320px;
    background: white;
}

.sidebar-nav .nav-link {
    color: #111;
    font-weight: 500;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.sidebar-nav .nav-link:hover {
    background: pink;
    color: black;
    padding-left: 2rem;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .promo-topbar {
        font-size: 0.65rem;
        padding: 0.4rem 0;
    }

    .transparent-header {
        top: 30px;
        padding: 0.8rem 0;
    }

    .header-container {
        padding: 0 0.8rem;
    }

    .sidebar-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .logo-center h1 {
        font-size: 1.2rem;
    }

    .logo-center small {
        font-size: 0.5rem;
    }

    .social-links {
        gap: 0.2rem;
    }

    .social-links a {
        font-size: 1rem;
        padding: 2px;
    }
}

@media (max-width: 480px) {
    .logo-center h1 {
        font-size: 1rem;
    }

    .cart-text {
        display: none;
    }
}

.footer-minimal {
      background:  rgb(250, 198, 207);
      border-top: 1px solid #f0e2da;
      /*margin-top: 2rem;*/
      font-family: sans-serif;
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1.5rem 2rem;
    }
    
    /* Logo styling */
    .footer-logo h2{
      font-size: clamp(1.3rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
    color: Black;
    /*text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);*/
    white-space: nowrap;
    transition: color 0.3s ease;
    }

    .footer-logo .img{
      width: 120px;
      height: auto;
    }
    
    .footer-tagline {
      font-size: 0.85rem;
      color: black;
      line-height: 1.5;
      /*margin-top: 2rem;*/
    }
    
    /* Column headers */
    .footer-heading {
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: black;
      margin-bottom: 1.2rem;
    }
    
    /* Link lists */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.7rem;
    }
    
    .footer-links a {
      color: black;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }
   /*.footer-links li:hover{*/
   /*    color: black;*/
   /*    font-weight: 500;*/
   /* transition: color 0.2s ease;*/
       
   /*}*/
    
    /* Contact info */
    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      color: black;
    }
    
    .contact-item i {
      width: 20px;
      color: black;
      font-size: 0.95rem;
    }
    
    .contact-item a {
      color: black;
      text-decoration: none;
    }
    
    /* Social icons */
    .social-lik {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-con {
      width: 36px;
      height: 36px;
      border: 1px solid black;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      background-color: black;
      transition: all 0.2s ease;
      text-decoration: none;
    }
     .social-lik :hover{
      background-color: white;
      color: black;
     }

    
    /* Bottom bar */
    .footer-bottom {
      border-top: 1px solid #f0e2da;
      margin-top: 2rem;
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.7rem;
      color: black;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        padding: 2rem 1rem 1.5rem;
      }
      .footer-logo {
        font-size: 1.4rem;
      }
      .footer-heading {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
      }
      .footer-heading:first-of-type {
        margin-top: 0;
      }
    }
    
    
/* CTA Section */
.cta-section {
    position: relative;
    background: url('../image/Heroimg.png') center/cover no-repeat;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

/* Overlay */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* adjust darkness here */
    z-index: 1;
}

/* Keep content above overlay */
.cta-section > * {
    position: relative;
    z-index: 2;
}

        .cta-section h3 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 400;
            margin-bottom: 1rem;
            
        }

        .btn-cta {
            background: #1a1a1a;
            border: 2px solid #1a1a1a;
            color: white;
            border-radius: 0;
            padding: 1rem 3rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 1.5rem;
        }

        .btn-cta:hover {
            background: white;
            color: black;
        }

    
