/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #ffeef9 0%, #fff5f8 100%);
    color: #5a4a5a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-img{
    height: 50px;
    width: auto;
    background-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 154, 157, 0);
    

}

/* Scrolling Marquee Bar */
.marquee-container {
  width: 100vw;
  overflow: hidden;
  background: linear-gradient(90deg, #ff9ec7, #ffb3d9);
  color: white;
  padding: 8px 0;
  font-weight: 500;
  font-size: 14px;
  position: relative;
}

.marquee-content {
  display: flex;
  width: fit-content;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  will-change: transform;
}

.marquee-content span {
  display: inline-block;
  padding-right: 3vw;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(100px);
    padding: 5px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 154, 158, 0.2);
    border-radius: 0 0 20px 20px;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* @keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.13); }
  70% { transform: scale(1); }
}

.logo-img {
  animation: heartbeat 1.6s ease-in-out infinite;
  display: inline-block;
} */

/* make the logo animate */
@keyframes wiggle {
  0%, 100% { transform: rotate(-7deg); }
  25% { transform: rotate(7deg); }
  50% { transform: rotate(-7deg); }
  75% { transform: rotate(7deg); }
}

.logo-img {
  animation: wiggle 1.2s ease-in-out infinite;
  display: inline-block;
  vertical-align: middle;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: bolder; 
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff9a9e, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff9a9e; /* fallback for non-webkit browsers */
    display: inline-block;
    line-height: 1;
    vertical-align: middle !important;
    padding-left: 20px;

    
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9a9e, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .logo span {
    font-size: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
} */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    text-decoration: none;
    color: #666;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.nav-link:hover,
.nav-item.active .nav-link {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon,
.dropdown .dropdown-icon.active {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 15px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 2px solid #fecfef;
    z-index: 1100;
}

.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0 10px;
    font-size: 15px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
}

/* Toast Notification before insta message*/
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffcef7;
  color: #333;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
  animation: fadeInOut 4s ease forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
  10% { opacity: 1; transform: translateX(-50%) translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}


/* .search-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 230px;
    max-width: 210px;
    width: 100%;
}

.search-container:focus-within {
    border-color: #ff9a9e;
    box-shadow: 0 0 0 3px rgba(255, 154, 158, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px 10px;
    width: 90%;
    font-size: 14px;
}

.search-btn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.1);
} */

/* Minimum Cart Value Warning */
.min-cart-value-warn {
    color: #ff6b6b;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    background: none;
    padding: 0;
    letter-spacing: 0.2px;
}

/* Disabled proceed button style */
.proceed-to-cart-btn.disabled-proceed {
    opacity: 0.7;
    pointer-events: none;
    background: linear-gradient(135deg, #eee, #ffb3d9);
    color: #fff;
    cursor: not-allowed;
}








.cart-container {
    position: relative;
}

.cart-btn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    border: none;
    color: white;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b6b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff9a9e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Banner Section */
.banner {
    margin-top: 1px;
    position: relative;
    height: 100vh;
    min-height: 480px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/12;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-btn {
    background: linear-gradient(135deg, #ff9a9e, #f093fb);
    color: white;
    padding: 13px 26px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 10px 25px rgba(255, 154, 158, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 154, 158, 0.6);
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff9a9e;
    transform: scale(1.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.2rem;
    /* font-size: clamp(1.5rem, calc(8vw + 1rem), 5.5rem); */
    font-weight: 700;
    text-align: center;
    margin: 40px 0 32px;
    background: linear-gradient(135deg, #ff9a9e, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.section-title i {
    color: #ff9a9e;
    /* animation: bounce 2s infinite; */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Product/Categories Grids */
.products-grid,
.categories-grid,
.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .products-grid,
    .categories-grid,
    .price-options {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Price Tag Styles */
.mrp { 
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    margin-right: 7px;
    font-weight: 500;
}

.offer-price {
    color: #ff9a9e;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Product Card */
.product-card {
    
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(255, 154, 158, 0.07);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 12px 32px rgba(255, 154, 158, 0.16);
    border-color: #fecfef;
}

.product-image {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    max-height: 240px;
    aspect-ratio: 1/1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-card .add-to-cart-btn {
    margin-top: auto; /* Pushes the button to the bottom */
}


.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 154, 157, 0.473);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-text {
    background-color: rgba(255, 105, 135, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    pointer-events: none;
}

.quick-view-btn {
    background: white;
    color: #ff9a9e;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    transform: scale(1.07);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
    min-height: 0;
    height: 100%;
    position: relative;
    padding: 16px;
    text-align: center;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    word-break: break-word;
    /* Remove margin-bottom here so it doesn't push price down */
}

.product-info .price {
    margin-top: auto;        /* Push price to bottom of product-info, just above button */
    margin-bottom: 11px;     /* Space between price and button */
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff9a9e;
    /* You can add more styling if you want */
}


.add-to-cart-btn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    font-size: 14px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.18);
}

/* View More Products Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 18px auto 0 auto;
    background: linear-gradient(90deg, #ffb6c1 0%, #ff9a9e 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 154, 158, 0.14);
    transition: background 0.2s, transform 0.14s, box-shadow 0.18s;
    outline: none;
    letter-spacing: 0.2px;
    position: relative;
    min-width: 0;
    min-height: 0;
    width: auto;
    height: auto;
}

.view-more-btn::before {
    content: "✨";
    margin-right: 8px;
    font-size: 1.1em;
    opacity: 0.85;
    position: static;
    left: unset;
    top: unset;
    transform: none;
}

.view-more-btn:hover,
.view-more-btn:focus {
    background: linear-gradient(90deg, #ff9a9e 0%, #fecfef 100%);
    transform: translateY(-2px) scale(1.045);
    box-shadow: 0 6px 18px rgba(255, 154, 158, 0.23);
}

@media (max-width: 600px) {
    .view-more-btn {
        width: 90%;
        font-size: 0.99rem;
        padding: 11px 0;
    }
    .view-more-btn::before {
        margin-right: 7px;
    }
}

#viewMoreWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}


/* Loader Spinner for Images */
.img-loader-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.img-loader-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}
.img-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 36px;
    height: 36px;
    background: none;
    border: 4px solid #ff9a9e;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 2;
}
@keyframes spin {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Focus outlines for accessibility */
:focus {
    outline: 2px solid #ff9a9e !important;
    outline-offset: 2px;
}


/* Shop by Category Section */
.shop-by-category {
    padding: 60px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Existing styles: */
    background: linear-gradient(135deg, #fef7f7, #fff5f8);
    border: 2px solid #fecfef;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* New: Ensure minimum height for nice alignment */
    min-height: 250px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 154, 158, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.category-card:hover::before {
    opacity: 1;
    animation: shine 0.5s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 154, 158, 0.2);
    border-color: #ff9a9e;
}

.category-icon {
    font-size: 3rem;
    color: #ff9a9e;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.category-btn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

}
.category-card .category-btn {
    margin-top: auto; /* Pushes the button to the bottom */
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.4);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Cute Back Button for Category Pages */
.continue-shopping-btn,
.cute-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 154, 158, 0.15);
    margin-right: 18px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.continue-shopping-btn:hover,
.cute-back-btn:hover {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(255, 154, 158, 0.17);
}
.continue-shopping-btn i,
.cute-back-btn i {
    font-size: 1.1em;
}




.category-page-header {
    display: flex;
    align-items: center;
    margin: 40px 0 30px 0;
    justify-content: flex-start;
    gap: 0;
}
.category-page-title {
    color: #ff79a8;
    font-size: 9vw;
    font-weight: 700;
    background: none;
    text-shadow: 0 2px 10px rgba(255, 154, 158, 0.09);
    margin: 0;
    letter-spacing: 0.5px;
}

.category-page-bg {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe5f0 100%);
    min-height: 100vh;
    padding-bottom: 60px;
}

/* Shop by Price Section & All Collection Card */
.shop-by-price {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef7f7, #fff5f8);
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 154, 158, 0.10);
    transition: all 0.3s;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}
.price-card .price-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ff79a8;
}
.price-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff79a8;
    margin-bottom: 10px;
}
.price-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}
.price-card button,
.price-btn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(255, 154, 158, 0.16);
}
.price-card button:hover,
.price-btn:hover {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    transform: translateY(-3px) scale(1.03);
}


/* Cute Cart Info Bar - Pink Theme */
.cart-info-bar {
    background: #fff;
    color: #ff79a8;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(255, 121, 168, 0.11);
    padding: 22px 32px;
    margin-bottom: 30px;
    display: block;
    min-width: 260px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 15.5px;
    font-weight: 500;
}
.cart-info-progress-bar {
    margin-bottom: 12px;
    margin-top: 6px;
    width: 100%;
    max-width: 340px;
    height: 16px;
    background: #ffe5f0;
    border-radius: 13px;
    border: 2px solid #ff79a8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.cart-info-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff79a8, #ffb3d9 85%);
    border-radius: 13px 0 0 13px;
    transition: width 0.4s cubic-bezier(.4,2,.7,1);
    box-shadow: 0 1px 8px 0 #ffb3d9;
}
.cart-info-progress-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13.5px;
    color: #ff79a8;
    margin-top: 5px;
    font-weight: 700;
}
.cart-info-bar .highlight-text {
    color: #ff79a8;
    font-weight: 700;
}
.cart-info-bar .free-link {
    color: #ff579c;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 3px;
}
.cart-info-bar .view-products-link {
    color: #fa5ca8;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 8px;
}
.cart-info-bar b {
    color: #ff79a8;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #fff5f8 60%, #fef7f7 100%);
    padding: 60px 0 30px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #5a4a5a;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(255, 154, 158, 0.09);
    padding: 36px 26px;
    line-height: 2.1;
    text-align: center;
}



/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100dvh;
    background: white;
    z-index: 2000;
    transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.35s cubic-bezier(.77,0,.18,1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);      /* start hidden */
    opacity: 0;                      /* start invisible */
    will-change: transform, opacity;
}

.cart-sidebar.open {
    transform: translateX(0);         /* slide in */
    opacity: 1;                       /* visible */
}

.cart-header {
    padding: 25px;
    border-bottom: 2px solid #fecfef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fef7f7, #fff5f8);
}

.cart-header h3 {
    color: #ff9a9e;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff9a9e;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.close-cart-btn:hover {
    background: #fecfef;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    /* max-height: fit-content; */
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fecfef;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.cart-item-price {
    color: #ff9a9e;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    background: #fecfef;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ff9a9e;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #ff9a9e;
    color: white;
}

.quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}

.remove-item-btn {
    background: #ff6b6b;
    border: none;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.cart-footer {
    padding: 25px;
    border-top: 2px solid #fecfef;
    background: #fef7f7;
    position: relative;
}

.cart-total {
    text-align: center;
    margin-bottom: 20px;
}

.cart-total p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff9a9e;
}

.proceed-to-cart-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
}

.proceed-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.4);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Cart Page Styles */
.cart-page {
    padding-top: 140px;
    min-height: 100vh;
    background: linear-gradient(135deg, #fef7f7, #fff5f8);
}

.cart-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.back-btn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.4);
}

.cart-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9a9e, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Cart Page Items */
.cart-page-items {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 154, 158, 0.1);
}

.cart-page-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid #fecfef;
}

.cart-page-item:last-child {
    border-bottom: none;
}

.cart-page-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
}

.cart-page-item-info {
    flex: 1;
}

.cart-page-item-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.cart-page-item-details {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.cart-page-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff9a9e;
}

.cart-page-quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-page-quantity-controls .quantity-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

.cart-page-quantity-controls .quantity {
    font-size: 16px;
    min-width: 30px;
}

.cart-page-remove-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-page-remove-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

/* Delivery Options */
.delivery-options {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 154, 158, 0.1);
}

.delivery-options h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff9a9e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #fecfef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.delivery-option:hover {
    border-color: #ff9a9e;
    background: linear-gradient(135deg, #fef7f7, #fff5f8);
}

.delivery-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ff9a9e;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked + .radio-custom {
    background: #ff9a9e;
}

.delivery-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-content {
    flex: 1;
}

.option-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.option-price {
    font-weight: 700;
    color: #ff9a9e;
    font-size: 1.1rem;
}

.address-section.card-custom {
    border-radius: 18px;
    background: #fff5f8;
    box-shadow: 0 4px 18px rgba(255, 121, 168, 0.11);
    padding: 30px;
    margin-bottom: 30px;
}

.input-custom {
    background-color: #fff;
    border: 2px solid #fecfef;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #ff79a8;
}

.input-custom:focus {
    border-color: #ff79a8;
    outline: none;
}

.address-section h4 {
    color: #ff79a8;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.3rem;
}



/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 154, 158, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff9a9e;
    border-top: 2px solid #fecfef;
    margin-top: 10px;
    padding-top: 20px;
}

/* Final Checkout Button */
.final-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.final-checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 25px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal-btn:hover {
    background: #ff5252;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    /* border-radius: 20px;
    max-width: 100%; */
    height: auto;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(255, 154, 158, 0.2);
}


.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.05);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #ff9a9e;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff9a9e;
    margin-bottom: 15px;
}

.modal-description {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Color Options */
.color-options h4,
.quantity-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-swatch.active {
    border-color: #333;
    transform: scale(1.1);
}

.color-swatch:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Predefined colors */
.color-swatch.pink { background: #ff9a9e; }
.color-swatch.blue { background: #74b9ff; }
.color-swatch.purple { background: #a29bfe; }
.color-swatch.green { background: #55efc4; }
.color-swatch.yellow { background: #fdcb6e; }
.color-swatch.white { 
    background: #fff; 
    border: 2px solid #ddd;
}

/* Quantity Section */
.quantity-section .quantity-controls {
    margin-top: 0;
}

.quantity-section .quantity-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.quantity-section .quantity {
    font-size: 18px;
    min-width: 40px;
}

/* Modal Add to Cart Button */
.modal-add-to-cart-btn {
    background: linear-gradient(135deg, #ff9a9e, #f093fb);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(255, 154, 158, 0.4);
}

.modal-add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 154, 158, 0.6);
}

.modal-add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff9a9e;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
}

.footer-section p {
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.4);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #aaa;
}

/* --- MOBILE NAVIGATION OVERRIDES --- */
@media (max-width: 1536px) {
    .nav-container {
        gap: 10px;
    }

    .view-more-btn{
        max-width: 300px;
        padding: 8px 12px;
        font-size: 14px;
        height: 40px;
    }
}
/* @media (max-width: 1440px) {
    .nav-container {
        gap: 10px;
    }
    .search-container {
        min-width: 120px;
        max-width: 120px;
    }
    .view-more-btn{
        max-width: 300px;
        padding: 8px 12px;
        font-size: 14px;
        height: 40px;
    }
}
@media (max-width: 1024px) {
    .nav-container {
        gap: 10px;
    }
    .search-container {
        min-width: 120px;
        max-width: 120px;
    }
    .view-more-btn{
        max-width: 300px;
        padding: 8px 12px;
        font-size: 14px;
        height: 40px;
    }
} */

/* @media (max-width: 900px) {
    .nav-container {
        gap: 10px;
    }
    .search-container {
        min-width: 120px;
        max-width: 120px;
    }
} */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100vw;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 25px 0 15px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 0 0 20px 20px;
        z-index: 1200;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        justify-content: flex-start;
        padding: 15px 22px;
        border-radius: 0;
        font-size: 16px;
        border-bottom: 1px solid #f3ecf7;
        background: none !important;
        color: #5a4a5a !important;
        box-shadow: none !important;
    }
    .nav-link:hover,
    .nav-item.active .nav-link {
        background: linear-gradient(135deg, #ff9a9e, #fecfef);
        /* color: white !important; */
    }
    .dropdown-menu {
        display: none;
        position: static;
        border-radius: 0 0 12px 12px;
        min-width: unset;
        box-shadow: none;
        border: none;
        background: #fff5f8;
        margin: 0 0 0 20px;
        padding: 8px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .dropdown-menu.open {
        display: flex;
        flex-direction: column;
        padding: 10px 26px;
        font-size: 16px;
        margin: 0;
    }
    /* .search-container {
        display: none;
    } */
    .navbar {
        padding: 10px 0;
    }
}

/* Make Footer, Modal, Banner, Cart, and Grids Mobile Friendly */
@media (max-width: 600px),(min-with: 600px) {
    .container {
        padding: 0 8px;
    }
    .marquee-container {
        font-size: 12px;
        padding: 6px 0;
    }

    .banner {
        margin-top: 85px;
        height: 46vh;
        min-height: 260px;
        border-radius: 0 0 18px 18px;
    }
    .banner-content {
        max-width: 98vw;
        padding: 7vw 2vw;
        font-size: 15px;
    }
    .banner-content h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .cta-btn {
        padding: 9px 18px;
        font-size: 15px;
    }
    .cart-btn {
        padding: 7px 11px;
        font-size: 20px;
    }
    .cart-count {
        font-size: 10px;
        padding: 1px 5px;
        min-width: 16px;
    }
    .cart-sidebar {
        width: 100dvw;
        max-width: 100dvw;
    }
    .cart-page-items,
    .cart-summary,
    .delivery-options {
        padding: 12px 3vw;
    }
    .cart-info-bar {
        padding: 13px 7vw;
        font-size: 14px;
        max-width: 100vw;
        min-width: 0;
    }
    .cart-footer {
        padding: 12px 4vw;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer {
        padding: 36px 0 8px;
        margin-top: 40px;
    }
    .footer-section h3 {
        font-size: 1.3rem;
    }
}

/* Modal/Mobile Adjustments */
@media (max-width: 600px) {
    .modal-content {
        width: 99vw;
        max-width: 99vw;
        padding: 0;
        border-radius: 12px;
    }
    .products-grid,
    .categories-grid,
    .price-options {
        grid-template-columns: 1fr 1fr;  /* <-- 2 columns for 600px and below */
        gap: 14px;
    }
    .main-image {
        border-radius: 12px;
        aspect-ratio: 1/1;
    }
    .main-image img,
    .thumbnail img {
        border-radius: 8px;
    }
    .thumbnail {
        width: 46px;
        height: 46px;
    }
    .modal-info-section {
        gap: 9px;
    }
    .modal-info-section h2 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .modal-price {
        font-size: 1.1rem;
        margin-bottom: 7px;
    }
    .modal-add-to-cart-btn {
        width: 100%;
        padding: 10px 0;
        font-size: 1rem;
        margin-top: 13px;
    }
    .color-swatch, .color-swatch.active {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    .quantity-btn {
        width: 30px;
        height: 30px;
    }
    .quantity {
        min-width: 28px;
        font-size: 16px;
    }
}

/* Make Modal and Overlay Cover All */
.product-modal, .modal-overlay {
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
}

@media (max-width: 480px) {
    .container, .cart-page-items, .cart-summary, .delivery-options, .cart-footer, .cart-info-bar {
        padding-left: 3vw !important;
        padding-right: 3vw !important;
    }
    /* .modal-content {
        padding: 10px 5px !important;
        width: 80% !important;
        height: auto !important;
    } */

    

    .modal-info-section{
        font-weight: 2rem !important;
    }

    .cart-page-item{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cart-overlay{
        height: 100dvh !important;

    }

    .modal-content{
        max-height: max-content;
    }
    .modal-body {
        padding: 20px !important;
        grid-template-columns: 1fr;  /* Single column for mobile */
        height: 100vh !important;
        /* max-height: max-content !important; */
    }

    .main-image {
        aspect-ratio: 4/3 !important;
    }
    .products-grid,
    .categories-grid,
    .price-options {
        grid-template-columns: 1fr 1fr;  /* Always 2 columns for 480px and below */
        gap: 10px;
    }
    .footer-section h3 {    
        font-size: 4rem;

    }

}

@media (max-width: 425px) {
    .price-btn{
        font-weight: 100;
        padding: 10px 20px;
        font-size: 10px ;
    }
    .logo-text{
        font-size: 1.2rem;
        vertical-align: middle !important;
    }
}



@media (max-width: 320px) {
  body, html {
    overflow-x: hidden !important;
    
  }
  .logo-text {
    font-size: 1rem;
    vertical-align: middle !important;
  }

  
}                                                       
/* body {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
}

.section-title {
  font-size: clamp(1.1rem, 5vw, 2.2rem);
}

.banner-content h2 {
  font-size: clamp(1rem, 6vw, 2.5rem);
} */

@media print {
    .navbar,
    .cart-sidebar,
    .product-modal,
    .modal-overlay,
    .cart-overlay,
    .marquee-container {
        display: none !important;
    }
    .cart-page {
        padding-top: 20px;
    }
    body {
        background: white;
    }
}



/* BUTTON BASE STYLES - ADD OR REPLACE IN style.css */
.btn,
.cta-btn,
/* .add-to-cart-btn, */
.category-btn,
.price-btn,
.view-more-btn,
.cart-page-remove-btn,
.final-checkout-btn,
.back-btn,
.cute-back-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 24px;
  border: none;
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 154, 158, 0.16);
  cursor: pointer;
  transition: background 0.2s, transform 0.14s, box-shadow 0.18s;
  min-width: 120px;
  text-align: center;
  width: fit-content;
}

.btn:hover,
.cta-btn:hover,
.add-to-cart-btn:hover,
.category-btn:hover,
.price-btn:hover,
.view-more-btn:hover,
.cart-page-remove-btn:hover,
.final-checkout-btn:hover,
.back-btn:hover,
.cute-back-btn:hover {
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 18px rgba(255, 154, 158, 0.23);
}

/* Make buttons 100% width on mobile */
@media (max-width: 600px) {
  .btn,
  .cta-btn,
  .add-to-cart-btn,
  .category-btn,
  .price-btn,
  .view-more-btn,
  .cart-page-remove-btn,
  .final-checkout-btn,
  .back-btn,
  .cute-back-btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    padding: 13px 0;
    border-radius: 18px;
  }
}

/* CARD/BOX BASE STYLES - ADD OR REPLACE IN style.css */
.card,
.product-card,
.category-card,
.price-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(255, 154, 158, 0.07);
  padding: 20px;
  min-width: 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #fecfef;
}

.card:hover,
.product-card:hover,
.category-card:hover,
.price-card:hover {
  box-shadow: 0 12px 32px rgba(255, 154, 158, 0.16);
  border-color: #ff9a9e;
  transform: translateY(-4px) scale(1.03);
}

/* Make all cards the same width and layout on mobile */
@media (max-width: 600px) {
  .card,
  .product-card,
  .category-card,
  .price-card {
    min-width: 0;
    width: 100%;
    padding: 14px 8px;
    border-radius: 14px;
    min-height: 180px;
  }
}

/* Grid Consistency */
.products-grid,
.categories-grid,
.price-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

@media (max-width: 600px) {
  .products-grid,
  .categories-grid,
  .price-options {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}




/* Target the Add to Cart button inside product cards */
.product-card .add-to-cart-btn {
  width: 90%;               /* Make button fill most of card width, leaving margin on the sides */
  max-width: 270px;         /* Control maximum width for large cards */
  min-width: 160px;         /* Ensure minimum width for consistency */
  margin: 24px auto 0 auto; /* Center the button horizontally, add space from above content */
  display: flex;            /* Center icon and text */
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding: 18px 0;          /* Taller button for a modern look */
  border-radius: 24px;
  box-sizing: border-box;
  transition: background 0.2s, transform 0.14s, box-shadow 0.18s;
  margin-top: auto; /* Pushes the button to the bottom */
}

@media (max-width: 900px) {
  .product-info .add-to-cart-btn {
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    padding: 14px 0;
    font-size: 1rem;
  }
}