:root {
    --navy: #0A1A2F;
    --blue: #1A4F8F;
    --white: #FFFFFF;
    --dark-gray: #2D2D2D;
    --light-gray: #F5F5F5;
    --medium-gray: #888888;
    --border-color: #E0E0E0;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
}

.nav-menu a:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    width: 0;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid transparent;
    font-size: 14px;
    transition: var(--transition);
    background: transparent;
}

.search-form:focus-within .search-input {
    width: 150px;
    border-bottom-color: var(--navy);
    padding-right: 30px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--dark-gray);
}

.cart-icon, .user-icon {
    position: relative;
    color: var(--dark-gray);
}

.cart-icon:hover, .user-icon:hover {
    color: var(--blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn, .logout-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
}

.login-btn:hover, .logout-btn:hover {
    color: var(--blue);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-gray);
    transition: var(--transition);
}

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* ============================
   HERO SLIDER – ZERO LIFESTYLE STYLE (TUNED)
============================ */

.hero-slider {
    position: relative;
    width: 100%;
    padding: 0 20px 50px;   /* side gap kam kar diya */
    box-sizing: border-box;
    background: #f5f5f7;
}

.slider-container {
    position: relative;
    width: 100%;            /* full width inside padding */
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    min-height: 450px;
    background: #000;       /* base for images */
    /* soft blur-type shadow behind banner */
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

/* Slides Wrapper */
.slides {
    position: relative;
    width: 100%;
    height: 450px;
}

/* Individual Slide */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

/* Dark Gradient Overlay like Zero */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding-left: 70px;
    max-width: 520px;
}

.slide-content h1 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 18px;
}

.slide-content p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 28px;
}

.slide-content .btn.btn-primary {
    padding: 14px 40px;
    font-size: 14px;
    background: #ffffff;
    color: #111;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

/* ============================
   SLIDER ARROWS – Zero Style
============================ */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 22px rgba(0,0,0,0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.slider-arrow svg {
    stroke: #111;
}

.slider-arrow.prev {
    left: -14px;   /* bahar thoda sa dikh raha hai */
}

.slider-arrow.next {
    right: -14px;
}

.slider-arrow:hover {
    background: #111;
}

.slider-arrow:hover svg {
    stroke: #fff;
}

/* ============================
   SLIDER DOTS – Clean minimal
============================ */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.4);
    transition: 0.2s ease;
    border: none;
    cursor: pointer;
}

.slider-dots .dot.active {
    width: 24px;
    background: #ffffff;
}

/* ============================
   RESPONSIVE STYLE
============================ */

@media (max-width: 992px) {
    .hero-slider {
        padding: 0 16px 30px;
    }
    .slider-container {
        border-radius: 18px;
        min-height: 360px;
    }
    .slides {
        height: 360px;
    }
    .slide-content {
        padding-left: 32px;
        max-width: 420px;
    }
    .slide-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        padding: 0;   /* mobile pe full width */
    }
    .slider-container {
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(15,23,42,0.22);
    }
    .slides {
        height: 300px;
    }
    .slide-content {
        padding-left: 20px;
    }
    .slide-content h1 {
        font-size: 26px;
    }
}


.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--blue);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 12px;
}

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

.btn-danger:hover {
    background: #c82333;
}

.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image {
    aspect-ratio: 1;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.product-placeholder {
    font-size: 48px;
    color: var(--border-color);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
}

.product-price .original-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-right: 8px;
}

.product-price .sale-price {
    color: var(--danger);
    font-weight: 600;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--navy);
    color: var(--white);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.discount-badge {
    background: var(--danger);
    right: 15px;
    left: auto;
}

.product-badge + .product-badge.discount-badge {
    top: 15px;
}

.featured-section {
    background: var(--light-gray);
}

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

.category-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.category-card:hover::before {
    left: 100%;
}

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

.category-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    opacity: 0.8;
}

.page-header {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.8;
}

.breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--medium-gray);
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb span {
    color: var(--navy);
}

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    gap: 20px;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
}

.subcategory-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.subcategory-pill {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-gray);
    background: var(--white);
    transition: var(--transition);
}

.subcategory-pill:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.subcategory-pill.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    background: var(--light-gray);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-details h1 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 15px;
}

.product-details .price {
    font-size: 32px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 25px;
}

.product-details .description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.stock-status {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
}

.stock-in {
    background: #d4edda;
    color: #155724;
}

.stock-out {
    background: #f8d7da;
    color: #721c24;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector label {
    font-weight: 500;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.quantity-input button {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-input button:hover {
    background: var(--border-color);
}

.quantity-input input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
}

.add-to-cart-form {
    display: flex;
    gap: 15px;
}

.cart-page, .checkout-page, .account-page {
    padding: 60px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cart-product-info h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 14px;
    color: var(--medium-gray);
}

.cart-summary {
    background: var(--light-gray);
    padding: 30px;
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--navy);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary-total {
    font-size: 20px;
    font-weight: 600;
    border-bottom: none;
    padding-top: 20px;
}

.cart-actions {
    margin-top: 25px;
}

.cart-actions .btn {
    width: 100%;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--blue);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.checkout-section {
    margin-bottom: 40px;
}

.checkout-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--navy);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.payment-method {
    background: var(--light-gray);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method input {
    width: 20px;
    height: 20px;
}

.order-summary {
    background: var(--light-gray);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.auth-page {
    padding: 80px 0;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.auth-container h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--navy);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

.auth-footer a {
    color: var(--blue);
    font-weight: 500;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.orders-list {
    margin-top: 30px;
}

.order-card {
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding: 25px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.order-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.order-status {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-processing { background: #cce5ff; color: #004085; }
.status-shipped { background: #d4edda; color: #155724; }
.status-completed { background: #155724; color: var(--white); }
.status-cancelled { background: #f8d7da; color: #721c24; }

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

.order-detail-item h5 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.order-detail-item p {
    font-size: 15px;
    color: var(--dark-gray);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 14px;
}

.remove-btn:hover {
    text-decoration: underline;
}

.search-results {
    padding: 60px 0;
}

.search-results h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--medium-gray);
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 15px 0;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 15px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 70vh;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .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(5px, -5px);
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .user-menu {
        gap: 10px;
    }
    
    .login-btn, .logout-btn {
        font-size: 12px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .product-category {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .product-badge {
        padding: 3px 8px;
        font-size: 9px;
        top: 10px;
        left: 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 12px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .breadcrumb ul {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
    }
    
    .filter-options {
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }
    
    .filter-select {
        flex: 1;
        min-width: 120px;
    }
    
    .subcategory-pills {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .subcategory-pill {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .product-detail {
        padding: 30px 0;
    }
    
    .product-detail-grid {
        gap: 30px;
    }
    
    .product-details h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .product-details .price {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .product-details .description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .quantity-selector {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .add-to-cart-form {
        flex-direction: column;
    }
    
    .add-to-cart-form .btn {
        width: 100%;
        text-align: center;
    }
    
    .cart-page, .checkout-page, .account-page {
        padding: 30px 0;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid var(--border-color);
        background: var(--white);
    }
    
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .cart-table td:last-child {
        border-bottom: none;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 13px;
    }
    
    .cart-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-product-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-summary {
        max-width: 100%;
        margin: 0;
        padding: 20px;
    }
    
    .cart-summary h3 {
        font-size: 20px;
    }
    
    .checkout-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .payment-method {
        padding: 15px;
    }
    
    .order-summary {
        padding: 20px;
        position: static;
    }
    
    .auth-page {
        padding: 40px 0;
    }
    
    .auth-container {
        padding: 25px 20px;
        border: none;
        box-shadow: none;
    }
    
    .auth-container h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .orders-list {
        margin-top: 20px;
    }
    
    .order-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 12px;
    }
    
    .order-number {
        font-size: 16px;
    }
    
    .order-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .order-detail-item h5 {
        font-size: 11px;
    }
    
    .order-detail-item p {
        font-size: 13px;
    }
    
    .empty-state {
        padding: 50px 15px;
    }
    
    .empty-state h3 {
        font-size: 20px;
    }
    
    .empty-state p {
        font-size: 14px;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-col a {
        font-size: 13px;
    }
    
    .footer-col li {
        margin-bottom: 8px;
    }
    
    .footer-phone {
        font-size: 13px;
    }
    
    .footer-address {
        font-size: 13px;
    }
    
    .footer-contact-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-card h3 {
        font-size: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-contact-buttons {
        align-items: center;
    }
    
    .auth-container {
        padding: 20px 15px;
    }
    
    .auth-container h2 {
        font-size: 22px;
    }
    
    .order-details {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .content-page h1 {
        font-size: 28px;
    }
    
    .product-details h1 {
        font-size: 20px;
    }
    
    .product-details .price {
        font-size: 22px;
    }
    
    .cart-summary-row {
        font-size: 14px;
    }
    
    .cart-summary-total {
        font-size: 18px;
    }
    
    .quantity-input input {
        width: 50px;
    }
    
    .quantity-input button {
        width: 35px;
        height: 35px;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.slides {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 47, 0.6);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

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

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--white);
}

/* Contact Buttons - Header */
.contact-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: var(--transition);
}

.contact-btn.whatsapp-btn {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp-btn:hover {
    background: #1DA851;
    transform: scale(1.1);
}

.contact-btn.call-btn {
    background: var(--blue);
    color: white;
}

.contact-btn.call-btn:hover {
    background: var(--navy);
    transform: scale(1.1);
}

/* Contact Buttons - Footer */
.footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.footer-contact-btn.whatsapp:hover {
    background: #1DA851;
}

.footer-contact-btn.call {
    background: var(--blue);
    color: white;
}

.footer-contact-btn.call:hover {
    background: var(--navy);
}

.footer-phone {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Contact Buttons - Product Page */
.product-contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.product-contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.product-contact-btn.whatsapp:hover {
    background: #1DA851;
}

.product-contact-btn.call {
    background: var(--blue);
    color: white;
}

.product-contact-btn.call:hover {
    background: var(--navy);
}

/* Subcategory Filter */
.subcategory-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.subcategory-filter a {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    background: var(--light-gray);
    color: var(--dark-gray);
    transition: var(--transition);
}

.subcategory-filter a:hover,
.subcategory-filter a.active {
    background: var(--blue);
    color: white;
}

/* Search Toggle Button */
.search-toggle {
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: var(--blue);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slides {
        height: 350px;
    }
    
    .slide-content {
        padding: 30px 15px;
    }
    
    .slide-content h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .product-contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons {
        display: none;
    }
}

@media (max-width: 480px) {
    .slides {
        height: 300px;
    }
    
    .slide-content h1 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
}

/* Floating Contact Buttons (Mobile) */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.floating-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.floating-contact .whatsapp-float {
    background: #25D366;
    color: white;
}

.floating-contact .call-float {
    background: var(--blue);
    color: white;
}

@media (max-width: 768px) {
    .floating-contact {
        display: flex;
    }
}

/* Dropdown Menu */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
}

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

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--blue);
}

/* Footer Address */
.footer-address {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-phone a {
    color: inherit;
    opacity: 0.8;
}

.footer-phone a:hover {
    opacity: 1;
}

/* Price Filter */
.price-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-filter input {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.price-filter .filter-btn {
    padding: 8px 16px;
    background: var(--navy);
    color: var(--white);
    border: none;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.price-filter .filter-btn:hover {
    background: var(--blue);
}

/* Content Pages */
.content-page {
    padding: 60px 0;
}

.content-page h1 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 30px;
}

.content-page .page-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.content-page .page-content h2 {
    font-size: 28px;
    color: var(--navy);
    margin: 30px 0 15px;
}

.content-page .page-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin: 25px 0 12px;
}

.content-page .page-content p {
    margin-bottom: 15px;
}

.content-page .page-content ul,
.content-page .page-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-page .page-content li {
    margin-bottom: 8px;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 30px;
    text-align: center;
}

.contact-info-card svg {
    color: var(--blue);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--blue);
}

/* Homepage Category Section */
.shop-categories-section {
    background: var(--light-gray);
}

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

.shop-category-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.shop-category-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.shop-category-image {
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-category-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    color: var(--navy);
}

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

@media (max-width: 768px) {
    .nav-menu li.has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu li.has-dropdown > a::after {
        content: '+';
        font-size: 18px;
        font-weight: 300;
        margin-left: 10px;
        transition: var(--transition);
    }
    
    .nav-menu li.has-dropdown.dropdown-open > a::after {
        content: '-';
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background: transparent;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    
    .nav-menu li.has-dropdown.dropdown-open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding-bottom: 10px;
    }
    
    .nav-menu .dropdown-menu li {
        border-bottom: none;
    }
    
    .nav-menu .dropdown-menu a {
        padding: 10px 0 10px 15px;
        font-size: 13px;
        color: var(--medium-gray);
        border-left: 2px solid var(--border-color);
    }
    
    .nav-menu .dropdown-menu a:hover,
    .nav-menu .dropdown-menu a:active {
        border-left-color: var(--blue);
        color: var(--blue);
        background: transparent;
    }
    
    .shop-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .shop-category-image {
        height: 120px;
    }
    
    .shop-category-card h3 {
        padding: 15px;
        font-size: 14px;
    }
    
    .price-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }
    
    .price-filter input {
        width: 100%;
    }
    
    .price-filter .filter-btn {
        grid-column: span 2;
    }
    
    .content-page {
        padding: 40px 0;
    }
    
    .content-page h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .content-page .page-content {
        font-size: 15px;
    }
    
    .content-page .page-content h2 {
        font-size: 22px;
        margin: 25px 0 12px;
    }
    
    .content-page .page-content h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }
    
    .contact-info-grid {
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-info-card h3 {
        font-size: 16px;
    }
    
    .subcategory-filter {
        gap: 8px;
    }
    
    .subcategory-filter a {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .shop-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-category-image {
        height: 150px;
    }
    
    .shop-category-card h3 {
        font-size: 16px;
    }
}


/* Alert Mobile Styles */
@media (max-width: 768px) {
    .alert {
        padding: 12px 15px;
        font-size: 13px;
        margin-bottom: 15px;
    }
}

/* Admin Panel Mobile (Basic) */
@media (max-width: 768px) {
    .admin-container {
        padding: 15px;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .admin-table {
        font-size: 13px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 8px;
    }
}

/* Utility Classes for Mobile */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .show-on-mobile-only {
        display: none !important;
    }
}

/* Category Circles - Round Design */
.category-circles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-circle-item:hover {
    transform: translateY(-5px);
}

.category-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(10, 26, 47, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-circle-item:hover .category-circle {
    box-shadow: 0 12px 35px rgba(10, 26, 47, 0.3);
    transform: scale(1.05);
}

.category-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-circle .category-initial {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: white;
}

.category-circle-item .category-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Logo Images - Responsive */
.logo-image {
    max-height: 45px;
    width: auto;
    height: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-image {
    max-height: 50px;
    width: auto;
    height: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-image {
        max-height: 35px;
        max-width: 140px;
    }
    
    .footer-logo-image {
        max-height: 40px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-height: 30px;
        max-width: 120px;
    }
    
    .footer-logo-image {
        max-height: 35px;
        max-width: 140px;
    }
}

/* Full-Screen Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.search-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--light-gray);
}

.search-overlay-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.search-overlay-logo-image {
    max-height: 45px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.search-overlay-header .logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 3px;
}

.search-overlay-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.search-overlay-close:hover {
    color: var(--navy);
}

.search-overlay-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 60px 40px 40px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    overflow-y: auto;
}

.search-overlay-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.search-overlay-input {
    flex: 1;
    font-size: 28px;
    font-family: var(--font-display);
    border: none;
    outline: none;
    background: transparent;
    color: var(--navy);
}

.search-overlay-input::placeholder {
    color: var(--medium-gray);
}

.search-overlay-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--navy);
}

.search-overlay-results {
    flex: 1;
}

.search-overlay-results h3 {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.search-result-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--dark-gray);
    transition: transform 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-5px);
}

.search-result-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    color: var(--medium-gray);
    font-size: 18px;
    letter-spacing: 2px;
}

.search-result-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--dark-gray);
}

.search-result-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

.search-result-price .original-price {
    font-size: 12px;
    font-weight: 400;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-right: 8px;
}

.search-result-price .sale-price {
    color: var(--danger);
}

.search-no-results {
    text-align: center;
    padding: 40px;
    color: var(--medium-gray);
}

.search-loading {
    text-align: center;
    padding: 40px;
    color: var(--medium-gray);
}

@media (max-width: 768px) {
    .search-overlay-header {
        padding: 15px 20px;
    }
    
    .search-overlay-content {
        padding: 30px 20px;
    }
    
    .search-overlay-input {
        font-size: 20px;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .search-overlay-input {
        font-size: 18px;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .search-result-name {
        font-size: 13px;
    }
    
    .search-result-price {
        font-size: 13px;
    }
}

/* Category Circles Mobile */
@media (max-width: 768px) {
    .category-circles-grid {
        gap: 25px;
    }
    
    .category-circle {
        width: 90px;
        height: 90px;
    }
    
    .category-circle .category-initial {
        font-size: 32px;
    }
    
    .category-circle-item .category-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .category-circles-grid {
        gap: 20px;
    }
    
    .category-circle {
        width: 70px;
        height: 70px;
    }
    
    .category-circle .category-initial {
        font-size: 26px;
    }
    
    .category-circle-item .category-name {
        font-size: 11px;
    }
}

/* Search Overlay Logo Responsive */
@media (max-width: 768px) {
    .search-overlay-logo-image {
        max-height: 35px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .search-overlay-logo-image {
        max-height: 30px;
        max-width: 120px;
    }
}

/* Add to Cart Animation */
.flying-image {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.65s cubic-bezier(0.32, 0.94, 0.60, 1);
    opacity: 1;
}

.flying-image.fly {
    opacity: 0;
    transform: scale(0.2) rotate(15deg);
}

/* Product image bounce when adding to cart */
.cart-bounce {
    animation: cartBounce 0.4s ease-out;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(0.92); }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Product Card Buttons on Homepage */
.product-card-wrapper {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

.product-card-wrapper:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-card-wrapper .product-card {
    border: none;
    box-shadow: none;
    transform: none;
}

.product-card-wrapper .product-card:hover {
    box-shadow: none;
    transform: none;
}

.product-card-buttons {
    display: flex;
    gap: 8px;
    padding: 0 15px 15px;
}

.card-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.card-btn.add-cart-btn {
    background: var(--navy);
    color: var(--white);
}

.card-btn.add-cart-btn:hover {
    background: var(--blue);
}

.card-btn.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.card-btn.whatsapp-btn:hover {
    background: #1DA851;
}

.quick-add-form {
    flex: 1;
    display: flex;
}

.quick-add-form button {
    width: 100%;
}

@media (max-width: 768px) {
    .product-card-buttons {
        padding: 0 10px 10px;
        gap: 6px;
    }
    
    .card-btn {
        padding: 8px 8px;
        font-size: 10px;
        gap: 4px;
    }
    
    .card-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .product-card-buttons {
        flex-direction: column;
        gap: 6px;
    }
    
    .card-btn {
        font-size: 11px;
        padding: 10px;
    }
}

/* Cart icon pulse animation */
.cart-icon.pulse {
    animation: cartPulse 0.6s ease-out;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-count.bump {
    animation: countBump 0.4s ease-out;
}

@keyframes countBump {
    0% { transform: scale(1) translate(-50%, 0); }
    50% { transform: scale(1.5) translate(-50%, 0); }
    100% { transform: scale(1) translate(-50%, 0); }
}

@media (max-width: 480px) {
    .toast-container {
        top: 80px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* Mini Cart Sidebar */
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mini-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
}

.mini-cart-sidebar.active {
    right: 0;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
}

.mini-cart-header h3 {
    font-size: 20px;
    color: var(--navy);
    margin: 0;
}

.mini-cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--dark-gray);
    transition: color 0.2s ease;
}

.mini-cart-close:hover {
    color: var(--navy);
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mini-cart-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--medium-gray);
}

.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--medium-gray);
}

.mini-cart-empty svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: var(--border-color);
}

.mini-cart-empty p {
    font-size: 15px;
    margin-bottom: 20px;
}

.mini-cart-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--medium-gray);
}

.mini-cart-error p {
    font-size: 15px;
    margin-bottom: 20px;
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.mini-cart-item-image {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--medium-gray);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.mini-cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    line-height: 1.3;
}

.mini-cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

.mini-cart-item-qty {
    font-size: 12px;
    color: var(--medium-gray);
}

.mini-cart-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.mini-cart-actions {
    display: flex;
    gap: 10px;
}

.mini-cart-btn {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
}

@media (max-width: 480px) {
    .mini-cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .mini-cart-header {
        padding: 15px 20px;
    }
    
    .mini-cart-header h3 {
        font-size: 18px;
    }
    
    .mini-cart-items {
        padding: 15px;
    }
    
    .mini-cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .mini-cart-footer {
        padding: 15px 20px;
    }
    
    .mini-cart-actions {
        flex-direction: column;
    }
    
    .mini-cart-btn {
        padding: 12px 15px;
    }
}

/* VALYO Promise Section */
.valyo-promise-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.valyo-promise-section .section-header h2 {
    color: var(--navy);
}

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

.promise-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.promise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

.promise-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.promise-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promise-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.promise-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.promise-link:hover::after {
    width: 100%;
}

/* Promise Detail Page */
.promise-detail-section {
    padding: 60px 0;
}

.promise-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.promise-detail-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-detail-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
}

.promise-detail-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy);
}

.promise-detail-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.promise-detail-content h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 40px 0 20px;
}

.promise-detail-content h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 30px 0 15px;
}

.promise-detail-content p {
    margin-bottom: 20px;
}

.promise-detail-content ul,
.promise-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.promise-detail-content li {
    margin-bottom: 10px;
}

.promise-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Other Promises Section */
.other-promises-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.other-promises-section h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 40px;
}

.other-promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.other-promise-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.other-promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.other-promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-promise-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.other-promise-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
}

/* Responsive Styles for Promises */
@media (max-width: 992px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promise-card {
        padding: 30px 25px;
    }
    
    .promise-icon {
        width: 70px;
        height: 70px;
    }
    
    .promise-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .valyo-promise-section {
        padding: 60px 0;
    }
    
    .promise-detail-header h1 {
        font-size: 2rem;
    }
    
    .promise-detail-icon {
        width: 80px;
        height: 80px;
    }
    
    .promise-detail-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .other-promises-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promise-cta {
        flex-direction: column;
        gap: 15px;
    }
}
