/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
   :root {
    /* Colors */
    --primary-color: #c11276; /* Magenta from Logo */
    --primary-hover: #a30e63;
    --secondary-color: #333333;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #f0f0f0;
    --border-color: #e5e5e5;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1400px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */
.top-bar {
    background-color: #ffffff;
    color: var(--text-main);
    font-size: 0.85rem;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.top-bar-left span {
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right a i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

.main-header {
    background-color: var(--bg-main);
    padding: 15px 0;
}

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

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

.logo img {
    height: 50px;
}

.notification-bell {
    position: relative;
    margin-left: 15px;
    color: #f5a623; /* Yellow bell */
    font-size: 1.8rem;
    cursor: pointer;
}

.notification-bell .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Bar */
.search-area {
    flex: 1;
    max-width: 700px;
    margin: 0 30px;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 4px;
    padding: 5px 15px;
    position: relative;
}

.search-icon {
    color: #999;
    margin-right: 10px;
}

.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    outline: none;
    font-size: 0.95rem;
}

.search-btn-text {
    background: transparent;
    border: none;
    border-left: 1px solid #ddd;
    padding-left: 15px;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 1.2rem;
}

.cart-btn {
    position: relative;
    background-color: #f5f5f5;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Header Categories & Mega Menu
   ========================================================================== */
.header-categories {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.category-icons-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cat-dropdown-wrapper {
    /* To allow hovering from the icon to the mega menu seamlessly */
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.cat-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-top: 1px solid #eee;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cat-dropdown-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    gap: 20px;
}

.mega-column {
    flex: 1;
}

.mega-group {
    margin-bottom: 30px;
}

.mega-group h4 {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.mega-group ul li {
    margin-bottom: 8px;
}

.mega-group ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

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

.cat-img-wrapper {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.cat-icon-item:hover .cat-img-wrapper {
    transform: translateY(-5px);
}

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

.cat-icon-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.cat-icon-item:hover span {
    color: var(--primary-color);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    display: flex;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-weight: 500;
    font-size: 0.95rem;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding-top: var(--spacing-xl);
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.footer-col h3 span {
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul a {
    color: #aaa;
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.contact-info i {
    color: var(--primary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: var(--spacing-md) 0;
    color: #777;
    font-size: 0.9rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Hero Carousel Section
   ========================================================================== */
.hero-carousel-section {
    padding: 40px 0;
    background-color: var(--bg-main);
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
}

.heroSwiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.heroSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-content {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.hero-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    color: #fff;
}

.hero-slide-overlay h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
    max-width: 600px;
}

.hero-slide-overlay p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    color: #e0e0e0;
}

.hero-slide-overlay .btn {
    align-self: flex-start;
}

/* Custom Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.heroSwiper .swiper-button-next {
    right: 5%;
}

.heroSwiper .swiper-button-prev {
    left: 5%;
}

/* Custom Pagination */
.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 10px;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-slide-content {
        height: 300px;
    }
    .hero-slide-overlay {
        padding: 0 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
        justify-content: flex-end;
        padding-bottom: 30px;
    }
    .hero-slide-overlay h2 {
        font-size: 1.8rem;
    }
    .hero-slide-overlay p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Brands Marquee Section
   ========================================================================== */
.brands-marquee-section {
    padding: 40px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient Mask for a seamless scrolling effect */
.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.brands-marquee-track {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    animation: marquee-brands 35s linear infinite;
}

.brands-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 80px;
    padding-right: 80px;
}

.brands-group img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: grayscale(100%) opacity(50%);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.brands-group img:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    .brands-group {
        gap: 40px;
        padding-right: 40px;
    }
    .brands-group img {
        height: 35px;
    }
    .brands-marquee::before,
    .brands-marquee::after {
        width: 50px;
    }
}

/* ==========================================================================
   Campaign Banners Section
   ========================================================================== */
.campaign-banners-section {
    background-color: var(--bg-light);
}

.campaign-banner-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
    color: var(--text-main);
}

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

.banner-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #f8f8f8;
}

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

.banner-price-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-price-tag .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.banner-price-tag .type {
    font-size: 0.8rem;
    opacity: 0.9;
}

.banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid var(--border-color);
}

.banner-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary-color);
}

.banner-footer i {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.campaign-banner-card:hover .banner-footer i {
    color: var(--primary-color);
    transform: translateX(5px);
}

.campaign-next, .campaign-prev {
    color: var(--secondary-color);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.campaign-next:after, .campaign-prev:after {
    font-size: 1rem;
    font-weight: bold;
}

.campaign-next {
    right: -20px;
}

.campaign-prev {
    left: -20px;
}

@media (max-width: 1200px) {
    .campaign-next { right: 10px; }
    .campaign-prev { left: 10px; }
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
    background-color: #fff;
}

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

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-title a:hover {
    color: var(--primary-color);
}

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

.btn-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-read-more i {
    margin-left: 8px;
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
}

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

.btn-read-more:hover i {
    transform: translateX(5px);
}

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Sections & Utilities
   ========================================================================== */
.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    display: block;
}

.category-image {
    width: 100%;
    height: 100%;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: var(--spacing-lg);
    color: #fff;
}

.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

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

.category-card:hover .category-overlay h3 {
    transform: translateY(0);
    color: var(--primary-color);
}

/* ==========================================================================
   Products Grid
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    transition: bottom var(--transition-normal);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.action-btn {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

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

.product-info {
    padding: var(--spacing-md);
    text-align: center;
}

.product-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

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

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 10px;
    font-weight: normal;
}

.new-price {
    color: var(--primary-color);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb-area {
    background-color: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--secondary-color);
    font-weight: 500;
}

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

.breadcrumb i {
    font-size: 0.7rem;
    color: #ccc;
}

/* ==========================================================================
   Category Page Layout
   ========================================================================== */
.category-header {
    margin-bottom: var(--spacing-lg);
}

.category-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.category-layout {
    display: flex;
    gap: var(--spacing-xl);
}

.category-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.category-content {
    flex: 1;
}

.filter-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.filter-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.filter-list a:hover, .filter-list a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive for Category */
@media (max-width: 992px) {
    .category-layout {
        flex-direction: column;
    }
    .category-sidebar {
        width: 100%;
    }
}

/* ==========================================================================
   Product Detail Page
   ========================================================================== */
.product-detail-layout {
    display: flex;
    gap: var(--spacing-xl);
}

.product-gallery {
    flex: 1;
    max-width: 600px;
}

.main-image {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.product-info-detail {
    flex: 1;
}

.product-title-large {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.product-price-large .old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 15px;
    font-weight: normal;
}

.product-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.product-meta {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
}

.product-meta p {
    margin-bottom: 5px;
}

.product-meta a {
    color: var(--primary-color);
}

.add-to-cart-area form {
    display: flex;
    gap: 15px;
    align-items: stretch;
    margin-bottom: var(--spacing-lg);
}

.qty-selector {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: var(--bg-light);
    border: none;
    width: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.qty-btn:hover {
    background: #e2e2e2;
}

.qty-selector input {
    width: 50px;
    border: none;
    text-align: center;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 1rem;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-lg {
    padding: 0 30px;
    font-size: 1.1rem;
    flex: 1;
}

.extra-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Responsive for Product Detail */
@media (max-width: 992px) {
    .product-detail-layout {
        flex-direction: column;
    }
    .product-gallery {
        max-width: 100%;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .main-nav {
        display: none; /* Will be toggled via JS */
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h2 {
        font-size: 2.5rem;
    }
}
