/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

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

:root {
    --primary-color: #e91e63; /* Lotus pink */
    --secondary-color: #f8bbd9; /* Light lotus pink */
    --accent-color: #ad1457; /* Dark lotus pink */
    --dark-text: #212121;
    --light-text: #666666;
    --bg-light: #fdf7f9;
    --bg-accent: #fce4ec;
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #f8bbd9;
    --error-color: #d32f2f;
    --success-color: #4caf50;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --transition: all 0.3s ease;
    --shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
    --border-radius: 4px;
}

/* Prevent horizontal scroll and improve mobile experience */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    position: relative;
    width: 100%;
}

/* Top Promo Bar */
.top-promo { background: var(--bg-accent); color: var(--accent-color); font-size:0.9rem; }
.top-promo .promo-inner { display:flex; justify-content:space-between; align-items:center; padding:8px 0; }
.btn-light { background: var(--white); color: var(--accent-color); border:1px solid var(--border-color); }
.btn-light:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

/* Promo Ticker */
.promo-ticker { 
    background: var(--accent-color); 
    color: var(--white); 
    overflow: hidden; 
    white-space: nowrap; 
}
.promo-ticker .ticker-track { 
    display: inline-flex; 
    gap: 40px; 
    padding: 8px 0; 
    animation: ticker 35s linear infinite; 
}
.promo-ticker span { 
    opacity: .95; 
    font-size: .9rem; 
    white-space: nowrap;
}
@keyframes ticker { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* Responsive ticker adjustments */
@media (max-width: 768px) {
    .promo-ticker .ticker-track {
        gap: 25px;
        animation-duration: 25s;
    }
    
    .promo-ticker span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .promo-ticker .ticker-track {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .promo-ticker span {
        font-size: 0.75rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Promo banner video sizing */
.promo-banner .promo-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .promo-banner .promo-video {
        max-width: 560px;
    }
}

@media (max-width: 480px) {
    .promo-banner .promo-video {
        max-width: 100%;
    }
}

/* Services video cards (carousel items) */
.service-video-card {
    width: clamp(320px, 30vw, 400px);
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid var(--gray-medium);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-right: clamp(12px, 2vw, 18px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-video-wrapper {
    position: relative;
    width: 100%;
    /* aspect-ratio: 4 / 5; */
    background: #000;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    min-height: 400px;
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 0;
    background: #000;
}

.service-video-card:hover .service-video {
    transform: scale(1.05);
}

.service-video-info {
    padding: clamp(12px, 2vw, 16px);
    background: #fff;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-video-title {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin: 0 0 8px 0;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-video-desc {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--light-text);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced responsive design for video cards */
@media (max-width: 1200px) {
    .service-video-card { width: clamp(300px, 35vw, 380px); }
    
    .service-video-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .service-video-card { 
        width: clamp(280px, 40vw, 350px);
        margin-right: clamp(10px, 2.5vw, 16px);
    }
    
    .service-video-wrapper {
        border-radius: 8px 8px 0 0;
        min-height: 450px;
    }
}

@media (max-width: 480px) {
    .service-video-card { 
        width: clamp(280px, 85vw, 340px);
        margin-right: clamp(12px, 2.5vw, 18px);
    }
    
    .scroll-row {
        gap: clamp(12px, 2.5vw, 18px);
    }
    
    .service-video-wrapper {
        min-height: 400px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .service-video-card {
        width: clamp(260px, 90vw, 320px);
        margin-right: clamp(10px, 2.5vw, 16px);
    }
    
    .service-video-wrapper {
        min-height: 380px;
    }
}

/* Service Video Modal */
.service-video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000;
}
.service-video-modal.active { display: block; }
.service-video-modal .svm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.service-video-modal .svm-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 960px;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-video-modal .svm-dialog.svm-half { height: 50vh; }
.service-video-modal .svm-dialog.svm-full { width: 98%; max-width: 1400px; height: 92vh; }
.service-video-modal .svm-body {
    background: #000;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Center the video and avoid cropping in both modes */
.service-video-modal .svm-video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}
.service-video-modal .svm-actions {
    position: absolute;
    top: 8px;
    right: 50px; /* leave room for the × button */
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    z-index: 5;
}
.service-video-modal .svm-actions button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
}
.service-video-modal .svm-actions .svm-cancel-btn {
    background: #ffffff;
    color: #111;
    border: 1px solid #ddd;
}
.service-video-modal .svm-actions button:hover { background: var(--accent-color); }
.service-video-modal .svm-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .service-video-modal .svm-dialog.svm-half { width: 96%; max-height: 55vh; }
}

/* Responsive images and media */
.hero-image img,
.category-card img,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ensure all interactive elements are touch-friendly */
.icon-link,
.product-action-btn,
.slider-btn,
.row-nav,
.submenu-toggle {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-image img {
        max-width: 320px;
        margin: 0 auto;
        border-radius: 8px;
    }
    
    .icon-link,
    .product-action-btn,
    .slider-btn,
    .row-nav {
        min-width: 48px;
        min-height: 48px;
    }
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Ensure all elements respect container boundaries */
*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

/* ================================
   ANIMATION UTILITIES
================================ */

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Base reveal state */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: none;
}

/* Variants */
.fade-in { transform: none; }
.fade-in-up { transform: translateY(18px); }
.fade-in-down { transform: translateY(-18px); }
.slide-in-left { transform: translateX(-24px); }
.slide-in-right { transform: translateX(24px); }
.scale-in { transform: scale(0.98); }

/* When visible */
.reveal-visible.fade-in,
.reveal-visible.fade-in-up,
.reveal-visible.fade-in-down,
.reveal-visible.slide-in-left,
.reveal-visible.slide-in-right,
.reveal-visible.scale-in {
    transform: none;
}

/* Keyframes for subtle attention effects */
@keyframes floatUp {
    from { transform: translateY(6px); }
    to { transform: translateY(0); }
}

@keyframes softPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Micro-interactions */
.product-card { transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }

.category-card { transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,0.08); }

.tile img { transition: transform .4s ease; }
.tile:hover img { transform: scale(1.03); }

.btn { transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }

.slider-btn, .row-nav { transition: transform .2s ease; }
.slider-btn:hover, .row-nav:hover { transform: scale(1.06); }

/* Responsive container adjustments */
@media (max-width: 1280px) {
    .container {
        max-width: 1180px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* ================================
   HEADER & NAVIGATION STYLES
================================ */

/* Top Header */
.top-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
    font-size: 12px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left .delivery-info {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-left .delivery-info i {
    color: #e098cb;
}

.header-right .header-links {
    display: flex;
    gap: 20px;
}

.header-link {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: #e098cb;
}

.header-link i {
    font-size: 11px;
}

/* Main Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}

/* Responsive Header Adjustments */
@media (max-width: 940px) {
    .header-content {
        gap: 15px;
    }
    
    .main-header {
        padding: 12px 0;
    }
}

@media (max-width: 820px) {
    .header-content {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .search-container {
        flex: 1;
        max-width: 200px;
        margin: 0 10px;
    }
    
    .user-actions {
        flex-shrink: 0;
    }
}

/* Logo */
.logo {
    flex-shrink: 0;
    z-index: 1;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #e098cb;
    letter-spacing: 1px;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-form {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    background: #f8f9fa;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #e098cb;
    box-shadow: 0 0 0 3px rgba(224, 152, 203, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    border-radius: 25px 0 0 25px;
}

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

.search-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #e098cb, #c77fb5);
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #c77fb5, #b06ba3);
    transform: translateY(-1px);
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    flex-shrink: 0;
}

.action-item {
    position: relative;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: clamp(4px, 1vw, 8px);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    border-radius: 4px;
}

.action-link:hover {
    color: #e098cb;
    transform: translateY(-1px);
    background-color: rgba(224, 152, 203, 0.05);
}

.action-link i {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 2px;
    flex-shrink: 0;
}

.action-text {
    font-size: clamp(9px, 2vw, 11px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
}

.action-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e098cb;
    color: white;
    border-radius: 50%;
    min-width: 16px;
    min-height: 16px;
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(8px, 2vw, 10px);
    font-weight: 600;
    border: 2px solid #fff;
    z-index: 2;
}

/* Login and Signup buttons styling */
.action-item.login .action-link,
.action-item.signup .action-link {
    background: linear-gradient(135deg, #e098cb, #c77fb5);
    color: white;
    border-radius: 6px;
    padding: 8px 12px;
    min-width: 60px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-item.login .action-link:hover,
.action-item.signup .action-link:hover {
    background: linear-gradient(135deg, #c77fb5, #b06ba3);
    transform: translateY(-1px);
    color: white;
}

.action-item.login .action-text,
.action-item.signup .action-text {
    font-size: 10px;
    margin-top: 2px;
}

.action-item.login .action-link i,
.action-item.signup .action-link i {
    font-size: 16px;
    margin-bottom: 2px;
}

/* Account Dropdown */
.account-arrow {
    font-size: 8px !important;
    margin-left: 4px;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease;
}

.action-item.dropdown:hover .account-arrow {
    transform: rotate(180deg);
}

.account-dropdown {
    min-width: 160px;
    right: 0;
    left: auto;
    position: absolute;
    top: calc(100% + 5px);
    background: #fff !important;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e9ecef;
    display: none;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.action-item.dropdown:hover .account-dropdown,
.action-item.dropdown.dropdown-active .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
}

.account-dropdown ul {
    padding: 8px 0;
    list-style: none;
    margin: 0;
    background: #fff !important;
    width: 100%;
    display: block;
}

.account-dropdown li {
    border-bottom: 1px solid #f8f9fa;
    background: #fff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

.account-dropdown li:last-child {
    border-bottom: none;
}

.account-dropdown li:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.account-dropdown a {
    display: block !important;
    padding: 12px 16px !important;
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    background: #fff !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    box-sizing: border-box;
    border: none;
    margin: 0;
}

.account-dropdown a:hover {
    background-color: rgba(224, 152, 203, 0.1) !important;
    color: #e098cb !important;
    padding-left: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-item.mega-menu {
    position: static;
}

.nav-item.mega-menu .mega-dropdown {
    left: 50%;
    right: auto;
    margin-left: -400px;
    width: 800px;
}

/* Responsive Navigation Adjustments */
@media (max-width: 940px) {
    .nav-menu {
        gap: 2px;
        justify-content: space-between;
    }
    
    .nav-item.mega-menu .mega-dropdown {
        margin-left: -300px;
        width: 600px;
    }
}

@media (max-width: 820px) {
    .nav-menu {
        gap: 1px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .nav-item.mega-menu .mega-dropdown {
        margin-left: -250px;
        width: 500px;
    }
    
    .nav-item {
        white-space: nowrap;
    }
}

.nav-item.mega-menu:hover .mega-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
    gap: 5px;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
    color: #e098cb;
    background-color: rgba(224, 152, 203, 0.05);
}

.nav-link.offers {
    color: #ff6b35;
    font-weight: 600;
}

.nav-link.offers:hover {
    color: #e55a2b;
    background-color: rgba(255, 107, 53, 0.05);
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    border: 1px solid #e9ecef;
}

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

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.dropdown-menu li {
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: rgba(224, 152, 203, 0.08);
    color: #e098cb;
    padding-left: 25px;
}

/* Mega Menu */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 800px;
    max-width: 90vw;
    padding: 40px;
    background: #ffffff !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1001 !important;
    margin-top: 0;
    transform: translateY(-10px);
}

.nav-item:hover .mega-dropdown {
    transform: translateY(0);
    opacity: 1 !important;
    visibility: visible !important;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    background: #ffffff !important;
    position: relative;
    z-index: 10000;
}

.mega-column {
    background: #ffffff !important;
    position: relative;
}

.mega-column h4 {
    color: #2c3e50 !important;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #e098cb;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: #ffffff !important;
    font-family: 'Raleway', sans-serif;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff !important;
}

.mega-column li {
    margin-bottom: 8px;
    background: #ffffff !important;
}

.mega-column a {
    color: #555 !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    background: #ffffff !important;
    font-family: 'Raleway', sans-serif;
}

.mega-column a:hover {
    color: #e098cb !important;
    background: rgba(224, 152, 203, 0.12) !important;
    padding-left: 16px;
    transform: translateX(5px);
}

.mega-column.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.featured-product {
    text-align: center;
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.featured-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.featured-product h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50 !important;
    background: transparent !important;
    font-family: 'Raleway', sans-serif;
}

.featured-product .price {
    font-weight: 700;
    color: #e098cb !important;
    font-size: 14px;
    background: transparent !important;
    font-family: 'Raleway', sans-serif;
}

.featured-product .old-price {
    text-decoration: line-through;
    color: #999 !important;
    font-weight: 400;
    margin-left: 6px;
    font-size: 12px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #e098cb, #c77fb5);
    color: white;
}

.mobile-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-content {
    padding: 20px 0;
}

.mobile-search {
    padding: 0 20px 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.mobile-search-form {
    display: flex;
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden;
}

.mobile-search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    outline: none;
}

.mobile-search-btn {
    padding: 12px 15px;
    background: #e098cb;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f8f9fa;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(224, 152, 203, 0.05);
    color: #e098cb;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    background-color: rgba(224, 152, 203, 0.1);
    color: #e098cb;
}

.mobile-user-actions {
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.mobile-account-section {
    margin-bottom: 15px;
}

.mobile-account-dropdown .mobile-dropdown-menu {
    background: #f8f9fa;
    margin-left: 15px;
    border-radius: 8px;
}

.mobile-account-dropdown .mobile-dropdown-menu a {
    padding: 10px 20px;
    color: #555;
    font-weight: 500;
}

.mobile-action-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-action-link:hover {
    color: #e098cb;
}

.mobile-action-link i {
    font-size: 18px;
    width: 20px;
}

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

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
/* Desktop Navigation - Show user actions */
@media (min-width: 769px) {
    .user-actions {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .main-nav {
        display: block;
    }
    
    .nav-menu {
        display: flex;
    }
}

/* Large Tablet / Small Desktop - 1024px */
@media (max-width: 1024px) {
    .mega-dropdown {
        width: 600px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .user-actions {
        gap: 15px;
    }
}

/* Tablet Landscape / Small Desktop - 940px */
@media (max-width: 940px) {
    .container {
        padding: 0 15px;
    }
    
    .user-actions {
        gap: 12px;
    }
    
    .action-text {
        font-size: 10px;
    }
    
    .action-link i {
        font-size: 18px;
    }
    
    .nav-link {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .search-input {
        width: 180px;
        font-size: 13px;
    }
}

/* Tablet Portrait - 820px */
@media (max-width: 820px) {
    .user-actions {
        gap: 10px;
    }
    
    .action-item.login .action-link,
    .action-item.signup .action-link {
        padding: 6px 10px;
        min-width: 50px;
    }
    
    .action-item.login .action-text,
    .action-item.signup .action-text {
        font-size: 9px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .search-input {
        width: 160px;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .mega-dropdown {
        width: 500px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile Transition - 769px to 820px */
@media (max-width: 820px) and (min-width: 769px) {
    .top-header {
        display: block;
    }
    
    .search-container {
        display: flex;
    }
    
    .main-nav {
        display: block;
    }
    
    .nav-menu {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .user-actions {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .header-content {
        gap: 10px;
        justify-content: space-between;
    }
    
    .search-container {
        display: none;
    }
    
    /* Hide login and signup buttons on mobile */
    .action-item.login,
    .action-item.signup {
        display: none !important;
    }
    
    .user-actions {
        gap: 15px;
    }
    
    /* Hide duplicate user actions since they're in hamburger menu */
    .user-actions {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 10px 0;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
}

/* Hover Effects & Animations */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e098cb, #c77fb5);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.search-input:focus,
.mobile-search-input:focus {
    outline: 2px solid #e098cb;
    outline-offset: 2px;
}

.nav-link:focus,
.action-link:focus,
.mobile-nav-link:focus {
    outline: 2px solid #e098cb;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced Auth Modals */
.auth-modal {
    max-width: 480px;
    width: 95%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, #e098cb 0%, #c77fb5 50%, #b06ba3 100%);
    color: white;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: modalShimmer 6s ease-in-out infinite;
}

@keyframes modalShimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.modal-header h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.modal-header .close-modal {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.modal-header .close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1) rotate(90deg);
}

.auth-form {
    padding: 40px 35px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.auth-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.auth-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.auth-form input::placeholder {
    color: #8995a1;
    font-weight: 400;
}

.auth-form input:focus {
    outline: none;
    border-color: #e098cb;
    box-shadow: 0 0 0 4px rgba(224, 152, 203, 0.15), 0 4px 12px rgba(224, 152, 203, 0.1);
    transform: translateY(-2px);
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #e098cb;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #e098cb;
    border-color: #e098cb;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: #e098cb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #c77fb5;
    text-decoration: underline;
}

.auth-btn {
    background: linear-gradient(135deg, #e098cb, #c77fb5);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #c77fb5, #b06ba3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 152, 203, 0.3);
}

.auth-footer {
    text-align: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.auth-footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.switch-to-signup,
.switch-to-login {
    color: #e098cb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.switch-to-signup:hover,
.switch-to-login:hover {
    color: #c77fb5;
    text-decoration: underline;
}

/* Enhanced Modal Animations and Responsive Styles */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

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

/* Modal Responsive */
@media (max-width: 480px) {
    .auth-modal {
        width: 95%;
        max-width: none;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 25px 20px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .auth-form {
        padding: 30px 25px 25px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .auth-btn {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .auth-footer {
        padding: 20px 25px 25px;
    }
}

.form-options {
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #e098cb;
    border-color: #e098cb;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: #e098cb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #c77fb5;
    text-decoration: underline;
}

.auth-btn {
    background: linear-gradient(135deg, #e098cb, #c77fb5);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #c77fb5, #b06ba3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 152, 203, 0.3);
}

.auth-footer {
    text-align: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.auth-footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.switch-to-signup,
.switch-to-login {
    color: #e098cb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.switch-to-signup:hover,
.switch-to-login:hover {
    color: #c77fb5;
    text-decoration: underline;
}

/* Modal Responsive */
@media (max-width: 480px) {
    .auth-modal {
        width: 95%;
        max-width: none;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .auth-form {
        padding: 25px 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Ensure proper stacking context */
.main-header {
    position: relative;
    z-index: 100;
}

.dropdown-menu,
.mega-dropdown {
    z-index: 1001 !important;
    position: absolute;
}

.mobile-nav {
    z-index: 9999;
}

.mobile-overlay {
    z-index: 9998;
}

/* Enhanced dropdown hover states */
.dropdown-active .account-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-active .account-arrow {
    transform: rotate(180deg);
}

.dropdown-active .dropdown-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Raleway', sans-serif;
    min-height: 44px;
    min-width: 44px;
    box-sizing: border-box;
    touch-action: manipulation;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-height: 40px;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Mobile button adjustments */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }
    
    .btn-sm {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .btn-lg {
        padding: 16px 32px;
        width: 100%;
        max-width: 280px;
    }
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo span {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 5px;
    letter-spacing: 1px;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.auth-buttons { display:flex; gap:8px; }

.search-bar {
    display: flex;
    margin-right: 25px;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    overflow: hidden;
}

.search-bar input {
    padding: 8px 15px;
    border: none;
    width: 180px;
    font-size: 0.8rem;
    color: #999;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    padding: 8px 12px;
    background-color: transparent;
    color: var(--dark-text);
    border: none;
    cursor: pointer;
}

.search-bar button:hover {
    color: var(--secondary-color);
}

/* Header on white background: dark text for contrast */
header .header-top, header .header-top a { color: var(--dark-text); }
header .search-bar { border: 1px solid var(--border-color); }
header .search-bar input { color: var(--dark-text); background: var(--white); }
header .search-bar input::placeholder { color: var(--light-text); }
header .search-bar button { color: var(--dark-text); }
header .mobile-menu-toggle span { background-color: var(--dark-text); }

.user-actions {
    display: flex;
    align-items: center;
}

.icon-link {
    margin-left: 20px;
    font-size: 1rem;
    color: var(--dark-text);
    transition: all 0.2s ease;
}

.icon-link:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.cart-icon {
    position: relative;
}

.cart-icon::after {
    content: "0";
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    border-top: 1px solid var(--border-color);
    padding: 0;
    background-color: var(--white);
}

/* Category ribbon */
.category-ribbon { background: var(--bg-light); border-bottom:1px solid var(--border-color); }
.category-ribbon .ribbon-list { display:flex; gap:18px; padding:10px 0; overflow:auto; }
.category-ribbon a { color: var(--primary-color); font-weight:600; font-size:0.85rem; white-space:nowrap; }
.category-ribbon a:hover { color: var(--accent-color); }

.main-menu {
    display: flex;
    justify-content: center;
    margin: 0;
    gap: 30px;
}

.main-menu li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    color: var(--dark-text);
}

.main-menu li a:hover, .main-menu li a.active {
    color: var(--primary-color);
    opacity: 1;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-menu li a:hover::after, .main-menu li a.active::after {
    width: 70%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: var(--white);
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--dark-text);
    margin-bottom: 4px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown and Mega Menu */
.main-menu li {
    position: relative;
}

.has-dropdown > .dropdown,
.has-mega > .mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.has-dropdown > .dropdown {
    background: var(--white);
    padding: 12px 10px;
    min-width: 220px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.has-dropdown > .dropdown ul li a {
    color: var(--dark-text);
    padding: 8px 12px;
    font-size: 0.8rem;
    text-transform: none;
}

.has-dropdown > .dropdown ul li a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

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

.has-mega > .mega-menu {
    background: var(--white);
    width: 900px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-col h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.mega-col ul li a {
    display: block;
    color: var(--dark-text);
    padding: 6px 0;
    text-transform: none;
    font-size: 0.9rem;
}

.mega-col ul li a:hover {
    color: var(--primary-color);
}

.mega-col.visual img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.submenu-toggle { display: none; }

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-accent) 100%);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-text {
    max-width: 100%;
    width: 100%;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
    word-wrap: break-word;
}

.hero-offer {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.offer-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    word-wrap: break-word;
}

.offer-desc {
    font-size: 0.9rem;
    color: var(--dark-text);
    word-wrap: break-word;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
}

/* Row carousels */
.carousel-row { position: relative; padding-bottom: 46px; }
.scroll-row { 
    display: grid; 
    grid-auto-flow: column; 
    grid-auto-columns: minmax(clamp(200px, 22vw, 280px), max-content); 
    gap: clamp(8px, 1.5vw, 14px); 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    padding: 4px clamp(35px, 6vw, 44px) 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.3) transparent;
}

/* Specific sizing for service video container */
#services-container.scroll-row {
    grid-auto-columns: minmax(clamp(420px, 35vw, 520px), max-content);
}

@media (max-width: 1200px) {
    #services-container.scroll-row {
        grid-auto-columns: minmax(clamp(380px, 37vw, 460px), max-content);
    }
}

@media (max-width: 768px) {
    #services-container.scroll-row {
        grid-auto-columns: minmax(clamp(340px, 43vw, 400px), max-content);
    }
}

@media (max-width: 480px) {
    #services-container.scroll-row {
        grid-auto-columns: minmax(clamp(380px, 90vw, 440px), max-content);
    }
}

@media (max-width: 360px) {
    #services-container.scroll-row {
        grid-auto-columns: minmax(clamp(340px, 94vw, 380px), max-content);
    }
}

.scroll-row::-webkit-scrollbar {
    height: 4px;
}

.scroll-row::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 2px;
}

.scroll-row::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.5);
}

.row-nav { 
    position: absolute; 
    bottom: -10px; 
    top: auto; 
    left: 50%; 
    transform: translateX(-50%); 
    width: clamp(32px, 5vw, 40px); 
    height: clamp(32px, 5vw, 40px); 
    border-radius: 50%; 
    border: 1px solid #ddd; 
    background: #fff; 
    color: #333; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    z-index: 2;
    font-size: clamp(12px, 2vw, 14px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}
.row-nav:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.row-nav.prev { margin-left: clamp(-20px, -3vw, -28px); }
.row-nav.next { margin-left: clamp(20px, 3vw, 28px); }

/* Promo tiles */
.promo-tiles { padding: 18px 0 8px; background:#fff; }
.tiles-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tile img { width:100%; height:140px; object-fit:cover; border-radius:6px; display:block; }

/* Features Section */
.features { 
    padding: 40px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Categories Section */
.categories { 
    padding: 40px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 300px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
}

.category-content h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Featured Products Section */
.featured-products {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark-text);
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    text-transform: lowercase;
    font-family: 'Raleway', sans-serif;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.section-cta { text-align: center; margin-top: 20px; }

.featured-star {
    font-size: 0.8rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.featured-products { 
    padding: 40px 0 60px;
    background-color: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Promo banner */
.promo-banner { padding: 20px 0 40px; background:#fff; }
.promo-banner img { width:100%; height:auto; display:block; border-radius:6px; }

/* Assurance badges */
.assurance-badges { background: var(--white); padding: 15px 0; border-top:1px solid var(--border-color); border-bottom:1px solid var(--border-color); }
.badges-list { display:flex; flex-wrap:wrap; gap:14px 22px; justify-content:center; font-weight:600; color: var(--primary-color); font-size:.95rem; }

/* Shop-by grids */
.shop-by { padding: 30px 0; background: var(--white); }
.shop-grid { display:grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.shop-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.shop-card { display:flex; align-items:center; justify-content:center; padding:18px; border:1px solid var(--border-color); border-radius:6px; background: var(--bg-light); color: var(--accent-color); font-weight:600; text-align:center; }
.shop-card:hover { background: var(--bg-accent); }

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
    transition: all 0.25s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #fafafa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Description overlay on hover */
.product-desc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.2) 60%, rgba(0,0,0,0));
    color: #fff;
    opacity: 0;
    transition: opacity .25s ease;
    padding: 14px;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

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

.product-desc-overlay p {
    max-height: 70%;
    overflow: auto;
    font-size: .85rem;
    line-height: 1.35;
}

/* Hover effect on Add to cart button */
.cart-btn {
    background: linear-gradient(135deg, #e098cb, #c77fb5);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .25s ease;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,.12);
    background: linear-gradient(135deg, #c77fb5, #b06ba3);
}

/* 4-image grid inside product image */
.image-grid-4 {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 44px);
    gap: 6px;
    padding: 4px;
    background: rgba(255,255,255,0.85);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.image-grid-4 img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

/* Lightbox for fullscreen product images */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    height: 80vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    cursor: pointer;
}

.lightbox-close { right: 12px; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }

.lightbox-thumbs {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(6, 64px);
    gap: 8px;
    padding: 6px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(2px);
    border-radius: 8px;
}

.lightbox-thumbs img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
}

.lightbox-thumbs img.active { border-color: #fff; }

@media (max-width: 768px) {
    .image-grid-4 { grid-template-columns: repeat(4, 36px); }
    .image-grid-4 img { width: 36px; height: 36px; }
    .lightbox-content { width: 96vw; height: 78vh; }
    .lightbox-thumbs { grid-template-columns: repeat(5, 56px); }
    .lightbox-thumbs img { width: 56px; height: 56px; }
    
    /* Mobile carousel improvements */
    .scroll-row {
        padding: 4px 20px 8px;
        gap: 16px;
    }
    
    .row-nav {
        width: 36px;
        height: 36px;
        bottom: -12px;
    }
    
    .row-nav.prev { margin-left: -22px; }
    .row-nav.next { margin-left: 22px; }
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

.discount-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffe8ef;
    color: #b82854;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 14px;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 1;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    color: var(--dark-text);
    font-size: 0.9rem;
    background-color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.product-action-btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.product-info {
    padding: 14px 12px 16px;
    text-align: left;
}

.product-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--dark-text);
    font-family: 'Raleway', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-title:hover {
    color: var(--secondary-color);
}

.price-row { display:flex; align-items:center; gap:8px; margin: 6px 0 10px; }
.price-row .price { font-size: 1rem; font-weight: 700; color: #222; }
.price-row .old { font-size: .9rem; color: #888; text-decoration: line-through; }
.price-row .off { font-size: .8rem; color: #b82854; font-weight: 700; }

.rating { color: #ff9900; font-size: .85rem; margin-bottom: 6px; }

.product-description {
    display: none;
}

.product-footer { margin-top: 10px; }

.buy-now-btn {
    padding: 8px 16px;
    background-color: transparent;
    color: var(--dark-text);
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-text);
    width: 100%;
    margin-bottom: 10px;
}

.buy-now-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Lotus-style add to cart */
.cart-btn {
    padding: 9px 12px;
    background-color: #6b3f88;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s ease;
    border: none;
    width: 100%;
}
.cart-btn:hover { opacity: .9; }

.product-category {
    font-size: 0.75rem;
    color: var(--light-text);
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.testimonial-card {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    transition: all 0.5s ease;
    background-color: white;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 3px solid #f5f5f5;
}

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

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: #f0f0f0;
    position: absolute;
    left: -20px;
    top: -30px;
    opacity: 0.5;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--light-text);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-btn {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    color: var(--dark-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px 20px;
    position: relative;
}

.blog-date {
    font-size: 0.7rem;
    color: var(--light-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--light-text);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
footer {
    background-color: #6d004b;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-column p,
.footer-column li,
.footer-column a {
    color: #ffffff;
}

.footer-column a:hover {
    color: #000000;
}

.app-download {
    margin: 14px 0 10px;
}

.badge-title {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 8px;
}

.store-badges {
    display: flex;
    gap: 10px;
}

.store-badges a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    margin-top: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.footer-column ul li {
    margin-bottom: 8px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info li i {
    color: #000000;
}

.footer-note {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 14px;
    margin-top: 10px;
    color: #f7dbff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-methods i {
    font-size: 1.4rem;
    margin-left: 10px;
    color: #fff;
}

.footer-credit {
    text-align: center;
    margin-top: 10px;
    color: #f7dbff;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    max-width: 900px;
    border-radius: var(--border-radius);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
}

.close-modal:hover {
    color: var(--error-color);
}

.modal-body {
    display: flex;
    padding: 30px;
}

.product-details {
    flex: 1;
    padding-right: 30px;
}

.modal-product-image {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-product-price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-product-description {
    margin-bottom: 20px;
}

.purchase-form {
    flex: 1;
    border-left: 1px solid var(--border-color);
    padding-left: 30px;
}

.purchase-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--gray-medium);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.total-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Responsive Styles */

/* Large Desktop - 1200px+ */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .search-bar input {
        width: 160px;
    }
}

/* Desktop/Tablet - 992px */
@media (max-width: 992px) {
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .shop-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .product-details {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .purchase-form {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 30px;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    /* Promo adjustments */
    .top-promo .promo-inner { 
        flex-direction: column; 
        gap: 8px;
        padding: 10px 0;
        text-align: center;
    }
    
    .promo-copy {
        font-size: 0.85rem;
    }
    
    /* Header layout */
    .header-top {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
        position: relative;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .logo span {
        font-size: 0.75rem;
    }
    
    .header-right {
        flex-direction: column;
        width: 100%;
        position: static;
        transform: none;
        align-items: center;
        gap: 15px;
    }
    
    .search-bar {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .search-bar input {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .auth-buttons {
        gap: 10px;
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    /* Mobile menu */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 15px;
    }
    
    .main-menu {
        display: none;
    }
    
    .main-menu.active {
        display: flex;
        flex-direction: column;
        background: var(--primary-color);
        position: fixed;
        top: 80px;
        left: 15px;
        right: 15px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 15px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        z-index: 1000;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-menu li a {
        color: #fff;
        padding: 14px 12px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .main-menu li:last-child a {
        border-bottom: none;
    }

    .submenu-toggle {
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 8px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
    }
    
    .has-dropdown.open .submenu-toggle,
    .has-mega.open .submenu-toggle {
        transform: rotate(45deg);
    }

    .has-dropdown > .dropdown,
    .has-mega > .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(255,255,255,0.1);
        padding: 10px;
        margin: 5px 0;
        border-radius: 4px;
        width: 100%;
    }

    .has-dropdown.open > .dropdown,
    .has-mega.open > .mega-menu {
        display: block;
    }

    .has-dropdown > .dropdown ul li a,
    .mega-col ul li a {
        padding: 10px 0;
        color: #fff;
        font-size: 0.85rem;
        border-bottom: none;
        min-height: 44px;
    }

    .mega-grid { 
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mega-col.visual img { 
        height: 120px;
        border-radius: 4px;
    }
    
    /* Hero section */
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-offer {
        margin-bottom: 25px;
        padding: 15px;
    }
    
    .offer-text {
        font-size: 1.4rem;
    }
    
    .offer-desc {
        font-size: 0.85rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    /* Grid adjustments */
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tiles-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .shop-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-ribbon .ribbon-list { 
        gap: 8px;
        padding: 8px 0;
        font-size: 0.8rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Components */
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .badges-list {
        font-size: 0.8rem;
        gap: 8px 15px;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .newsletter-form input {
        padding: 12px 15px;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .features-grid,
    .products-grid,
    .categories-grid,
    .blog-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tiles-grid { 
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .scroll-row { 
        padding: 4px 35px;
        gap: 12px;
    }
    
    .shop-grid { 
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .shop-card {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    /* Typography */
    .logo h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .logo span {
        font-size: 0.7rem;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-offer {
        padding: 12px;
    }
    
    .offer-text {
        font-size: 1.2rem;
    }
    
    .offer-desc {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    /* Components */
    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .product-card {
        margin-bottom: 10px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 0.85rem;
        min-height: 35px;
    }
    
    .price-row .price {
        font-size: 0.9rem;
    }
    
    .cart-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .badges-list {
        font-size: 0.75rem;
        gap: 6px 10px;
    }
    
    /* Footer */
    .footer-content {
        gap: 20px;
    }
    
    .footer-column h3,
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .footer-column ul li {
        margin-bottom: 6px;
    }
    
    .footer-column ul li a,
    .footer-column p {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom p {
        margin-bottom: 10px;
        font-size: 0.8rem;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-methods i {
        margin: 0 3px;
        font-size: 1.2rem;
    }
    
    /* Newsletter */
    .newsletter-content h3 {
        font-size: 1.4rem;
    }
    
    .newsletter-content p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonial-content .testimonial-quote {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    /* Navigation elements */
    .row-nav {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 200px;
    }
    
    .btn-sm {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .mobile-menu-toggle {
        top: 15px;
        right: 10px;
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
        height: 1.5px;
    }
    
    /* Ticker adjustments */
    .promo-ticker .ticker-track {
        font-size: 0.8rem;
        gap: 25px;
    }
    
    .top-promo {
        font-size: 0.8rem;
    }
    
    .category-ribbon .ribbon-list {
        font-size: 0.75rem;
        gap: 6px;
        padding: 6px 0;
    }
    
    /* Modal adjustments */
    .modal-content {
        margin: 20px auto;
        max-width: calc(100vw - 20px);
    }
    
    .modal-body {
        padding: 15px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-banner {
        padding: 40px 0;
        min-height: 400px;
    }
    
    .feature-card {
        padding: 12px 8px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .newsletter {
        padding: 40px 0;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    .features {
        padding: 30px 0;
    }
    
    .categories {
        padding: 30px 0;
    }
    
    .featured-products {
        padding: 30px 0 40px;
    }
    
    .main-menu.active {
        top: 70px;
        left: 10px;
        right: 10px;
        max-height: calc(100vh - 90px);
    }
}

/* Extra Small Mobile - 320px */
@media (max-width: 320px) {
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .hero-text h1 {
        font-size: 1.3rem;
    }
    
    .hero-banner {
        padding: 30px 0;
        min-height: 350px;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-title {
        font-size: 0.8rem;
        min-height: 30px;
    }
    
    .row-nav {
        width: 28px;
        height: 28px;
    }
    
    .section-header h2 {
        font-size: 1rem;
    }
    
    .main-menu.active {
        top: 65px;
        left: 5px;
        right: 5px;
        padding: 10px;
    }
    
    .container {
        padding: 0 8px;
    }
}
  /* Additional styles specific to Private Education page */
        .hero4{
            background-image: url('/Assets/private.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
            padding: 80px 0;
            min-height: 500px;
        }
        .blog-section {
            padding: 60px 0;
            background-color: var(--bg-light);
        }
        
        .blog-filters {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            align-items: center;
        }
        
        .blog-search {
            position: relative;
            width: 300px;
        }
        
        .blog-search input {
            width: 100%;
            padding: 10px 15px 10px 40px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
        }
        
        .blog-search i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--light-text);
        }
        
        .blog-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .blog-category {
            padding: 8px 16px;
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            text-transform: capitalize;
        }
        
        .blog-category:hover, .blog-category.active {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }
        
        .featured-post {
            margin-bottom: 40px;
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .featured-post-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        
        .featured-post-image {
            height: 100%;
        }
        
        .featured-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .featured-post-content {
            padding: 30px;
        }
        
        .post-date {
            display: flex;
            align-items: center;
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .post-date i {
            margin-right: 5px;
        }
        
        .featured-post-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .featured-post-excerpt {
            margin-bottom: 20px;
        }
        
        .blog-posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .no-posts {
            text-align: center;
            padding: 60px 0;
        }
        
        .no-posts h3 {
            margin-bottom: 20px;
        }
        
        .newsletter-section {
            padding: 60px 0;
            background-color: var(--white);
            text-align: center;
        }
        
        .newsletter-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 30px auto 0;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }
        
        .newsletter-form button {
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        @media (max-width: 992px) {
            .blog-posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .featured-post-inner {
                grid-template-columns: 1fr;
            }
            
            .featured-post-image {
                height: 300px;
            }
            
            .blog-filters {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .blog-search {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
                border-radius: var(--border-radius);
            }
            
            .newsletter-form input {
                margin-bottom: 10px;
            }
        }
         * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            }

            body {
            font-family: sans-serif;
            background: #f4f4f4;
            }

            /* 🔹 Full-Width Carousel Image */
            .carousel-fullscreen {
            width: 100%;
            }

            .carousel-fullscreen img {
            width: 100%;
            height: 500px;
            display: block;
            object-fit: cover;
            }
        
        @media (max-width: 576px) {
            .blog-posts-grid {
                grid-template-columns: 1fr;
            }
        }
         /* Additional styles specific to Products page */
        .hero2 {
            background-image: url('Assets/11.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
            padding: 80px 0;
            min-height: 1000px;
        }
        .filters-section {
            padding: 30px 0;
            background-color: var(--bg-light);
        }

        .filters-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .filter-title {
            font-size: 1.5rem;
            margin-bottom: 0;
        }

        .search-filter {
            position: relative;
            width: 300px;
        }

        .search-filter input {
            width: 100%;
            padding: 10px 15px 10px 40px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
        }

        .search-filter i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--light-text);
        }

        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .category-filter {
            padding: 8px 16px;
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .category-filter:hover,
        .category-filter.active {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .no-products {
            text-align: center;
            padding: 60px 0;
        }

        .no-products h3 {
            margin-bottom: 20px;
        }

        .care-guide {
            padding: 60px 0;
            background-color: var(--white);
        }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .guide-card {
            background-color: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 30px;
        }

        .guide-card h3 {
            margin-bottom: 20px;
        }

        .guide-steps {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .guide-step {
            display: flex;
            margin-bottom: 15px;
        }

        .step-number {
            font-weight: bold;
            color: var(--secondary-color);
            margin-right: 10px;
        }

        @media (max-width: 992px) {
            .guide-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .filters-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .filter-title {
                margin-bottom: 15px;
            }

            .search-filter {
                width: 100%;
                margin-bottom: 15px;
            }

            .guide-grid {
                grid-template-columns: 1fr;
            }
        }
         /* Additional styles specific to Feedback page */
        .hero6{
            background-image: url('/Assets/10.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
            padding: 80px 0;
            min-height: 1000px;
        }
        .feedback-section {
            padding: 60px 0;
            background-color: var(--bg-light);
        }
        
        .feedback-form-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-col {
            flex: 1;
        }
        
        .rating-container {
            display: flex;
            gap: 5px;
        }
        
        .star {
            color: var(--gray-medium);
            font-size: 30px;
            cursor: pointer;
        }
        
        .star.active {
            color: var(--secondary-color);
        }
        
        .checkbox-container {
            display: flex;
            align-items: flex-start;
            margin-top: 20px;
        }
        
        .checkbox-container input {
            margin-top: 5px;
            margin-right: 10px;
            width: auto;
        }
        
        .testimonials-section {
            padding: 60px 0;
            background-color: var(--white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .testimonial-item {
            background-color: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
        }
        
        .testimonial-stars {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark-text);
        }
        
        .testimonial-name {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .testimonial-location {
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        @media (max-width: 992px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
/* Additional styles specific to About page */
 .hero1{
            background-image: url('Assets/7.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
            padding: 80px 0;
            min-height: 1000px;
        }
        .history-section, .mission-section, .approach-section, .team-section {
            padding: 60px 0;
        }
        
        .history-section {
            background-color: var(--white);
        }
        
        .mission-section {
            background-color: var(--bg-light);
        }
        
        .approach-section {
            background-color: var(--white);
        }
        
        .team-section {
            background-color: var(--bg-accent);
        }
        
        .about-cta {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
        }
        
        .about-cta h2 {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .about-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .about-cta .btn-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .history-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .history-image {
            flex: 1;
            position: relative;
        }
        
        .history-image img {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .est-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 8px 16px;
            border-radius: var(--border-radius);
            font-family: 'Playfair Display', serif;
        }
        
        .history-text {
            flex: 1;
        }
        
        .mission-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        
        .mission-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .value-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .approach-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .approach-image {
            flex: 1;
        }
        
        .approach-image img {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .approach-text {
            flex: 1;
        }
        
        .approach-item {
            display: flex;
            margin-bottom: 20px;
        }
        
        .approach-icon {
            color: var(--secondary-color);
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .team-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .team-image {
            height: 300px;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-info {
            padding: 20px;
            text-align: center;
        }
        
        .team-name {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .team-title {
            color: var(--secondary-color);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .team-bio {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        @media (max-width: 992px) {
            .values-grid, .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .history-content, .approach-content {
                flex-direction: column;
            }
            
            .history-image, .history-text, .approach-image, .approach-text {
                width: 100%;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
 /* Additional styles specific to Contact page */
        .hero3{
            background-image: url('Assets/8.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
            padding: 80px 0;
            min-height: 1000px;
        }
        .contact-section {
            padding: 60px 0;
            background-color: var(--bg-light);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-info {
            background-color: #e098cb;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        
        .contact-form {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        
        .contact-info-item {
            display: flex;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .contact-details h4 {
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: var(--light-text);
            margin-bottom: 0;
        }
        
        .social-media {
            margin-top: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .map-section {
            padding: 60px 0;
        }
        
        .map-container {
            height: 450px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
            }
        }

/* Specific fixes for each dropdown item */
.account-dropdown .login-item,
.account-dropdown .login-item a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    height: auto !important;
    line-height: 1.4 !important;
    font-size: 14px !important;
}

.account-dropdown .signup-item,
.account-dropdown .signup-item a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    color: #333 !important;
}

.account-dropdown .account-item,
.account-dropdown .account-item a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    color: #333 !important;
}

/* Force all dropdown links to be visible */
.account-dropdown li.login-item a.login-trigger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    color: #333 !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
    font-weight: 500 !important;
}

.account-dropdown li.signup-item a.signup-trigger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    color: #333 !important;
    padding: 12px 16px !important;
}

.account-dropdown li.account-item a.my-account-link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    color: #333 !important;
    padding: 12px 16px !important;
}

/* Ensure all dropdown links are visible */
.dropdown-menu a,
.account-dropdown a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force visibility for all list items in account dropdown */
.account-dropdown ul li {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    line-height: normal !important;
}

/* Specific fix for first child visibility */
.account-dropdown ul li:first-child {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    height: auto !important;
}

/* Debug styles - ensure dropdown is properly sized */
.account-dropdown {
    min-height: 140px !important;
    max-height: none !important;
    overflow: visible !important;
}

.account-dropdown ul {
    min-height: 120px !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
}

/* Reset any conflicting styles that might hide Login */
.account-dropdown * {
    box-sizing: border-box !important;
}

.account-dropdown ul li:nth-child(1),
.account-dropdown ul li:first-child {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 40px !important;
    background: #fff !important;
}

.account-dropdown ul li:nth-child(1) a,
.account-dropdown ul li:first-child a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
    background: #fff !important;
    padding: 12px 16px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}
