/**
 * Premium WooCommerce Styles - Modern E-commerce Design
 * Clean, responsive UI inspired by top e-commerce platforms
 * 
 * @package MultiShop BlueWave Systems
 */

/* ============================================
   CSS Variables - BlueWave Systems Color Palette
   ============================================ */
:root {
    /* Brand Colors - BlueWave Systems Logo Colors */
    --primary-color: #24ACFB;
    --primary-dark: #1A8FD4;
    --primary-light: #5BC4FC;
    --brand-blue: #24ACFB;
    --brand-yellow: #F5A623;
    --brand-orange: #FF9800;

    /* Neutral Colors - Professional gray tones */
    --gray-900: #1A1A1A;
    --gray-700: #424242;
    --gray-500: #757575;
    --gray-300: #E0E0E0;
    --gray-100: #F5F5F5;

    /* Status Colors */
    --success-color: #4CAF50;
    --danger-color: #F44336;
    --warning-color: #FF9800;
    --info-color: #24ACFB;

    /* Text Colors */
    --text-color: #1A1A1A;
    --text-muted: #757575;
    --text-light: #9E9E9E;

    /* Background Colors */
    --bg-light: #F8F9FA;
    --bg-cream: #F5F5DC;
    --bg-white: #FFFFFF;

    /* Border & Shadow */
    --border-color: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    /* Action Button (BlueWave brand blue) */
    --action-color: #24ACFB;
    --action-hover: #1A8FD4;

    /* WhatsApp (only for actual WhatsApp links) */
    --whatsapp-color: #25D366;
    --whatsapp-dark: #128C7E;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
}

.announcement-bar a {
    color: var(--brand-yellow);
    text-decoration: none;
}

.announcement-bar a:hover {
    text-decoration: underline;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky header shadow when scrolled */
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hide header on scroll down, show on scroll up */
.site-header.header-hidden {
    transform: translateY(-100%);
}

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

.header-logo .logo-img {
    height: 50px;
    /* Reduced from 80px to be more proportional */
    width: auto;
}

/* Header Navigation */
.header-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    /* Increased from 8px */
}

.header-nav .nav-menu li a {
    display: block;
    padding: 8px 12px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    /* Increased from 14px */
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.header-nav .nav-menu li a:hover,
.header-nav .nav-menu li a.active {
    background: rgba(36, 172, 251, 0.1);
    /* Subtle brand color background */
    color: var(--primary-color);
}

/* Header Search */
.header-search {
    flex: 2;
    /* Allow search to take more space */
    max-width: 600px;
    /* Increased from 400px */
}

.header-search .search-form {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-fast);
}

.header-search .search-form:focus-within {
    border-color: var(--primary-color);
}

.header-search input[type="text"] {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.header-search button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.header-search button:hover {
    background: var(--primary-dark);
}

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

.header-action a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.header-action a:hover {
    background: var(--bg-light);
}

.header-action a i {
    font-size: 18px;
}

.whatsapp-action a {
    color: var(--whatsapp-color);
}

.whatsapp-action a:hover {
    background: rgba(37, 211, 102, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1100;
    transition: left var(--transition-normal);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    left: 0;
}

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

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

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-search {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-search form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.mobile-search input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
}

.mobile-search button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 15px;
}

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

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.mobile-nav li a:hover {
    background: var(--bg-light);
}

.mobile-nav li a i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
}

.mobile-nav .whatsapp-link a {
    color: var(--whatsapp-color);
}

.mobile-nav .whatsapp-link a i {
    color: var(--whatsapp-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

/* ============================================
   HOMEPAGE - CLEAN MINIMAL DESIGN
   ============================================ */

/* Hero Container */
.hero-container {
    padding: 20px 0;
    background: var(--bg-light);
}

/* Category Sidebar */
.category-sidebar {
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 430px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E5E7EB;
}

.category-header {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.category-header i {
    font-size: 14px;
}

.category-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(430px - 48px);
    overflow-y: auto;
    overflow-x: hidden;
}

.category-item {
    position: relative;
}

.category-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 18px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #F3F4F6;
    transition: all 0.15s ease;
}

.category-item>a:hover {
    background: #F9FAFB;
    color: #24ACFB;
    text-decoration: none;
}

.category-item.has-children>a {
    font-weight: 500;
}

.category-item>a i {
    font-size: 10px;
    color: #9CA3AF;
    transition: all 0.15s ease;
}

.category-item:hover>a i {
    color: #24ACFB;
    transform: translateX(2px);
}

/* Subcategory Flyout Menu */
.category-item .submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 260px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

/* Invisible bridge to keep submenu open when moving cursor */
.category-item.has-children::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    width: 15px;
    height: 100%;
    background: transparent;
}

.category-item:hover>.submenu,
.category-item.has-children:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.category-item .submenu::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 15px;
    height: 100%;
    background: transparent;
}

.category-item .submenu::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
}

/* ============================================
   LAYOUT CONTAINER (Matches Bootstrap grid)
   ============================================ */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ============================================
   RESPONSIVE HEADER ADJUSTMENTS
   ============================================ */
/* Laptop Screens (Standard 1366px / 1280px) */
@media (min-width: 992px) and (max-width: 1450px) {

    /* Shrink search bar on laptops */
    .header-search {
        max-width: 300px;
        flex: 1;
    }

    /* Reduce gap between nav items */
    .header-nav .nav-menu {
        gap: 15px;
    }

    /* Slightly smaller font/padding */
    .header-nav .nav-menu li a,
    .header-action a {
        padding: 8px 10px;
        font-size: 14px;
    }

    /* Reduce main header gap */
    .header-inner {
        gap: 20px;
    }
}

/* Tablet / Transitions */
@media (max-width: 991px) {
    .header-inner {
        justify-content: space-between;
    }

    /* Header looks different on mobile - Search moves out */
    .header-search {
        display: none !important;
        /* Managed by d-md-block classes but ensuring here */
    }
}

.category-item .submenu li a:hover {
    background: #F3F4F6;
    color: #24ACFB;
    padding-left: 24px;
    text-decoration: none;
}

/* Hero Category Accordion */
.category-menu-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(430px - 48px);
    overflow-y: auto;
    overflow-x: hidden;
}

.cat-accordion-item {
    border-bottom: 1px solid #F3F4F6;
}

.cat-accordion-item:last-child {
    border-bottom: none;
}

.cat-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
}

.cat-accordion-header a {
    flex: 1;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cat-accordion-header a:hover {
    color: #24ACFB;
    text-decoration: none;
}

.cat-accordion-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9CA3AF;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cat-accordion-toggle i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.cat-accordion-item.expanded .cat-accordion-toggle i {
    transform: rotate(90deg);
}

.cat-accordion-toggle:hover {
    color: #24ACFB;
}

.cat-accordion-subcats {
    list-style: none;
    padding: 0 0 8px 0;
    margin: 0;
    background: #FAFAFA;
    display: none;
}

.cat-accordion-item.expanded .cat-accordion-subcats {
    display: block;
}

.cat-accordion-subcats li a {
    display: block;
    padding: 9px 16px 9px 32px;
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.15s ease;
}

.cat-accordion-subcats li a:hover {
    color: #24ACFB;
    background: #F3F4F6;
    text-decoration: none;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 430px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.2) 100%);
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    max-width: 650px;
    color: #fff;
}

.carousel-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
    opacity: 0.95;
    max-width: 500px;
}

.btn-hero {
    display: inline-block;
    background: #24ACFB;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-hero:hover {
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
}

/* Offers Sidebar */
.offers-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 430px;
}

.offer-card {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--brand-blue));
    border-radius: var(--border-radius-lg);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Offer card with background image */
.offer-card.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.92), rgba(51, 165, 220, 0.85));
    z-index: 1;
}

.offer-card.has-bg-image>* {
    position: relative;
    z-index: 2;
}

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

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.offer-card p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
}

.btn-offer {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: var(--transition-fast);
}

.btn-offer:hover {
    background: var(--text-color);
    color: #fff;
    text-decoration: none;
}

/* Features Row */
.features-row {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

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

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.view-all:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Categories Grid */
.categories-section {
    padding: 50px 0;
    background: #fff;
}

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

.category-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.category-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    text-decoration: none;
}

.category-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

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

.category-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.category-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Products Section */
.products-section {
    padding: 50px 0;
}

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

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

/* Product Card - With Hover Overlay */
.product-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid var(--border-color);
}

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

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
}

.product-img {
    display: block;
    background: var(--bg-light);
    padding: 15px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

/* Hover Action Overlay */
.product-action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    transform: translateY(100%);
    transition: var(--transition-fast);
}

.product-card:hover .product-action {
    transform: translateY(0);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.product-price del {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 5px;
}

.product-price ins {
    text-decoration: none;
}

/* Product Action Buttons */
.product-action .btn-whatsapp,
.product-action .btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--whatsapp-color);
    color: #fff;
    padding: 10px;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    text-decoration: none;
}

.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-cart:hover {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
}

/* ============================================
   HOMEPAGE RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-carousel {
        height: 350px;
    }

    .carousel-content h1 {
        font-size: 32px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-container {
        padding: 15px 0;
    }

    .hero-carousel {
        height: 280px;
        border-radius: var(--border-radius);
    }

    .carousel-content {
        padding: 25px;
    }

    .carousel-content h1 {
        font-size: 24px;
    }

    .carousel-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .btn-hero {
        padding: 10px 25px;
        font-size: 13px;
    }

    .categories-section,
    .products-section {
        padding: 30px 0;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .view-all {
        font-size: 13px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 10px;
    }

    .category-img {
        padding: 10px;
        margin-bottom: 8px;
    }

    .category-info h3 {
        font-size: 11px;
    }

    .category-card {
        padding: 12px;
    }

    .category-img {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .category-info h3 {
        font-size: 11px;
    }

    .category-info span {
        font-size: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-img {
        height: 130px;
        padding: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-price del {
        font-size: 11px;
    }

    /* Mobile product action - always visible at bottom */
    .product-action {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        background: var(--primary-color);
        padding: 10px 15px;
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    }

    .product-action .btn-whatsapp,
    .product-action .btn-cart {
        width: 100%;
        padding: 10px 15px;
        font-size: 12px;
        border-radius: var(--border-radius);
    }
}

/* ============================================
   HOMEPAGE SECTIONS (Legacy support - deprecated)
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.section-header.text-center {
    justify-content: center;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.view-all:hover {
    color: var(--brand-blue);
    text-decoration: none;
}

/* Categories Grid - Robocraze Style (Legacy) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 15px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.category-img {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 12px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.category-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.category-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   NEW CATEGORY SECTION - Clean Premium Design
   ============================================ */
.categories-section {
    background: #F7F8FA;
    padding: 40px 0 48px;
}

.section-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.section-header-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.section-header-text p {
    font-size: 15px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    max-width: 560px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #24ACFB;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.15s ease-out;
}

.view-all-btn:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.view-all-btn i {
    font-size: 12px;
    transition: transform 0.15s ease-out;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

/* Category Grid - New Design */
.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Category Card - New */
.category-card-new {
    background: #FFFFFF;
    border: 1px solid #F3B325;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.15s ease-out;
    display: block;
    cursor: pointer;
}

.category-card-new:hover {
    border-color: #24ACFB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

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

.category-card-new:hover .category-cta {
    opacity: 1;
}

/* Category Image - New */
.category-img-new {
    background: #F3F4F6;
    border-radius: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.category-img-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease-out;
}

/* Category Info - New */
.category-info-new {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-info-new h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-cta {
    font-size: 13px;
    font-weight: 500;
    color: #24ACFB;
    opacity: 0;
    transition: opacity 0.15s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.category-cta i {
    font-size: 10px;
    transition: transform 0.15s ease;
}

.category-card-new:hover .category-cta i {
    transform: translateX(3px);
}

/* Responsive - New Category */
@media (max-width: 991px) {
    .categories-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .section-header-new {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .category-card-new {
        padding: 14px;
    }

    .category-img-new {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .categories-section {
        padding: 30px 0 35px;
    }

    .section-header-text h2 {
        font-size: 22px;
    }

    .section-header-text p {
        font-size: 14px;
    }

    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card-new {
        padding: 12px;
    }

    .category-img-new {
        padding: 12px;
        margin-bottom: 10px;
    }

    .category-info-new h3 {
        font-size: 13px;
    }

    .category-cta {
        opacity: 1;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-card-new {
        padding: 10px;
    }

    .category-img-new {
        padding: 10px;
        margin-bottom: 8px;
    }

    .category-info-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .category-info-new h3 {
        font-size: 12px;
    }
}

/* Products Section */
.products-section {
    padding: 40px 0 48px;
    background: #fff;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding: 20px;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.sale-badge,
.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.sale-badge {
    background: var(--danger-color);
    color: #fff;
}

.new-badge {
    background: var(--brand-blue);
    color: #fff;
    left: auto;
    right: 12px;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.wishlist-btn:hover {
    background: var(--danger-color);
    color: #fff;
    border-color: var(--danger-color);
}

.product-info {
    padding: 20px;
}

.product-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    color: var(--warning-color);
    font-size: 12px;
}

.product-rating span {
    color: var(--text-muted);
    margin-left: 4px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.product-price del {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 14px;
    margin-left: 6px;
}

.product-price ins {
    text-decoration: none;
}

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

.btn-order-whatsapp {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--whatsapp-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-order-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: #fff;
    text-decoration: none;
}

.btn-add-to-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--brand-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE - HOMEPAGE
   ============================================ */
@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-features {
        gap: 20px;
    }

    .header-search {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-whatsapp-hero {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .categories-section,
    .products-section,
    .features-section {
        padding: 30px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 12px;
    }

    .category-image {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .category-info h3 {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image {
        padding: 10px;
    }

    .product-image img {
        height: 100px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .product-rating {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .product-price {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-order-whatsapp,
    .btn-add-to-cart {
        padding: 8px 10px;
        font-size: 12px;
    }

    .wishlist-btn {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }

    .sale-badge,
    .new-badge {
        font-size: 9px;
        padding: 3px 6px;
        top: 8px;
        left: 8px;
    }

    .new-badge {
        right: 8px;
        left: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 16px;
    }
}

/* Global base styles */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    background: var(--bg-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

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

/* ============================================
   SHOP PAGE SIDEBAR FILTERS
   ============================================ */
.sidebar-filters {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
}

.filter-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

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

.filter-item {
    margin-bottom: 4px;
}

.filter-list .filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.filter-list .filter-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.filter-list .filter-link.active {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.filter-count {
    color: var(--text-muted);
    font-size: 13px;
}

.filter-toggle-btn {
    display: none;
    width: 100%;
    padding: 12px 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
}

.filter-toggle-btn i {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .filter-toggle-btn {
        display: block;
    }

    .sidebar-filters {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        background: var(--bg-white);
        padding: 60px 20px 20px;
        overflow-y: auto;
        border-radius: 0;
    }

    .sidebar-filters.show {
        display: block;
    }

    .filter-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: var(--bg-light);
        border: none;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
    }
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    max-width: 200px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--brand-yellow);
    color: var(--primary-color);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-yellow);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact p a:hover {
    color: var(--brand-yellow);
}

.footer-contact i {
    width: 20px;
    color: var(--brand-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--brand-yellow);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ============================================
   General E-commerce Styles
   ============================================ */
.woocommerce {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
}

.woocommerce * {
    box-sizing: border-box;
}

/* ============================================
   SHOP PAGE - Product Grid (Amazon/Flipkart Style)
   ============================================ */

/* Default WooCommerce Product Grid Styling */
.woocommerce-page-wrapper {
    padding: 30px 0;
    overflow-x: hidden;
}

.woocommerce-page-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

/* Product Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: var(--transition-fast);
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Product Image */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: var(--bg-light);
    padding: 15px;
    margin: 0;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 15px 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* Product Price */
.woocommerce ul.products li.product .price {
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.woocommerce ul.products li.product .price del {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--brand-blue);
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--primary-dark);
}

/* Sale Badge */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 10;
}

/* Responsive */
@media (max-width: 991px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 5px;
    }

    .woocommerce ul.products li.product {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
}

/* Custom Products Grid Layout */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-grid>div[class*="col-"] {
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
}

/* Results Bar */
.results-bar {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    margin-bottom: 20px;
}

/* View Toggle */
.view-toggle .btn {
    padding: 8px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.view-toggle .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Pagination */
.woocommerce-pagination {
    text-align: center;
    margin-top: 30px;
}

.woocommerce-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.woocommerce-pagination ul li {
    margin: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: block;
    padding: 10px 15px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Shop Page Responsive */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Product Cards */
.product-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

/* Product Image Container */
.product-img {
    position: relative;
    background: var(--bg-light);
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-height: 160px;
    width: auto !important;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    transition: transform var(--transition-normal);
}

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

/* Product Badges - Amazon Style */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.badge-sale {
    background: var(--danger-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.badge-bestseller {
    background: #ff9f43;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    display: block;
    margin-top: 5px;
}

.badge-new {
    background: var(--success-color);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
}

/* Wishlist Button - Flipkart Style */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.wishlist-btn:hover {
    background: #fff0f0;
    transform: scale(1.1);
}

.wishlist-btn i {
    color: #bbb;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.wishlist-btn:hover i,
.wishlist-btn.active i {
    color: #e91e63;
}

/* Quick View Overlay - Myntra Style */
.product-action {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: bottom var(--transition-normal);
}

.product-item:hover .product-action {
    bottom: 0;
}

.product-action .btn {
    background: white;
    color: var(--text-color);
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

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

.product-action .btn-cart {
    flex: 1;
    max-width: 140px;
}

.product-action .btn-view {
    padding: 8px 12px;
}

/* Product Info Section */
.product-item .product-info {
    padding: 16px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

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

/* Rating - Amazon Style */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.rating-stars {
    display: flex;
    gap: 1px;
}

.rating-stars i {
    font-size: 12px;
    color: #ffc107;
}

.rating-stars i.empty {
    color: #e0e0e0;
}

.rating-count {
    font-size: 12px;
    color: var(--info-color);
}

/* Price - Flipkart/Amazon Style */
.product-price {
    margin-bottom: 8px;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.price-original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.price-discount {
    font-size: 13px;
    font-weight: 600;
    color: var(--success-color);
    margin-left: 8px;
}

/* Delivery Info - Amazon Style */
.delivery-info {
    font-size: 12px;
    color: var(--text-muted);
}

.delivery-info .free-delivery {
    color: var(--text-color);
    font-weight: 500;
}

/* ============================================
   SINGLE PRODUCT PAGE - Amazon/Flipkart Style
   ============================================ */

/* Product Gallery - Amazon Style */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-gallery-main img {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: transform var(--transition-normal);
}

.product-gallery-main:hover img {
    transform: scale(1.5);
}

/* Zoom Lens */
.zoom-lens {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.product-gallery-main:hover .zoom-lens {
    opacity: 1;
}

/* Thumbnail Gallery */
.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg-white);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 211, 51, 0.2);
}

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

/* Product Summary - Flipkart Style */
.product-summary {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .product-summary {
        padding-left: 0;
        margin-top: 30px;
    }
}

.product-summary .product-brand {
    font-size: 13px;
    margin-bottom: 8px;
}

.product-summary .product-title {
    font-size: 22px;
    font-weight: 500;
    height: auto;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Rating with Reviews Link */
.product-summary .product-rating {
    background: var(--brand-blue);
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    gap: 4px;
}

.product-summary .product-rating i {
    font-size: 10px;
}

.product-summary .rating-text {
    margin-left: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.product-summary .rating-text a {
    color: var(--info-color);
}

/* Special Offer Box - Amazon Style */
.special-offer-box {
    background: #fef8e7;
    border: 1px solid #ffd54f;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    margin: 15px 0;
}

.special-offer-box .offer-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.special-offer-box .offer-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Price Box - Flipkart Style */
.price-box {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-box .price-current {
    font-size: 28px;
    font-weight: 700;
}

.price-box .price-original {
    font-size: 16px;
}

.price-box .price-discount {
    font-size: 16px;
}

.price-box .tax-info {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Availability - Amazon Style */
.availability {
    margin: 15px 0;
}

.availability.in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
}

.availability.low-stock {
    color: var(--warning-color);
    font-weight: 600;
    font-size: 14px;
}

.availability.out-of-stock {
    color: var(--danger-color);
    font-weight: 600;
    font-size: 14px;
}

/* Quantity Selector - Modern Style */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

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

.quantity-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.quantity-box button {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition-fast);
}

.quantity-box button:hover {
    background: var(--primary-color);
}

.quantity-box input {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

/* Action Buttons - Flipkart Style */
.product-actions {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.btn-add-cart {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart.cart {
    background: var(--primary-color);
    color: var(--text-color);
}

.btn-add-cart.cart:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-add-cart.buy-now {
    background: #fb641b;
    color: white;
}

.btn-add-cart.buy-now:hover {
    background: #e85a00;
    box-shadow: var(--shadow-md);
}

/* Trust Badges - Amazon Style */
.trust-badges {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.trust-badge i {
    font-size: 24px;
    color: var(--text-muted);
}

.trust-badge span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Product Meta Info */
.product-meta-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.meta-row {
    display: flex;
    padding: 8px 0;
    font-size: 14px;
}

.meta-row .meta-label {
    width: 120px;
    color: var(--text-muted);
}

.meta-row .meta-value {
    flex: 1;
    color: var(--text-color);
}

.meta-row .meta-value a {
    color: var(--info-color);
    text-decoration: none;
}

/* ============================================
   PRODUCT TABS - Modern Style
   ============================================ */

.product-tabs {
    margin-top: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.product-tabs .nav-tabs {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    margin: 0;
    display: flex;
}

.product-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    position: relative;
}

.product-tabs .nav-tabs .nav-link:hover {
    color: var(--text-color);
    background: rgba(255, 211, 51, 0.1);
}

.product-tabs .nav-tabs .nav-link.active {
    color: var(--text-color);
    background: var(--bg-white);
}

.product-tabs .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.product-tabs .tab-content {
    padding: 30px;
}

/* ============================================
   REVIEWS SECTION - Amazon Style
   ============================================ */

.reviews-summary {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.reviews-average {
    text-align: center;
    min-width: 120px;
}

.reviews-average .big-rating {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.reviews-average .total-reviews {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-bar .star-label {
    width: 50px;
    font-size: 13px;
    color: var(--text-color);
}

.rating-bar .bar-container {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar .bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.rating-bar .bar-count {
    width: 40px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
}

/* Individual Review */
.single-review {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
}

.reviewer-info .reviewer-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
}

.reviewer-info .review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-rating {
    background: var(--success-color);
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.review-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.review-helpful {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.review-helpful button {
    background: none;
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.review-helpful button:hover {
    border-color: var(--primary-color);
    background: rgba(255, 211, 51, 0.1);
}

/* ============================================
   RELATED PRODUCTS - Carousel Style
   ============================================ */

.related-products {
    margin-top: 50px;
    padding: 30px 0;
}

.related-products .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.related-products h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.view-all-link {
    font-size: 14px;
    color: var(--info-color);
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* ============================================
   CART PAGE - Modern Style
   ============================================ */

.woocommerce-cart .cart-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.woocommerce-cart .cart-items {
    flex: 1;
    min-width: 300px;
}

.woocommerce-cart .cart-summary {
    width: 350px;
}

@media (max-width: 991px) {
    .woocommerce-cart .cart-summary {
        width: 100%;
    }
}

/* Cart Item Card */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: box-shadow var(--transition-fast);
}

.cart-item:hover {
    box-shadow: var(--shadow-sm);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

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

.cart-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-title a {
    color: var(--text-color);
    text-decoration: none;
}

.cart-item-title a:hover {
    color: var(--info-color);
}

.cart-item-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.cart-item-actions .remove-btn {
    font-size: 12px;
    color: var(--info-color);
    text-decoration: none;
    cursor: pointer;
}

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

/* Cart Summary Box */
.cart-summary-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    position: sticky;
    top: 100px;
}

.cart-summary-box h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.cart-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid var(--border-color);
}

.cart-summary-box .checkout-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background: #fb641b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.cart-summary-box .checkout-btn:hover {
    background: #e85a00;
}

/* ============================================
   CHECKOUT PAGE - Amazon/Flipkart Style
   ============================================ */

.woocommerce-checkout .checkout-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.woocommerce-checkout .checkout-form {
    flex: 1;
    min-width: 300px;
}

.woocommerce-checkout .order-summary {
    width: 400px;
}

@media (max-width: 991px) {
    .woocommerce-checkout .order-summary {
        width: 100%;
    }
}

/* Form Sections */
.checkout-section {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
}

.checkout-section .section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section .section-title .step-number {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Fields */
.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-row label .required {
    color: var(--danger-color);
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: border-color var(--transition-fast);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 211, 51, 0.15);
}

/* Order Summary - Checkout */
.order-summary-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    position: sticky;
    top: 100px;
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.order-item-details {
    flex: 1;
}

.order-item-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.order-item-qty {
    font-size: 12px;
    color: var(--text-muted);
}

.order-item-price {
    font-weight: 600;
    font-size: 14px;
}

/* Payment Methods */
.payment-methods {
    margin-top: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--primary-color);
    background: rgba(255, 211, 51, 0.05);
}

.payment-method input[type="radio"] {
    width: 18px;
    height: 18px;
}

.payment-method .payment-icon {
    width: 40px;
    height: 24px;
    object-fit: contain;
}

.payment-method .payment-label {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

/* Place Order Button */
.place-order-btn {
    width: 100%;
    padding: 16px;
    margin-top: 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.place-order-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.product-item {
    animation: fadeIn 0.4s ease forwards;
}

.product-item:nth-child(1) {
    animation-delay: 0.05s;
}

.product-item:nth-child(2) {
    animation-delay: 0.1s;
}

.product-item:nth-child(3) {
    animation-delay: 0.15s;
}

.product-item:nth-child(4) {
    animation-delay: 0.2s;
}

.product-item:nth-child(5) {
    animation-delay: 0.25s;
}

.product-item:nth-child(6) {
    animation-delay: 0.3s;
}

.btn-add-cart:active {
    animation: pulse 0.3s ease;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }

    .btn-add-cart {
        width: 100%;
    }

    .product-tabs .nav-tabs {
        flex-wrap: wrap;
    }

    .product-tabs .nav-tabs .nav-link {
        flex: 1;
        text-align: center;
        padding: 12px 15px;
        font-size: 12px;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   SIDEBAR FILTERS - Amazon Style
   ============================================ */

.sidebar-filters {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    position: sticky;
    top: 100px;
}

.filter-section {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.filter-item {
    margin-bottom: 8px;
}

.filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.filter-link:hover {
    background: var(--bg-light);
    color: var(--info-color);
    text-decoration: none;
}

.filter-link.active {
    background: var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
}

.filter-name {
    flex: 1;
}

.filter-count {
    color: var(--text-muted);
    font-size: 12px;
}

.filter-link.active .filter-count {
    color: var(--text-color);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    padding: 6px 0;
}

.filter-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.rating-filter i {
    font-size: 12px;
}

/* Mobile Filter Toggle Button */
.filter-toggle-btn {
    display: none;
    width: 100%;
    padding: 12px 15px;
    background: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    text-align: left;
}

.filter-toggle-btn i {
    margin-right: 8px;
}

/* Mobile Responsive Sidebar */
@media (max-width: 991px) {
    .sidebar-filters {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .filter-toggle-btn {
        display: block;
    }

    .sidebar-filters {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        background: var(--bg-white);
        padding: 60px 20px 20px;
        overflow-y: auto;
        border-radius: 0;
        margin: 0;
    }

    .sidebar-filters.show {
        display: block;
    }

    .sidebar-filters .filter-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: var(--bg-light);
        border: none;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .filter-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Show all categories on mobile */
    .filter-list {
        max-height: none;
    }
}

/* ============================================
   ADDITIONAL UTILITY CLASSES
   ============================================ */

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-success-light {
    background: rgba(56, 142, 60, 0.1) !important;
}

.bg-warning-light {
    background: rgba(255, 152, 0, 0.1) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ============================================
   WHATSAPP ORDERING STYLES
   ============================================ */

/* WhatsApp Brand Color */
:root {
    --whatsapp-color: #25D366;
    --whatsapp-dark: #128C7E;
    --whatsapp-light: #DCF8C6;
}

/* Main WhatsApp Order Button - Single Product Page */
.btn-whatsapp-order {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp-color);
    color: white;
    text-decoration: none;
}

.btn-whatsapp-order:hover {
    background: var(--whatsapp-dark);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    cursor: pointer !important;
}

.btn-whatsapp-order i {
    font-size: 20px;
    pointer-events: none;
}

/* Share/Enquiry Button */
.btn-enquiry {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--text-color);
    text-decoration: none;
}

.btn-enquiry:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
}

/* WhatsApp Actions Container */
.whatsapp-actions {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

/* WhatsApp Button in Product Grid Overlay */
.product-action .btn-whatsapp {
    background: var(--whatsapp-color) !important;
    color: white !important;
    flex: 1;
    max-width: 140px;
    border: none;
}

.product-action .btn-whatsapp:hover {
    background: var(--whatsapp-dark) !important;
    transform: scale(1.05);
}

.product-action .btn-whatsapp i {
    font-size: 14px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 32px;
}

/* Pulse Animation for Floating Button */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp-color);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* WhatsApp Tooltip on Hover */
.whatsapp-float::after {
    content: 'Chat with us!';
    position: absolute;
    right: 75px;
    background: white;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn-whatsapp-order {
        padding: 12px 20px;
        font-size: 14px;
    }

    .whatsapp-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-enquiry {
        padding: 12px 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .whatsapp-float::after {
        display: none;
    }
}

/* Copy to Clipboard Notification */
.copy-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-color);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    animation: slideUp 0.3s ease, fadeOut 0.3s ease 2s forwards;
}

/* ============================================
   BULK ORDER SECTION
   ============================================ */
.bulk-order-section {
    background: linear-gradient(135deg, #1E3A5F 0%, #24ACFB 100%);
    padding: 50px 0;
    margin-top: 30px;
}

.bulk-order-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bulk-order-text {
    flex: 1;
    color: #fff;
}

.bulk-order-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #fff;
}

.bulk-order-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.bulk-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bulk-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.bulk-features i {
    color: #4ADE80;
    font-size: 16px;
}

.bulk-order-cta {
    text-align: center;
    flex-shrink: 0;
}

.btn-bulk-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1E3A5F;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-bulk-quote:hover {
    background: #F0FDF4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: #1E3A5F;
}

.btn-bulk-quote i {
    font-size: 20px;
}

.bulk-contact-text {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.bulk-contact-text a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.bulk-contact-text a:hover {
    text-decoration: underline;
}

/* Bulk Order Responsive */
@media (max-width: 991px) {
    .bulk-order-content {
        flex-direction: column;
        text-align: center;
    }

    .bulk-features {
        justify-content: center;
    }

    .bulk-order-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .bulk-order-section {
        padding: 40px 0;
    }

    .bulk-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .bulk-order-text h2 {
        font-size: 22px;
    }

    .btn-bulk-quote {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ============================================
   NEW SHOP PAGE - Clean Modern Design
   ============================================ */
.shop-page-wrapper {
    background: #F9FAFB;
    min-height: 100vh;
    padding: 24px 0 64px;
}

/* Breadcrumb */
.shop-breadcrumb {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 16px;
}

.shop-breadcrumb a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.15s;
}

.shop-breadcrumb a:hover {
    color: #24ACFB;
}

.shop-breadcrumb span {
    margin: 0 8px;
}

.shop-breadcrumb .current {
    color: #111827;
    margin: 0;
}

/* Page Header */
.shop-header {
    margin-bottom: 24px;
}

.shop-title {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.shop-intro {
    font-size: 15px;
    color: #4B5563;
    margin: 0;
    max-width: 720px;
    line-height: 1.5;
}

.shop-description {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    max-width: 720px;
}

/* Content Layout - Responsive */
.shop-content-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr;
    gap: 24px;
}

/* Sidebar */
.shop-sidebar {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: none;
}

.filter-block {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.filter-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-block-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.filter-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-options li {
    margin-bottom: 4px;
}

.filter-option {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.12s ease-out;
}

.filter-option:hover {
    color: #24ACFB;
    background: #F3F4F6;
    text-decoration: none;
}

.filter-option.active {
    color: #24ACFB;
    background: #EBF5FF;
    font-weight: 500;
}

/* Accordion Categories */
.accordion-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    border-bottom: 1px solid #F3F4F6;
}

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

.accordion-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.accordion-toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9CA3AF;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

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

.accordion-item.expanded .accordion-toggle i {
    transform: rotate(90deg);
}

.accordion-toggle:hover {
    color: #24ACFB;
}

.accordion-header a {
    flex: 1;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.accordion-header a:hover {
    color: #24ACFB;
}

.accordion-header a.active {
    color: #24ACFB;
}

.cat-count {
    color: #9CA3AF;
    font-weight: 400;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Subcategories */
.accordion-subcats {
    list-style: none;
    padding: 0 0 8px 28px;
    margin: 0;
    display: none;
}

.accordion-item.expanded .accordion-subcats {
    display: block;
}

.accordion-subcats li {
    margin-bottom: 2px;
}

.accordion-subcats a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.15s ease;
}

.accordion-subcats a:hover {
    color: #24ACFB;
    padding-left: 4px;
}

.accordion-subcats a.active {
    color: #24ACFB;
    font-weight: 500;
}

/* Hide WooCommerce default elements */
.woocommerce-result-count,
.woocommerce-ordering,
.results-header,
.view-toggle,
.sort-control {
    display: none !important;
}

/* Products Area */
.shop-products-area {
    min-width: 0;
}

/* Results Header - Controls only, right aligned */
.results-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

/* Hide WooCommerce result count */
.woocommerce-result-count {
    display: none !important;
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.view-toggle {
    display: flex;
    gap: 4px;
}

.view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.15s;
}

.view-btn:hover,
.view-btn.active {
    border-color: #24ACFB;
    color: #24ACFB;
}

.sort-control select,
.sort-control .orderby {
    height: 36px;
    padding: 0 32px 0 12px;
    font-size: 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    cursor: pointer;
}

/* Product Grid */
.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product Card */
.product-card-new {
    background: #FFFFFF;
    border: 1px solid #F3B325;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.15s ease-out;
    position: relative;
}

.product-card-new:hover {
    border-color: #24ACFB;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.product-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #EF4444;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-image-new {
    display: block;
    aspect-ratio: 1;
    background: #F3F4F6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.15s ease-out;
}

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

.product-details-new {
    padding: 4px 0 0 0;
}

.product-category-label {
    display: block;
    font-size: 11px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-title-new {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title-new a {
    color: #111827;
    text-decoration: none;
}

.product-title-new a:hover {
    color: #24ACFB;
}

.product-specs {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-new {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.product-price-new del {
    color: #9CA3AF;
    font-weight: 400;
    font-size: 13px;
    margin-left: 6px;
}

.product-price-new ins {
    text-decoration: none;
}

.product-actions-new {
    display: flex;
    gap: 8px;
}

.btn-view-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 500;
    color: #24ACFB;
    background: #fff;
    border: 1px solid #24ACFB;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-view-details:hover {
    background: #24ACFB;
    color: #fff;
    text-decoration: none;
}

.btn-whatsapp-small {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #16A34A;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-whatsapp-small:hover {
    background: #15803D;
    color: #fff;
}

.btn-whatsapp-small i {
    font-size: 18px;
}

/* Pagination */
.shop-pagination {
    margin-top: 40px;
    text-align: center;
}

.shop-pagination .woocommerce-pagination ul {
    display: inline-flex;
    gap: 6px;
}

.shop-pagination .woocommerce-pagination ul li a,
.shop-pagination .woocommerce-pagination ul li span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.shop-pagination .woocommerce-pagination ul li span.current {
    background: #24ACFB;
    color: #fff;
}

/* No Products */
.no-products-message {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.no-products-message i {
    font-size: 48px;
    color: #D1D5DB;
    margin-bottom: 16px;
}

.no-products-message h3 {
    font-size: 20px;
    color: #111827;
    margin: 0 0 8px;
}

.no-products-message p {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 20px;
}

.btn-reset-filters {
    display: inline-block;
    padding: 12px 24px;
    background: #24ACFB;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
}

.btn-reset-filters:hover {
    background: #1A8FD4;
    color: #fff;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: #24ACFB;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-filter-btn i {
    margin-right: 8px;
}

.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Responsive - Shop Page */
@media (max-width: 1199px) {
    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .shop-content-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        border-radius: 0;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
    }

    .shop-sidebar.active {
        left: 0;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid #E5E7EB;
    }

    .sidebar-header h3 {
        margin: 0;
        font-size: 18px;
    }

    .sidebar-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: #F3F4F6;
        border-radius: 50%;
        cursor: pointer;
    }

    .mobile-filter-btn {
        display: block;
    }

    .shop-sidebar.active+.filter-overlay,
    .shop-sidebar.active~.filter-overlay {
        display: block;
    }

    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .shop-page-wrapper {
        padding: 16px 0 40px;
    }

    .shop-title {
        font-size: 22px;
    }

    .results-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .results-controls {
        justify-content: space-between;
    }

    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card-new {
        padding: 12px;
    }

    .product-title-new {
        font-size: 13px;
    }

    .product-specs {
        display: none;
    }

    .product-price-new {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .btn-view-details {
        font-size: 12px;
        height: 32px;
    }

    .btn-whatsapp-small {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   ABOUT & CONTACT PAGES
   ============================================ */
.page-wrapper {
    background: #F9FAFB;
    min-height: 100vh;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #24ACFB 100%);
    color: #fff !important;
    padding: 48px 0;
}

.page-hero * {
    color: #fff;
}

.page-breadcrumb {
    font-size: 13px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.page-breadcrumb span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb .current {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 17px;
    margin: 0;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Content Sections */
.content-section {
    padding: 50px 0;
}

.content-section.alt-bg {
    background: #fff;
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
}

.section-header-center p {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 20px 0;
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0 0 16px 0;
}

.about-logo-box {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.about-logo-box img {
    max-width: 180px;
    margin-bottom: 16px;
}

.about-logo-box .tagline {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #24ACFB;
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
}

.info-card.vision {
    border-left: 4px solid #24ACFB;
}

.info-card.mission {
    border-left: 4px solid #F59E0B;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #24ACFB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon i {
    font-size: 20px;
    color: #fff;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.info-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
}

/* Features Grid About */
.features-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-about {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.15s ease;
}

.feature-card-about:hover {
    border-color: #24ACFB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon-about {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #24ACFB, #1A8FD4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon-about i {
    font-size: 22px;
    color: #fff;
}

.feature-card-about h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.feature-card-about p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1E3A5F 0%, #24ACFB 100%);
    padding: 50px 0;
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 28px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary-cta {
    display: inline-block;
    background: #fff;
    color: #1E3A5F;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-primary-cta:hover {
    background: #F0FDF4;
    transform: translateY(-2px);
}

.btn-secondary-cta {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-secondary-cta:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, #1E3A5F 0%, #24ACFB 100%);
    border-radius: 16px;
    padding: 36px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.25);
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.contact-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.contact-items {
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F3B325, #E09E00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(243, 179, 37, 0.35);
}

.contact-icon i {
    font-size: 20px;
    color: #fff;
}

.contact-detail h4 {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 15px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.contact-detail a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: #F3B325;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    margin-top: 8px;
}

.whatsapp-btn-large:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-btn-large i {
    font-size: 22px;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 36px;
}

.contact-form-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 24px 0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    transition: border-color 0.15s;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #24ACFB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #24ACFB;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-submit:hover {
    background: #1A8FD4;
    transform: translateY(-2px);
}

/* Responsive - About & Contact */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-logo-box {
        order: -1;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 36px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    .content-section {
        padding: 36px 0;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 22px;
    }

    .features-grid-about {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-card-about {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-info {
        padding: 24px;
    }

    .contact-item {
        padding: 14px;
    }
}

/* ============================================
   BULK ORDER PAGE
   ============================================ */
.bulk-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.bulk-info-column h2 {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.bulk-info-column>p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.bulk-benefits {
    margin-bottom: 40px;
}

.bulk-benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #24ACFB, #1A8FD4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: #fff;
}

.benefit-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.benefit-content p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* Who We Serve */
.who-we-serve h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
}

.serve-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.serve-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
}

.serve-tags span i {
    color: #24ACFB;
}

/* Bulk Enquiry Form */
.bulk-enquiry-form {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 36px;
}

.bulk-enquiry-form h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.form-intro {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 24px 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-message i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.form-message ul {
    margin: 0;
    padding-left: 18px;
}

.form-message ul li {
    font-size: 14px;
    line-height: 1.6;
}

.form-message.success {
    background: #D1FAE5;
    border: 1px solid #10B981;
    color: #065F46;
}

.form-message.success i {
    color: #10B981;
}

.form-message.error {
    background: #FEE2E2;
    border: 1px solid #EF4444;
    color: #991B1B;
}

.form-message.error i {
    color: #EF4444;
}

/* Form Setup Notice */
.form-setup-notice {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 8px;
    padding: 20px;
    color: #92400E;
}

.form-setup-notice p {
    margin: 0 0 12px 0;
    font-size: 14px;
}

.form-setup-notice ol {
    margin: 0;
    padding-left: 20px;
}

.form-setup-notice ol li {
    font-size: 13px;
    line-height: 1.8;
}

/* Contact Form 7 Styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.15s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #24ACFB;
}

.wpcf7-form p {
    margin-bottom: 16px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    background: #24ACFB;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background: #1A8FD4;
}

.wpcf7-response-output {
    border-radius: 8px !important;
    padding: 16px !important;
    margin: 16px 0 0 0 !important;
}

/* Alternative Contact */
.alternative-contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.alternative-contact>p {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 16px 0;
}

.contact-options {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    color: #374151;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.call-btn:hover {
    background: #E5E7EB;
    color: #111827;
}

/* Responsive - Bulk Order */
@media (max-width: 991px) {
    .bulk-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bulk-enquiry-form {
        order: -1;
    }
}

@media (max-width: 575px) {
    .bulk-enquiry-form {
        padding: 24px;
    }

    .contact-options {
        flex-direction: column;
    }

    .whatsapp-btn-large,
    .call-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   MOBILE HEADER RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
    .site-header {
        padding: 8px 0;
    }

    .header-logo .logo-img {
        height: 45px !important;
        width: auto;
    }

    .header-inner {
        gap: 10px;
    }

    .header-actions {
        gap: 4px;
    }

    .header-action a {
        padding: 8px;
    }

    .mobile-menu-toggle {
        padding: 6px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .header-logo .logo-img {
        height: 40px !important;
    }

    .site-header {
        padding: 6px 0;
    }

    .header-inner {
        gap: 8px;
    }

    .header-action a {
        padding: 6px;
    }

    .header-action a i {
        font-size: 16px;
    }

    .mobile-menu-toggle {
        font-size: 20px;
    }
}

/* ============================================
   PRODUCT SHORT DESCRIPTION (Single Product)
   ============================================ */
.product-short-description {
    margin-top: 20px;
    padding: 16px 20px;
    background: #F9FAFB;
    border-left: 3px solid #F3B325;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
}

.product-short-description p {
    margin: 0 0 10px 0;
}

.product-short-description p:last-child {
    margin-bottom: 0;
}

.product-short-description ul,
.product-short-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

.product-short-description li {
    margin-bottom: 6px;
}

/* Tax Info Styling */
.tax-inclusive-note {
    display: block;
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
}

/* ============================================
   FEATURED BRANDS / PARTNERS SECTION
   ============================================ */
.brands-section {
    padding: 50px 0;
    background: #FFFFFF;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.brand-item {
    background: #FFFFFF;
    border: 1px solid #F3B325;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: #24ACFB;
    box-shadow: 0 4px 12px rgba(36, 172, 251, 0.15);
}

.brand-item img {
    max-width: 100%;
    height: var(--logo-size, 70px);
    object-fit: contain;
    padding: 10px;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

.brand-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .brand-item {
        padding: 10px;
    }
}

/* Responsive - Small Tablet */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .brands-section {
        padding: 35px 0;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .brand-item {
        padding: 8px;
    }
}

/* ============================================
   CONTACT FORM SECTION (Above Footer)
   ============================================ */
.contact-form-section {
    padding: 45px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff !important;
}

.contact-form-section * {
    color: inherit;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-form-info {
    color: #fff !important;
}

.contact-form-info h2 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    color: #fff !important;
    display: block !important;
}

.contact-form-info>p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    display: block !important;
}

.contact-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.contact-form-section .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.contact-form-section .contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(243, 179, 37, 0.15);
    color: #F3B325 !important;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form-section .contact-item>div {
    display: flex !important;
    flex-direction: column !important;
}

.contact-form-section .contact-item>div span {
    display: block !important;
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 2px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.contact-form-section .contact-item>div a,
.contact-form-section .contact-item>div p {
    color: #fff !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    margin: 0 !important;
    display: block !important;
}

.contact-form-section .contact-item>div a:hover {
    color: #F3B325 !important;
}

.contact-form-container {
    background: #fff !important;
    padding: 28px !important;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea,
.contact-form-container select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: #333 !important;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus,
.contact-form-container select:focus {
    outline: none;
    border-color: #F3B325;
    box-shadow: 0 0 0 3px rgba(243, 179, 37, 0.15);
}

.contact-form-container textarea {
    min-height: 80px;
    resize: vertical;
}

.contact-form-container input[type="submit"],
.contact-form-container button[type="submit"] {
    background: linear-gradient(135deg, #F3B325 0%, #e5a820 100%);
    color: #1a1a2e !important;
    border: none;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-container input[type="submit"]:hover,
.contact-form-container button[type="submit"]:hover {
    background: linear-gradient(135deg, #e5a820 0%, #d99b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 179, 37, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-form-info h2 {
        font-size: 1.8rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}