/* ==========================================================================
   DESIGN SYSTEM & BRAND CUSTOMIZATION VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Theme Colors (Customizable) */
    --primary-color: #0F3D24;      /* Deep Forest Green */
    --primary-hover: #1b5334;
    --accent-color: #2E6A4F;       /* Natural Earthy Green */
    --accent-hover: #1b5334;
    --text-color: #333333;         /* Charcoal */
    --text-muted: #666666;         /* Medium Gray */
    --bg-light: #F7F9F7;           /* Very Light Warm Gray */
    --bg-white: #ffffff;
    --bg-dark: #121212;            /* Charcoal */
    --border-color: #e9ecef;       /* Light border */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-max-width: 1280px;
    --header-height: 80px;
    
    /* Effects & Animations */
    --box-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --box-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --box-shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-color);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

ul {
    list-style: none;
}

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

/* Utilities */
.text-center { text-align: center; }
.py-5 { padding-top: 60px; padding-bottom: 60px; }
.my-3 { margin-top: 24px; margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

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

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

.btn-accent {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

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

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

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-light);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.announcement-bar {
    background-color: var(--primary-hover);
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.announcement-bar .ticker {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow-sm);
    transition: transform var(--transition-normal);
}

.header-container {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

/* Dropdown styling */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 250px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-lg);
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    transition: background-color var(--transition-fast);
}

.dropdown-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 16px;
}

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

.action-btn {
    font-size: 20px;
    color: var(--text-color);
    position: relative;
    transition: color var(--transition-fast);
    padding: 8px;
    border-radius: 50%;
}

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

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

.menu-toggle {
    display: none;
    font-size: 24px;
}

/* ==========================================================================
   HERO BANNER CAROUSEL
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.slide-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform var(--transition-normal);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(49, 24, 115, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    color: var(--bg-white);
}

.slide-content {
    max-width: 600px;
    padding-left: 48px;
}

.slide-content h2 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease var(--transition-fast);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition-fast);
    z-index: 10;
}

.slider-control:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

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

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

.dot.active {
    background-color: var(--accent-color);
    width: 24px;
    border-radius: 6px;
}

/* ==========================================================================
   PRODUCTS GRID & CARDS
   ========================================================================== */
.section-title {
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
    border-color: transparent;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    z-index: 5;
    text-transform: uppercase;
}

.product-image-wrapper {
    height: 250px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

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

.product-actions-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    padding: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 6;
}

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

.overlay-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-fast);
}

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

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-hover);
}

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

.btn-add-cart {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-add-cart:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

/* ==========================================================================
   SHOP CATALOG PAGE SIDEBAR
   ========================================================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.sidebar-filter {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 100px;
}

.filter-widget {
    margin-bottom: 32px;
}

.filter-widget:last-child {
    margin-bottom: 0;
}

.filter-widget-title {
    font-size: 18px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.filter-checkbox:hover {
    color: var(--primary-color);
}

.filter-checkbox input {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.price-inputs input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
}

/* ==========================================================================
   PRODUCT DETAIL VIEW TEMPLATE
   ========================================================================== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-main {
    height: 480px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all var(--transition-fast);
}

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

.gallery-thumb.active, .gallery-thumb:hover {
    border-color: var(--primary-color);
}

.product-info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title-detail {
    font-size: 32px;
    color: var(--primary-color);
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.stars {
    color: var(--accent-color);
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 10px 0;
}

.price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-hover);
}

.price-before {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.product-desc-detail {
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.detail-option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.size-selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    background: transparent;
}

.size-btn.active, .size-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.add-cart-row {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 50px;
}

.qty-btn {
    width: 40px;
    height: 100%;
    font-size: 18px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.qty-btn:hover {
    background-color: #e2e8f0;
}

.qty-input {
    width: 50px;
    height: 100%;
    text-align: center;
    font-weight: 600;
    background: transparent;
}

.detail-specs-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 120px 1fr;
    row-gap: 12px;
    font-size: 14px;
}

.spec-name {
    font-weight: 600;
    color: var(--text-muted);
}

.spec-value {
    color: var(--text-color);
}

/* Tabs */
.tabs-container {
    margin-top: 60px;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    gap: 32px;
}

.tab-header {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 12px;
    position: relative;
    cursor: pointer;
    color: var(--text-muted);
}

.tab-header.active {
    color: var(--primary-color);
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-panels {
    padding: 32px 0;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ==========================================================================
   SHOPPING CART SLIDE-OUT PANEL
   ========================================================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1001;
    box-shadow: var(--box-shadow-lg);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-normal);
}

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

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

.cart-title {
    font-size: 20px;
    color: var(--primary-color);
}

.cart-close-btn {
    font-size: 24px;
    color: var(--text-muted);
}

.cart-items-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

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

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.cart-item-price-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.cart-item-remove {
    color: #ef4444;
    font-size: 14px;
    cursor: pointer;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-checkout-btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
}

.cart-empty-msg {
    text-align: center;
    color: var(--text-muted);
    margin: 40px auto;
}

/* ==========================================================================
   MOBILE NAVIGATION MENU PANEL
   ========================================================================== */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1001;
    box-shadow: var(--box-shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    transition: left var(--transition-normal);
}

.mobile-nav-panel.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav-close {
    font-size: 24px;
    color: var(--text-muted);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 18px;
    font-weight: 600;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    border-bottom: 1px solid #334155;
    padding-bottom: 60px;
}

.footer-widget-logo img {
    height: 50px;
    margin-bottom: 24px;
}

.footer-widget-logo p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-title {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 3px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #334155;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
    text-align: center;
    border-top: 1px solid #334155;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    background-color: #25d366;
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--box-shadow-lg);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-filter {
        position: static;
        margin-bottom: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 360px;
    }
    
    .slide-content {
        padding-left: 24px;
        max-width: 100%;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .gallery-main {
        height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* ==========================================
           2. PREMIUM DESIGN SYSTEM & CSS TOKENS
           ========================================== */
        :root {
            --primary: #0F3D24;        /* Deep Forest Green */
            --primary-light: #1b5334;  /* Lighter Forest Green */
            --primary-rgb: 15, 61, 36;
            --secondary: #121212;      /* Charcoal / Near-Black */
            --bg-light: #F7F9F7;       /* Very Light Warm Gray */
            --accent: #2E6A4F;         /* Natural Earthy Green */
            --accent-rgb: 46, 106, 79;
            --white: #FFFFFF;
            --text: #333333;           /* Charcoal Body Text */
            --text-muted: #666666;
            --border-color: #E2E8F0;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --border-radius: 12px;
            --border-radius-sm: 6px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --header-height: 80px;
        }

        /* Basic Resets & Typography */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--secondary);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 0.5em;
        }

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

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

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

        .section-padding {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px auto;
        }

        .section-subtitle {
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.1em;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .section-title {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--accent);
            border-radius: 2px;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 16px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            gap: 8px;
        }

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

        .btn-primary:hover {
            background-color: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(15, 61, 36, 0.3);
        }

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

        .btn-secondary:hover {
            background-color: #242424;
            transform: translateY(-2px);
        }

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

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

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

        .btn-outline:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--white);
            transform: translateY(-2px);
        }

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

        .btn-whatsapp:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

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

        /* ==========================================
           3. HEADER & NAVIGATION STYLES
           ========================================== */
        .announcement-bar {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 8px 0;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .announcement-bar i {
            margin-right: 6px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            height: var(--header-height);
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

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

        .logo-text {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .logo-text span {
            color: var(--secondary);
            font-weight: 400;
            font-size: 14px;
            display: block;
            letter-spacing: 1px;
            margin-top: 3px;
        }

        .custom-logo-link img {
            max-height: 55px;
            width: auto;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-link {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
            padding: 8px 0;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

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

        .action-btn {
            background: none;
            border: none;
            font-size: 18px;
            color: var(--secondary);
            cursor: pointer;
            position: relative;
            padding: 8px;
            border-radius: 50%;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .action-btn:hover {
            background-color: var(--bg-light);
            color: var(--accent);
        }

        .cart-count-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--white);
        }

        .menu-toggle {
            display: none;
        }

        /* Search Slide Drawer */
        .search-drawer {
            position: fixed;
            top: -100px;
            left: 0;
            width: 100%;
            background: var(--white);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 20px 0;
            z-index: 999;
            transition: var(--transition);
            opacity: 0;
            pointer-events: none;
        }

        .search-drawer.active {
            top: calc(var(--header-height) + 36px);
            opacity: 1;
            pointer-events: auto;
        }

        .search-form-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .search-field {
            flex-grow: 1;
            padding: 12px 20px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            font-family: var(--font-body);
            font-size: 15px;
            outline: none;
        }

        .search-field:focus {
            border-color: var(--accent);
        }

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

        /* ==========================================
           4. HERO SECTION STYLES
           ========================================== */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, rgba(15, 61, 36, 0.96), rgba(18, 18, 18, 0.92)), 
                        url('<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/banners/banner-3.jpg') no-repeat center center / cover;
            color: var(--white);
            padding: 140px 0 120px 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            max-width: 680px;
        }

        .hero-badge {
            background-color: rgba(46, 106, 79, 0.3);
            border: 1px solid rgba(82, 183, 136, 0.4);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-block;
            margin-bottom: 20px;
            color: #A3E2C9;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 500;
            color: #C2D5C6;
            margin-bottom: 20px;
            font-family: var(--font-heading);
        }

        .hero-desc {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 35px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .hero-trust-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-trust-text::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #25D366;
            border-radius: 50%;
        }

        /* ==========================================
           5. TRUST BAR STYLES
           ========================================== */
        .trust-bar {
            background: var(--white);
            margin-top: -50px;
            position: relative;
            z-index: 10;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .trust-card {
            padding: 30px 24px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            border-right: 1px solid var(--border-color);
            position: relative;
        }

        .trust-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: transparent;
            transition: var(--transition);
        }

        .trust-card:hover::before {
            background-color: var(--accent);
        }

        .trust-card:last-child {
            border-right: none;
        }

        .trust-icon {
            font-size: 28px;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .trust-info h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--secondary);
        }

        .trust-info p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ==========================================
           6. CATEGORY SECTION STYLES
           ========================================== */
        .category-section {
            background-color: var(--bg-light);
        }

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

        .category-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 35px 30px;
            display: flex;
            flex-direction: column;
            height: 220px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--shadow);
        }

        .category-card::after {
            content: '\f107'; /* Chevron icon placeholder in layout */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            bottom: -30px;
            right: -10px;
            font-size: 120px;
            color: rgba(15, 61, 36, 0.03);
            z-index: -1;
            line-height: 1;
            transition: var(--transition);
        }

        .category-card:hover::after {
            color: rgba(15, 61, 36, 0.05);
            transform: scale(1.1);
        }

        .category-card-icon {
            font-size: 36px;
            color: var(--accent);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .category-card:hover .category-card-icon {
            color: var(--primary);
            transform: translateY(-5px);
        }

        .category-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .category-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: auto;
        }

        .category-link {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .category-link i {
            transition: var(--transition);
        }

        .category-card:hover .category-link i {
            transform: translateX(4px);
        }

        /* ==========================================
           7. POPULAR PRODUCTS STYLES
           ========================================== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .product-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        .product-image-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 85%; /* Slightly taller than 4:3 */
            overflow: hidden;
            background: #EAEAEA;
        }

        .product-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: var(--accent);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            z-index: 2;
        }

        .product-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-category {
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 6px;
            letter-spacing: 0.08em;
        }

        .product-name {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--secondary);
            margin-bottom: 8px;
            height: 44px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-name a:hover {
            color: var(--accent);
        }

        .product-description {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
            height: 38px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.45;
        }

        .product-price {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--secondary);
            margin-top: auto;
            margin-bottom: 18px;
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .product-price-strike {
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: line-through;
            font-weight: 400;
        }

        .product-actions {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 8px;
        }

        .btn-view {
            padding: 10px 12px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary);
            transition: var(--transition);
            display: inline-block;
        }

        .btn-view:hover {
            background-color: var(--bg-light);
            border-color: var(--secondary);
        }

        .btn-order-wa {
            padding: 10px 12px;
            background-color: #25D366;
            border: 1px solid #25D366;
            border-radius: var(--border-radius-sm);
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: var(--transition);
        }

        .btn-order-wa:hover {
            background-color: #128C7E;
            border-color: #128C7E;
        }

        /* ==========================================
           8. LOCAL SEO SECTION STYLES
           ========================================== */
        .seo-section {
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .seo-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .seo-text {
            font-size: 15px;
            color: var(--text);
            line-height: 1.75;
        }

        .seo-text p {
            margin-bottom: 18px;
        }

        .seo-text p:last-child {
            margin-bottom: 0;
        }

        .seo-visual {
            background: linear-gradient(135deg, rgba(15, 61, 36, 0.05), rgba(46, 106, 79, 0.1));
            border-radius: var(--border-radius);
            padding: 40px;
            border: 1px solid rgba(46, 106, 79, 0.15);
        }

        .seo-tag-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .seo-tag {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary);
        }

        .seo-tag i {
            color: var(--accent);
        }

        /* ==========================================
           9. APPLICATIONS SECTION STYLES
           ========================================== */
        .apps-section {
            background-color: var(--bg-light);
        }

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

        .app-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            padding: 24px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0,0,0,0.01);
        }

        .app-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }

        .app-icon-wrapper {
            width: 60px;
            height: 60px;
            background-color: rgba(46, 106, 79, 0.08);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 15px auto;
            transition: var(--transition);
        }

        .app-card:hover .app-icon-wrapper {
            background-color: var(--primary);
            color: var(--white);
        }

        .app-card h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .app-card p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ==========================================
           10. WHY CHOOSE US STYLES
           ========================================== */
        .choose-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .choose-card {
            padding: 10px;
        }

        .choose-card-number {
            font-family: var(--font-heading);
            font-size: 44px;
            font-weight: 800;
            color: rgba(46, 106, 79, 0.15);
            line-height: 1;
            margin-bottom: 12px;
        }

        .choose-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .choose-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ==========================================
           11. FEATURED CTA STYLES
           ========================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            position: relative;
            overflow: hidden;
            padding: 70px 0;
        }

        .cta-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .cta-content {
            max-width: 600px;
        }

        .cta-content h2 {
            color: var(--white);
            font-size: 32px;
            margin-bottom: 12px;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        /* ==========================================
           12. CONTACT SECTION STYLES
           ========================================== */
        .contact-section {
            background-color: var(--bg-light);
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: stretch;
        }

        .contact-card-info {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .contact-logo {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 30px;
            border-left: 4px solid var(--accent);
            padding-left: 14px;
            line-height: 1.2;
        }

        .contact-logo span {
            color: var(--secondary);
            font-weight: 500;
            font-size: 12px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 4px;
        }

        .contact-details-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-details-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-details-icon {
            width: 38px;
            height: 38px;
            background-color: rgba(46, 106, 79, 0.08);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .contact-details-text h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .contact-details-text p {
            font-size: 15px;
            color: var(--secondary);
            font-weight: 600;
        }

        .map-wrapper {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .map-iframe-container {
            width: 100%;
            flex-grow: 1;
            min-height: 300px;
            border-radius: calc(var(--border-radius) - 6px);
            overflow: hidden;
        }

        .map-iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-footer {
            padding: 15px 10px 5px 10px;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ==========================================
           13. FOOTER STYLES
           ========================================== */
        .footer {
            background-color: var(--secondary);
            color: #A0A0A0;
            padding: 70px 0 20px 0;
            border-top: 4px solid var(--primary);
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo img {
            max-height: 50px;
            margin-bottom: 20px;
        }

        .footer-logo h3 {
            font-family: var(--font-heading);
            color: var(--white);
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .footer-logo p {
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--accent);
            transform: translateY(-2px);
        }

        .footer-title {
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #A0A0A0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 13px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #888888;
        }

        .footer-bottom-links a:hover {
            color: var(--white);
        }

        /* ==========================================
           14. MOBILE NAVIGATION & DRAWER STYLES
           ========================================== */
        .mobile-nav-panel {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100vh;
            background-color: var(--white);
            box-shadow: 5px 0 25px rgba(0,0,0,0.15);
            z-index: 1010;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            padding: 30px 24px;
        }

        .mobile-nav-panel.active {
            left: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .mobile-nav-header h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--secondary);
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .mobile-nav-close:hover {
            background-color: var(--bg-light);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .mobile-nav-links a {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--secondary);
            padding: 8px 0;
            border-bottom: 1px solid var(--bg-light);
        }

        .mobile-nav-links a:hover {
            color: var(--accent);
            padding-left: 6px;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 1005;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .mobile-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* ==========================================
           15. CLIENT-SIDE CART DRAWERS STYLES
           ========================================== */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 1005;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .cart-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -380px;
            width: 360px;
            height: 100vh;
            background-color: var(--white);
            box-shadow: -5px 0 25px rgba(0,0,0,0.15);
            z-index: 1010;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

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

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

        .cart-title {
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cart-close-btn {
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-muted);
            cursor: pointer;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .cart-close-btn:hover {
            background-color: var(--bg-light);
        }

        .cart-items-wrapper {
            flex-grow: 1;
            overflow-y: auto;
            padding: 24px;
        }

        .empty-cart-msg {
            text-align: center;
            color: var(--text-muted);
            margin-top: 40px;
            font-size: 14px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--bg-light);
            padding-bottom: 15px;
            position: relative;
        }

        .cart-item-image {
            width: 70px;
            height: 70px;
            border-radius: var(--border-radius-sm);
            object-fit: cover;
            border: 1px solid var(--border-color);
        }

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

        .cart-item-name {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 4px;
            line-height: 1.35;
        }

        .cart-item-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
        }

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

        .cart-item-qty {
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
        }

        .qty-btn {
            background: none;
            border: none;
            width: 24px;
            height: 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

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

        .qty-val {
            font-size: 12px;
            font-weight: 600;
            padding: 0 8px;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: #EF4444;
            cursor: pointer;
            font-size: 14px;
            position: absolute;
            top: 0;
            right: 0;
            opacity: 0.7;
            transition: var(--transition);
        }

        .cart-item-remove:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .cart-footer {
            padding: 24px;
            border-top: 1px solid var(--border-color);
            background-color: var(--bg-light);
        }

        .cart-total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
            font-weight: 700;
            color: var(--secondary);
        }

        .cart-total-amount {
            font-size: 20px;
            color: var(--primary);
        }

        /* ==========================================
           16. FLOATING WHATSAPP BUTTON STYLES
           ========================================== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: var(--white);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            z-index: 998;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(5deg);
            background-color: #128C7E;
            box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
        }

        /* Animation for Floating Widget */
        @keyframes pulse-wa {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .whatsapp-float {
            animation: pulse-wa 2s infinite ease-in-out;
        }

        .no-scroll {
            overflow: hidden !important;
        }

        /* ==========================================
           17. RESPONSIVE MEDIA QUERIES
           ========================================== */

        /* Screen sizes <= 1024px */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 40px;
            }
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .trust-card {
                border-bottom: 1px solid var(--border-color);
            }
            .trust-card:nth-child(even) {
                border-right: none;
            }
            .trust-card:nth-child(3), .trust-card:nth-child(4) {
                border-bottom: none;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .apps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .seo-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Screen sizes <= 768px */
        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
            }
            .desktop-nav {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .hero-section {
                padding: 100px 0 80px 0;
            }
            .hero-title {
                font-size: 34px;
            }
            .hero-subtitle {
                font-size: 18px;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-layout {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .cta-actions {
                width: 100%;
                justify-content: center;
            }
        }

        /* Screen sizes <= 576px */
        @media (max-width: 576px) {
            .section-padding {
                padding: 60px 0;
            }
            .section-title {
                font-size: 26px;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-desc {
                font-size: 14px;
            }
            .trust-grid {
                grid-template-columns: 1fr;
            }
            .trust-card {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
            .trust-card:last-child {
                border-bottom: none;
            }
            .category-grid {
                grid-template-columns: 1fr;
            }
            .category-card {
                height: 180px;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .product-card {
                border-radius: var(--border-radius-sm);
            }
            .product-details {
                padding: 12px;
            }
            .product-name {
                font-size: 14px;
                height: 38px;
                margin-bottom: 4px;
            }
            .product-description {
                display: none; /* Hide description on mobile to save vertical space */
            }
            .product-price {
                font-size: 15px;
                margin-bottom: 12px;
            }
            .product-actions {
                grid-template-columns: 1fr;
                gap: 6px;
            }
            .btn-view, .btn-order-wa {
                font-size: 12px;
                padding: 8px 6px;
            }
            .apps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .choose-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .seo-tag-grid {
                grid-template-columns: 1fr;
            }
            .contact-card-info {
                padding: 25px 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .cart-sidebar {
                width: 100vw;
                right: -100vw;
            }
        }

        /* Screen sizes <= 375px */
        @media (max-width: 375px) {
            .products-grid {
                grid-template-columns: 1fr; /* Single column for tiny mobile screens */
            }
        }