:root {
    --primary: #9E1B4F;
    --secondary: #E91E63;
    --accent-yellow: #F5C400;
    --accent-orange: #FF9800;
    --dark: #2B0A1F;
    --white: #FFFFFF;
    --light-bg: #F9F6F8;
    --text-dark: #2B0A1F;
    --text-gray: #6C757D;
    --border-light: #E2D8DE;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(158, 27, 79, 0.08);
    --shadow-hover: 0 20px 50px rgba(158, 27, 79, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(158, 27, 79, 0.05);
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 30px rgba(158, 27, 79, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    color: var(--dark) !important;
    letter-spacing: -1px;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--dark) !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
/* ===== DROPDOWN MENU STYLES ===== */
.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(158, 27, 79, 0.12);
    padding: 0.8rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    border: 1px solid rgba(158, 27, 79, 0.1);
    z-index: 1050;
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    font-weight: 500;
    color: var(--dark);
    padding: 0.7rem 1.8rem;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border-left: 3px solid transparent;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: linear-gradient(90deg, rgba(158, 27, 79, 0.05), transparent);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 2.2rem;
}

.navbar .dropdown-item.active {
    background: linear-gradient(90deg, rgba(158, 27, 79, 0.1), transparent);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.navbar .dropdown-divider {
    margin: 0.5rem 1rem;
    border-top: 1px solid rgba(158, 27, 79, 0.1);
}

/* Category header inside dropdown (optional) */
.navbar .dropdown-header {
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.8rem;
    font-weight: 700;
    background: transparent;
}

/* Dropdown toggle styling */
.navbar .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar .nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.3rem;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.navbar .nav-link.dropdown-toggle:hover::after,
.navbar .nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary);
}

/* Remove default underline from dropdown toggles */
.nav-item.dropdown .nav-link:after {
    display: none;
}

/* Keep underline for non-dropdown items */
.nav-item:not(.dropdown) .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-item:not(.dropdown) .nav-link:hover:after,
.nav-item:not(.dropdown) .nav-link.active:after {
    width: 100%;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding-left: 1rem;
        margin-top: 0;
        border-left: 2px solid var(--primary);
        border-radius: 0;
    }

    .navbar .dropdown-item {
        padding: 0.6rem 1rem;
        border-left: none;
    }

    .navbar .dropdown-item:hover {
        background: rgba(158, 27, 79, 0.05);
        border-left: none;
        padding-left: 1.5rem;
    }

    .navbar .nav-link.dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
    }
}
/* Logo image styling */
.navbar-brand .logo-img {
    height: 60px;          /* Adjust as needed – matches navbar height */
    width: auto;           /* Maintain aspect ratio */
    display: block;        /* Remove extra space below image */
    transition: var(--transition);
}

/* Optional: scale logo slightly when navbar shrinks on scroll */
.navbar.scrolled .navbar-brand .logo-img {
    height: 45px;
}

/* Remove default text styles from navbar-brand when it contains an image */
.navbar-brand {
    padding: 0;            /* Remove any padding that might offset the image */
    line-height: 1;        /* Prevent extra height */
}

/* If you need to fine‑tune vertical alignment */
.navbar-brand {
    display: flex;
    align-items: center;
}
/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(158, 27, 79, 0.3);
}

.btn-primary-custom: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);
}

.btn-primary-custom:hover:before {
    left: 100%;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-add-to-cart {
    flex: 1;
    min-width: 200px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(158, 27, 79, 0.3);
}

.btn-wishlist {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border-light);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-wishlist:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-buy-now {
    flex: 1;
    min-width: 200px;
    background: var(--accent-orange);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-buy-now:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 196, 0, 0.3);
}

.btn-checkout {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
}

.btn-checkout:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(158, 27, 79, 0.3);
}

.btn-continue {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border-light);
}

.btn-continue:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--dark);
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: 76px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(43, 10, 31, 0.8), rgba(158, 27, 79, 0.6));
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.category-card {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(43, 10, 31, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* List View */
.products-grid.list-view {
    display: block;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    height: auto;
}

.products-grid.list-view .product-img-container {
    flex: 0 0 250px;
    height: 250px;
}

.products-grid.list-view .product-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-grid.list-view .product-actions {
    justify-content: flex-start;
    margin-top: 20px;
}

.products-grid.list-view .product-description {
    display: block !important;
    margin: 10px 0;
}

.products-grid.list-view .product-price-container {
    margin-bottom: 0;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 2;
}

.product-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--light-bg);
    flex-shrink: 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, var(--accent-orange), var(--accent-yellow));
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.brand-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(158, 27, 79, 0.3);
}

/* Stock Status Badge */
.stock-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.in-stock-badge {
    background: linear-gradient(to right, #28a745, #20c997);
    color: white;
}

.out-of-stock-badge {
    background: linear-gradient(to right, #dc3545, #e35d6a);
    color: white;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.3;
    min-height: 2.6em;
}

.product-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
}

.product-original-price {
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 1rem;
}

.product-save {
    background-color: var(--accent-yellow);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Product Meta */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-yellow);
}

.product-rating span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-sku {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* In Stock Status */
.in-stock {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.out-of-stock {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    background: var(--light-bg);
    border: 2px solid transparent;
    color: var(--dark);
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
}

.action-btn:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-view {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-view:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===== PAGE SECTIONS ===== */
.featured-section,
.new-arrivals {
    padding: 100px 0;
}

.featured-section {
    background-color: var(--white);
}

.new-arrivals {
    background-color: var(--light-bg);
}

.banner-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.banner-content {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 80px 60px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.banner-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23ffffff" fill-opacity="0.1" fill-rule="evenodd"/></svg>');
    opacity: 0.3;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.banner-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.banner-btn:hover {
    background: var(--accent-yellow);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 100px 0;
    background-color: var(--white);
}

.newsletter-container {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    border: 2px solid var(--border-light);
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.newsletter-text {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(158, 27, 79, 0.1);
    border: 2px solid transparent;
    transition: var(--transition);
}

.newsletter-form .input-group:focus-within {
    border-color: var(--primary);
}

.newsletter-form .form-control {
    border: none;
    background: transparent;
    padding: 15px 25px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark);
    color: #B8AEB5;
    padding: 80px 0 30px;
}

.footer-title {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B8AEB5;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: translateY(-5px);
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 30px rgba(158, 27, 79, 0.1);
    z-index: 1050;
    padding: 25px;
    transition: var(--transition);
    overflow-y: auto;
    border-left: 2px solid var(--primary);
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(43, 10, 31, 0.7);
    z-index: 1040;
    display: none;
    backdrop-filter: blur(5px);
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.cart-header h4 {
    margin: 0;
    color: var(--dark);
    font-weight: 700;
}

.cart-header h4:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 50%;
    margin-right: 10px;
}

.cart-items {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.cart-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background-color: var(--primary);
    border-radius: 0 3px 3px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.cart-item:hover .cart-item-img {
    border-color: var(--primary);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.cart-item-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.cart-item-original-price {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-left: 5px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.quantity-value {
    margin: 0 10px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--dark);
}

.cart-item-remove {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.cart-summary {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--dark);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-action-btn {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart-icon {
    font-size: 3rem;
    color: var(--border-light);
    margin-bottom: 15px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-container {
    margin-bottom: 30px;
    padding-top: 100px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: var(--text-gray);
}

.breadcrumb-item a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary);
    content: "›";
}

/* ===== PRODUCTS HEADER ===== */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.products-count {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ===== SHOP / CATEGORY / BRAND HERO ===== */
.shop-hero,
.category-hero,
.collection-hero,
.brand-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.shop-hero:before,
.category-hero:before,
.collection-hero:before,
.brand-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(158, 27, 79, 0.1), rgba(233, 30, 99, 0.1));
    z-index: 1;
}

.shop-hero-content,
.category-hero-content,
.collection-hero-content,
.brand-hero-content {
    max-width: 800px;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.shop-hero-title,
.category-hero-title,
.collection-hero-title,
.brand-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.shop-hero-description,
.category-hero-description,
.collection-hero-description,
.brand-hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 600px;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.sidebar-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: var(--secondary);
}

/* Filter Lists */
.category-list,
.brand-list,
.filter-list {
    list-style: none;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
}

.category-list::-webkit-scrollbar,
.brand-list::-webkit-scrollbar,
.filter-list::-webkit-scrollbar {
    width: 5px;
}

.category-list::-webkit-scrollbar-track,
.brand-list::-webkit-scrollbar-track,
.filter-list::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.category-list::-webkit-scrollbar-thumb,
.brand-list::-webkit-scrollbar-thumb,
.filter-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.category-list li,
.brand-list li,
.filter-list li {
    margin-bottom: 8px;
}

/* Sidebar Links */
.sidebar-link,
.category-list a,
.brand-list a,
.filter-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.sidebar-link:hover,
.category-list a:hover,
.brand-list a:hover,
.filter-list a:hover {
    color: var(--secondary);
    background: var(--light-bg);
    border-color: var(--border-light);
    padding-left: 20px;
}

.sidebar-link.active,
.category-list a.active,
.brand-list a.active,
.filter-list a.active {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}

.sidebar-link .badge,
.category-list a .badge,
.brand-list a .badge,
.filter-list a .badge {
    background: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.category-list a i,
.brand-list a i {
    margin-right: 10px;
    transition: var(--transition);
    color: var(--primary);
}

.category-list a:hover i,
.brand-list a:hover i {
    transform: translateX(5px);
    color: var(--secondary);
}

/* ===== PRICE RANGE ===== */
.price-range-container {
    padding: 10px 0;
}

.price-input {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-input input {
    width: 45%;
    padding: 8px 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
}

.price-input input:focus {
    border-color: var(--primary);
    outline: none;
}

.price-input span {
    color: var(--text-gray);
    font-weight: 500;
}

.price-slider {
    width: 100%;
    height: 6px;
    background: var(--light-bg);
    border-radius: 3px;
    position: relative;
    margin: 15px 0;
}

.price-slider .progress {
    position: absolute;
    left: 25%;
    right: 25%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(158, 27, 79, 0.3);
}

.price-slider input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(158, 27, 79, 0.3);
}

/* ===== FILTER ACTIONS ===== */
.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.filter-actions .btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-apply-filters {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-apply-filters:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(158, 27, 79, 0.3);
}

.btn-reset-filters {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border-light);
}

.btn-reset-filters:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 2px dashed var(--border-light);
    grid-column: 1 / -1;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--border-light);
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.empty-state-text {
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ===== PAGINATION ===== */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    margin-bottom: 40px;
}

.pagination {
    display: flex;
    gap: 8px;
}

.page-link {
    padding: 8px 16px;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===== SORT OPTIONS ===== */
.sort-options select {
    background-color: var(--white);
    border: 2px solid var(--border-light);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.sort-options select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(158, 27, 79, 0.1);
    outline: none;
}

/* ===== SHOP STATS ===== */
.shop-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ACTIVE FILTERS ===== */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.filter-tag {
    background: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-tag .remove-filter {
    cursor: pointer;
    margin-left: 5px;
    font-size: 1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.filter-tag .remove-filter:hover {
    opacity: 1;
    transform: scale(1.1);
}

.clear-all-filters {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.clear-all-filters:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== VIEW OPTIONS ===== */
.view-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.view-options .btn {
    background: var(--light-bg);
    border: 2px solid var(--border-light);
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.view-options .btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.view-options .btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===== QUANTITY SELECTOR (FILTER) ===== */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-selector button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-light);
    background: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 5px;
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1100;
    min-width: 300px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    animation: slideInRight 0.3s ease, slideOutRight 0.3s ease 2.7s;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* ===== PRICE DISPLAY & MISC ===== */
.price-display {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
}

.filter-active {
    background-color: var(--primary) !important;
    color: white !important;
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid var(--border-light);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--text-gray);
}

/* ===== PRODUCT DETAIL SPECIFIC ===== */
.product-detail-hero {
    margin-bottom: 50px;
}

.product-gallery {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--light-bg);
    margin-bottom: 15px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.main-image.zooming {
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-item {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(to right, var(--accent-orange), var(--accent-yellow));
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
}

.enhanced-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: var(--secondary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    z-index: 2;
}

.product-info-container {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    height: 100%;
}

.product-category-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-brand-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    margin-bottom: 15px;
}

.product-info-container .product-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.2;
}

.product-info-container .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.rating-stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.rating-value {
    font-weight: 600;
    color: var(--dark);
}

.rating-count {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-info-container .product-price-container {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid var(--border-light);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.discount-percent {
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.save-amount {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-description-content {
    margin: 25px 0;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.variation-selector {
    margin: 20px 0;
}

.variation-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.size-option,
.color-option {
    min-width: 50px;
    padding: 8px 16px;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
}

.size-option:hover,
.color-option:hover {
    border-color: var(--primary);
}

.size-option.selected,
.color-option.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.color-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.stock-indicator {
    font-size: 0.9rem;
    margin-top: 5px;
}

.stock-indicator .in-stock {
    color: #28a745;
}

.stock-indicator .low-stock {
    color: #ffc107;
}

.stock-indicator .out-of-stock {
    color: #dc3545;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(158, 27, 79, 0.8);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    max-width: 800px;
    width: 90%;
    background: var(--dark);
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -30px;
    right: 0;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.video-modal video {
    width: 100%;
    max-height: 500px;
}

.product-info-container .quantity-selector {
    display: flex;
    align-items: center;
    margin: 25px 0;
    gap: 20px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    width: 140px;
}

.quantity-control .quantity-btn {
    background: var(--light-bg);
    border: none;
    width: 40px;
    height: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control .quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-control .quantity-input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
}

.quantity-control .quantity-input:focus {
    outline: none;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.product-info-container .product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.product-meta-details {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    color: var(--text-gray);
    font-weight: 500;
}

.meta-value {
    color: var(--dark);
    font-weight: 600;
}

/* ===== TABS ===== */
.product-tabs {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    margin: 50px 0;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 30px;
    overflow-x: auto;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-gray);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.tab-btn:hover:not(.active) {
    color: var(--secondary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.specifications-list {
    list-style: none;
    padding: 0;
}

.specifications-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
}

.specifications-list li:last-child {
    border-bottom: none;
}

.spec-label {
    flex: 0 0 200px;
    color: var(--text-gray);
    font-weight: 500;
}

.spec-value {
    flex: 1;
    color: var(--dark);
    font-weight: 500;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    color: var(--dark);
}

.review-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent-yellow);
    margin: 5px 0;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
    margin: 60px 0;
}

/* ===== SHARE BUTTONS ===== */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-facebook {
    background: #1877F2;
}

.share-twitter {
    background: #1DA1F2;
}

.share-pinterest {
    background: #E60023;
}

.share-whatsapp {
    background: #25D366;
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-method {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== SHIPPING INFO ===== */
.shipping-info {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.shipping-info h6 {
    color: var(--primary);
    margin-bottom: 8px;
}

.shipping-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ===== RETURN POLICY ===== */
.return-policy {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-yellow);
}

.return-policy h6 {
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.return-policy p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
    }

    .slide-title {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .shop-hero,
    .category-hero,
    .brand-hero {
        height: 250px;
        margin-bottom: 30px;
    }

    .shop-hero-title,
    .category-hero-title,
    .brand-hero-title {
        font-size: 2.2rem;
    }

    .product-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .main-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .hero-slider {
        height: 60vh;
        margin-top: 70px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .category-card {
        height: 250px;
    }

    .banner-content {
        padding: 40px 20px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .newsletter-container {
        padding: 40px 20px;
    }

    .shop-hero,
    .category-hero,
    .brand-hero {
        height: 200px;
    }

    .shop-hero-title,
    .category-hero-title,
    .brand-hero-title {
        font-size: 1.8rem;
    }

    .shop-hero-content,
    .category-hero-content,
    .brand-hero-content {
        padding: 0 1.5rem;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-detail-hero {
        margin-top: 70px;
    }
    
    .product-info-container .product-title {
        font-size: 1.6rem;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .product-info-container .product-actions {
        flex-direction: column;
    }
    
    .btn-add-to-cart,
    .btn-buy-now {
        width: 100%;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid var(--border-light);
    }
}
        /* ===== AUTH PAGES STYLES ===== */
        .auth-container {
            min-height: calc(100vh - 400px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }

        .auth-card {
            background: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            padding: 40px;
            max-width: 500px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .auth-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .auth-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .auth-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .auth-header p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .auth-form .form-group {
            margin-bottom: 20px;
        }

        .auth-form label {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 5px;
            display: block;
        }

        .auth-form .input-group {
            background: var(--light-bg);
            border: 2px solid var(--border-light);
            border-radius: 8px;
            transition: var(--transition);
        }

        .auth-form .input-group:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(158, 27, 79, 0.1);
        }

        .auth-form .input-group-text {
            background: transparent;
            border: none;
            color: var(--text-gray);
        }

        .auth-form .form-control {
            background: transparent;
            border: none;
            padding: 12px 15px;
            font-size: 1rem;
            color: var(--dark);
        }

        .auth-form .form-control:focus {
            box-shadow: none;
        }

        .auth-form .form-check {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 15px 0;
        }

        .auth-form .form-check-input {
            width: 18px;
            height: 18px;
            border: 2px solid var(--border-light);
            border-radius: 4px;
            cursor: pointer;
        }

        .auth-form .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .auth-form .form-check-label {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .auth-form .form-check-label a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .auth-form .form-check-label a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }

        .auth-form .btn-auth {
            width: 100%;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: var(--white);
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .auth-form .btn-auth:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(158, 27, 79, 0.3);
        }

        .auth-form .btn-auth: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);
        }

        .auth-form .btn-auth:hover:before {
            left: 100%;
        }

        .auth-links {
            text-align: center;
            margin-top: 25px;
        }

        .auth-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .auth-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }

        .auth-separator {
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--text-gray);
            margin: 25px 0;
        }

        .auth-separator::before,
        .auth-separator::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid var(--border-light);
        }

        .auth-separator::before {
            margin-right: 10px;
        }

        .auth-separator::after {
            margin-left: 10px;
        }

        .auth-social {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .auth-social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-bg);
            border: 2px solid var(--border-light);
            color: var(--dark);
            font-size: 1.2rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .auth-social-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .alert {
            border-radius: 8px;
            padding: 12px 20px;
            margin-bottom: 20px;
            border: none;
        }

        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border-left: 4px solid #dc3545;
        }

        .alert-success {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            border-left: 4px solid #28a745;
        }

      /* Additional custom styles for OTP inputs – matches auth design */
        .otp-input {
            width: 45px;
            height: 50px;
            text-align: center;
            font-size: 22px;
            margin: 0 5px;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            background: var(--light-bg);
            color: var(--dark);
            transition: var(--transition);
        }
        .otp-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(158, 27, 79, 0.1);
            outline: none;
        }
        .btn-auth {
            width: 100%;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: var(--white);
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .btn-auth:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(158, 27, 79, 0.3);
        }
        .btn-auth: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);
        }
        .btn-auth:hover:before {
            left: 100%;
        }
        .btn-link-custom {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        .btn-link-custom:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        #countdownText {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* ===== POLICY PAGE STYLES ===== */
        .policy-container {
            min-height: calc(100vh - 400px);
            padding: 100px 20px 60px;
        }

        .policy-card {
            background: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .policy-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .policy-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .policy-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .policy-header p {
            color: var(--text-gray);
            font-size: 1rem;
        }

        .policy-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin: 30px 0 15px;
        }

        .policy-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
            margin: 25px 0 10px;
        }

        .policy-content p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .policy-content ul,
        .policy-content ol {
            color: var(--text-gray);
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .policy-content li {
            margin-bottom: 8px;
        }

        .policy-content strong {
            color: var(--dark);
        }

        .policy-content a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .policy-content a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }

        .policy-divider {
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 30px 0;
            opacity: 0.2;
        }

        .last-updated {
            font-style: italic;
            color: var(--text-gray);
            text-align: right;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        /* Blog-specific styles (same as before) */
        .blog-hero {
            background: linear-gradient(135deg, rgba(158,27,79,0.1) 0%, rgba(233,30,99,0.1) 100%);
            padding: 60px 0;
            margin-bottom: 40px;
            margin-top: 80px;
        }
        .blog-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border-light);
            height: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 50px;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .blog-card .video-thumbnail {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
            cursor: pointer;
        }
        .blog-card .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .blog-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }
        .blog-card .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(158,27,79,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
            opacity: 0.9;
        }
        .blog-card:hover .play-icon {
            background: var(--primary);
            transform: translate(-50%, -50%) scale(1.1);
        }
        .blog-card .card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .blog-card .category {
            font-size: 0.8rem;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .blog-card .title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
            line-height: 1.4;
        }
        .blog-card .excerpt {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.6;
            flex-grow: 1;
        }
        .blog-card .date {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-bottom: 10px;
        }
        .blog-card .btn-outline-primary {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 8px 15px;
            font-size: 0.9rem;
            border-radius: 8px;
            transition: var(--transition);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        .blog-card .btn-outline-primary:hover {
            background: var(--primary);
            color: var(--white);
        }
        .sidebar-card {
            background: var(--white);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }
        .sidebar-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-light);
        }
        .category-list {
            list-style: none;
            padding: 0;
        }
        .category-list li {
            margin-bottom: 10px;
        }
        .category-list a {
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 8px;
        }
        .category-list a:hover {
            color: var(--secondary);
            background: var(--light-bg);
            padding-left: 20px;
        }
        .category-list a .count {
            margin-left: auto;
            background: var(--light-bg);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
        }
        .recent-post {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            align-items: center;
        }
        .recent-post img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }
        .recent-post .post-title {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 3px;
            color: var(--dark);
        }
        .recent-post .post-date {
            font-size: 0.75rem;
            color: var(--text-gray);
        }
        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        .video-modal.active {
            display: flex;
        }
        .video-modal-content {
            max-width: 900px;
            width: 90%;
            background: var(--dark);
            padding: 10px;
            border-radius: 10px;
            position: relative;
        }
        .video-modal-close {
            position: absolute;
            top: -30px;
            right: 0;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .video-modal video {
            width: 100%;
            max-height: 500px;
        }
        .video-modal iframe {
            width: 100%;
            height: 500px;
            border: none;
        }
        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 2.2rem;
            }
        }