:root{
    --pink:#e84393;
}

*{
    margin:0; padding:0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none; border:none;
    text-decoration: none;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section{
    padding:2rem 9%;
}

.heading{
    text-align: center;
    font-size: 4rem;
    color:#333;
    padding:1rem;
    margin:2rem 0;
}

.heading span{
    color:var(--pink);
}


.navbar {
    background-color: #E6F0E3 !important;
    padding: 1rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease, background-color 0.3s ease;
}
        
.navbar.scrolled {
    padding: 0.5rem 1rem;
    background-color: #d3e0d1;
}
        
.navbar-brand img {
    height: 60px;
    transition: height 0.3s ease;
}
        
.navbar.scrolled .navbar-brand img {
    height: 40px;
}
        
.navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}
        
.nav-link {
    color: #000 !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 16px; /* same size for all navbar text */
}

.nav-link:hover {
    color: #555 !important;
}
        
.nav-link.active {
    color: #ff6f61 !important;
    font-weight: 600;
    border-radius: 0.25rem;
}
        
@media (max-width: 991px) {
    .navbar-brand img {
        height: 40px;
    }
            
    .navbar-nav {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #E6F0E3; 
        padding: 1rem 0;
    }
            
    .nav-link {
        padding: 0.75rem 1rem;
        margin: 0;
        text-align: left;
        border-bottom: 1px solid #d3e0d1; 
    }
            
    .nav-link.active {
        background-color: #d3e0d1;
    }
}

.products {
    background-color: #fceee6; /* soft peach color behind the cards */
    padding: 2rem 9%; /* keep your existing padding */
}

.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.products .box-container .box{
    background-color: #ffffff;
    flex:1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    border:.1rem solid rgba(0,0,0,.1);
    position: relative;    
}

.products .box-container .box .image{
    position: relative;
    text-align: center;
    padding-top: 2rem;
    overflow:hidden;
}

.products .box-container .box .image img{
    height:25rem;
}

.products .box-container .box:hover .image img{
    transform: scale(1.1);
}


.products .box-container .box .content{
    padding:2rem;
    text-align: center;
    background: none;
}

.products .box-container .box .content h3{
    font-size: 2.5rem;
    color:#333;
}

.content .sizes {
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center; /* center everything horizontally */
    flex-wrap: wrap;
    gap: 6px; /* space between size circles */
}

.content .sizes label {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-right: 10px; /* space between label and first circle */
    white-space: nowrap; /* prevent label from wrapping */
}

.content .sizes span {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 50%;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: 0.3s ease;
}


.sizes span.active-size {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}


.content .sizes span:hover {
    background: #fceee6;
    color: #333;
}

.products .box-container .box .content .price{
    margin-top: -2px;
    font-size: 2.5rem;
    color:var(--pink);
    font-weight: bolder;
    /* padding-top: 1rem; */
}

.products .box-container .box .content .price span{
    font-size: 2.5rem;
    color:var(--pink);
    font-weight: bolder;
    /* text-decoration: line-through; */
}



/* media queries  */
@media (max-width:991px){
    
    html{
        font-size: 55%;
    }

    section{
        padding:2rem;
    }

    .home{
        background-position: left;
    }

}

@media (max-width:768px){


    .home .content h3{
        font-size: 5rem;
    }

    .home .content span{
        font-size: 2.5rem;
    }

    
}

@media (max-width:450px){
    
    html{
        font-size: 50%;
    }

    .heading{
        font-size: 3rem;
    }

}


.bg-light-green {
        background-color: #e6f0e3;
      }
      .text-orange {
        color: #d84315;
        font-size: 28px;
      }
      html,
      body {
        margin: 0;
        padding: 0;
        height: 100%;
      }
      body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        font-family: Arial, sans-serif;
      }
      main {
        flex: 1 0 auto;
      }
      .footer {
        flex-shrink: 0;
        margin-bottom: 0 !important;
        background-color: #e6f0e3;
        padding: 50px 20px;
      }
      .footer a {
        color: #000;
        text-decoration: none;
        font-size: 16px;
      }
      .footer a:hover {
        text-decoration: underline;
      }
      .footer h5,
      .footer h6 {
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 10px;
      }
      .footer-column {
        flex: 1 1 300px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* aligns content to top */
      }
      .footer-column p {
        font-size: 18px;
        line-height: 1.6;
        margin: 0 0 8px 0;
        font-size: 18px; /* Increased description size */
      }
      .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        align-items: flex-start; /* aligns all columns to top */
      }
      .footer-logo img {
        height: 150px;
        margin: 0 auto 15px auto;
        display: block;
      }
      .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 10px;
      }
      .footer-social a {
        color: #000;
        font-size: 16px;
      }
      .footer-social a:hover {
        color: #555;
      }
      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #d3e0d1;
        font-size: 16px;
        font-weight: 600;
      }
      /* WhatsApp Button */
      .whatsapp_float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
      }
      .whatsapp-icon {
        margin-top: 16px;
      }
      @media (max-width: 767px) {
        .footer-container {
          flex-direction: column;
          align-items: center;
        }
        .footer-column p {
          text-align: center;
        }
      }


.categories {
        padding: 15px 0;
        background: #f9f9f9; /* light background to separate from products */
      }

      .categories .btn {
        border-radius: 20px;
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid #d84315; /* matches your orange accent */
        color: #d84315;
        background: #fff;
      }

      .categories .btn:hover {
        background: #d84315;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      }

      .categories .btn:focus,
      .categories .btn.active {
        background: #d84315;
        color: #fff;
        outline: none;
        box-shadow: 0 4px 10px rgba(216, 67, 21, 0.4);
      }

      /* spacing between buttons */
      .categories .btn + .btn {
        margin-left: 10px;
      }

      /* Mobile view */
      @media (max-width: 767px) {
        .categories .btn {
          font-size: 14px;
          padding: 8px 18px;
          margin: 5px;
        }
      }

      @media (max-width: 429px) {
        .categories .btn {
          font-size: 13px;
          padding: 6px 14px;
        }
      }

      @media (max-width: 397px) {
        .categories .btn {
          font-size: 12px;
          padding: 6px 12px;
        }
      }