/* 
 * Premium Design System & Stylesheet for Jayesh Solar
 * Modern Glassmorphism, Slate-Teal Palette, Responsive Grid System
 */

/* Color Tokens & Variables (Defaults to Dark Theme) */
:root, [data-theme="dark"] {
    --bg-dark: #0F0F0F; /* Deep Onyx */
    --bg-surface: #121212; /* Dark Surface */
    --bg-card: #1A1A1A; /* Dark Card */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(217, 160, 95, 0.25);
    
    --primary: #D9A05F; /* Signature Gold */
    --primary-hover: #C08F50; /* Rich Gold */
    --secondary: #F1D9B1; /* Soft Champagne */
    --accent: #D9A05F; 
    --accent-hover: #C08F50;
    
    --text-main: #f3f4f6; /* Light Grey */
    --text-muted: #9ca3af;
    --text-dark: #ffffff;
    
    --success-whatsapp: #1A531C; /* Classic Deep Emerald */
    --success-whatsapp-hover: #113813;
    
    --font-family: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 20px rgba(217, 160, 95, 0.15);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --bg-input: #1a1a1a;
    --border-input: rgba(255,255,255,0.1);
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-dark: #F9F9FB; /* Soft Light Grey */
    --bg-surface: #FFFFFF; /* Pure White */
    --bg-card: #F1F2F6; 
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(217, 160, 95, 0.15);
    
    --primary: #9C6A38; /* Signature Gold - Darker/Richer for contrast (4.75:1 ratio) */
    --primary-hover: #7E5327; 
    --secondary: #1C1C1E; /* Dark slate */
    --accent: #9C6A38; 
    --accent-hover: #7E5327;
    
    --text-main: #1C1C1E; /* Dark Slate Text */
    --text-muted: #555558; /* Contrast-compliant grey */
    --text-dark: #000000;
    
    --success-whatsapp: #15803D; /* Highly readable green */
    --success-whatsapp-hover: #166534;
    
    --shadow-glow: 0 0 20px rgba(156, 106, 56, 0.08);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --bg-input: #ffffff;
    --border-input: rgba(0,0,0,0.15);
}

/* Fancy Floral Theme Variables */
[data-theme="fancy"] {
    --bg-dark: #FFF2F4; /* Very Soft Pink Pastel */
    --bg-surface: #FFFFFF; /* Pure White */
    --bg-card: #FFEBEB; 
    --border-glass: rgba(176, 42, 84, 0.12);
    --border-glow: rgba(176, 42, 84, 0.2);
    
    --primary: #B02A54; /* Highly readable Deep Burgundy (6.5:1 ratio) */
    --primary-hover: #8F1D40; 
    --secondary: #2E2229; /* Deep plum slate */
    --accent: #B02A54; 
    --accent-hover: #8F1D40;
    
    --text-main: #2E2229; /* Deep plummy slate */
    --text-muted: #6D4E5B; /* Contrast-compliant plummy grey */
    --text-dark: #1C0F16;
    
    --success-whatsapp: #15803D; 
    --success-whatsapp-hover: #166534;
    
    --shadow-glow: 0 0 20px rgba(176, 42, 84, 0.12);
    --shadow-card: 0 10px 30px -10px rgba(176, 42, 84, 0.05);
    --bg-input: #ffffff;
    --border-input: rgba(176, 42, 84, 0.25);
}

/* Floating Petals Styling */
#petal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
    display: none;
}

[data-theme="fancy"] #petal-container {
    display: block;
}

.floating-petal {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
    animation-name: float-petal;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes float-petal {
    0% {
        transform: translateY(-50px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    90% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(105vh) translateX(120px) rotate(720deg);
        opacity: 0;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    color: inherit;
}

/* Permanent High-Contrast Scrollbar Styling */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid var(--border-glass);
}
::-webkit-scrollbar-thumb {
    background: var(--primary) !important;
    border-radius: 6px;
    border: 2px solid var(--bg-dark);
    min-height: 40px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover) !important;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--success-whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--success-whatsapp-hover);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.badge-offer {
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    color: #000;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Header & Navigation */
.navbar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    opacity: 0.95;
}

.logo-img-nav {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-logo:hover .logo-img-nav {
    transform: scale(1.05);
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 242, 254, 0.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-portal-badge {
    background: rgba(56, 189, 248, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.admin-portal-badge:hover {
    background: rgba(56, 189, 248, 0.25);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(79, 172, 254, 0.05) 0%, transparent 50%),
                var(--bg-dark);
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid var(--border-glow);
    padding: 4px 16px;
    border-radius: 50px;
    background: rgba(0, 242, 254, 0.05);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 1;
}

.hero-image-wrap {
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
}

/* Category Grid Section */
.categories-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 360px;
    position: relative;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.category-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #16203b;
    position: relative;
}

.category-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg-dark) 100%);
}

.category-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.category-card:hover .category-card-arrow {
    background: var(--primary);
    color: var(--text-dark);
}

.categories-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .categories-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid-page {
        grid-template-columns: 1fr;
    }
}

/* Products Listing Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px -10px rgba(0, 242, 254, 0.15);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-surface, #16203b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.product-card-body {
    padding: 20px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat-name {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-title a {
    color: var(--text-dark);
}

.product-card-title a:hover {
    color: var(--primary);
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 5;
}

.btn-details {
    padding: 10px 16px;
    font-size: 0.9rem;
}

.btn-whatsapp-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--success-whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-whatsapp-icon:hover {
    background-color: var(--success-whatsapp-hover);
    transform: scale(1.1);
}

/* Products Catalog Filter Page Layout */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.sidebar-filters {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 8px;
}

.search-box-wrap {
    position: relative;
}

.search-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    padding: 12px 40px 12px 16px;
    border-radius: 30px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--primary);
    background: var(--bg-input);
}

.search-box-wrap i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.category-filter-list {
    list-style: none;
}

.category-filter-list li {
    margin-bottom: 10px;
}

.category-filter-list a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-filter-list a:hover, .category-filter-list a.active {
    color: var(--primary);
}

.cat-count {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.08);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--text-muted);
}

.category-filter-list a.active .cat-count {
    background: var(--primary);
    color: var(--text-dark);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sort-select-wrap select {
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}

/* Product Detail Page Styles */
.product-detail-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
}

.detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-wrap {
    width: 100%;
    min-height: 220px;
    max-height: 450px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-bottom: 15px;
    cursor: zoom-in;
    align-self: flex-start;
    transition: var(--transition-smooth);
}

.main-image-wrap img {
    max-width: 100%;
    max-height: 430px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.detail-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
    gap: 10px;
}

.thumb-wrap {
    height: 72px;
    cursor: pointer;
    border: 2px solid var(--border-glass);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.thumb-wrap.active {
    border-color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 176, 52, 0.2);
}

.thumb-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-cat {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.detail-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.detail-pricing-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.detail-price-row .price-current {
    font-size: 2rem;
}

.detail-price-row .price-original {
    font-size: 1.25rem;
}

.offer-savings {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.detail-desc-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.detail-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    white-space: pre-line;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.btn-whatsapp-buy {
    font-size: 1.1rem;
    padding: 16px 32px;
}

.detail-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.benefit-item i {
    color: var(--primary);
}

/* Full width benefits section style */
.detail-benefits-fullwidth {
    margin-top: 50px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.benefit-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.benefit-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .detail-benefits-fullwidth {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .detail-benefits-fullwidth {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Static pages content */
.text-page-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 50px;
    border-radius: 24px;
}

.text-page-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.text-page-container p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.text-page-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

.text-page-container li {
    margin-bottom: 8px;
}

/* Contact Page form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-details-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: 20px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-card-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
}

.contact-card-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-card-item p, .contact-card-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--bg-input);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Site Footer */
.site-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 30px;
    margin-top: 80px;
    color: var(--text-muted);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    opacity: 0.95;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a {
    color: var(--text-muted);
}

.footer-section ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-section ul li i {
    color: var(--primary);
    font-size: 0.85rem;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border-glass);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pulsating WhatsApp Floating Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: var(--success-whatsapp-hover);
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--success-whatsapp);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 25px;
    }
    .main-image-wrap {
        max-height: 360px;
    }
    .main-image-wrap img {
        max-height: 344px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px 14px;
        border-radius: 16px;
    }
    .main-image-wrap {
        max-height: 280px;
        padding: 6px;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    .main-image-wrap img {
        max-height: 268px;
    }
    .detail-gallery-thumbs {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding-bottom: 6px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .detail-gallery-thumbs::-webkit-scrollbar {
        display: none;
    }
    .thumb-wrap {
        flex: 0 0 60px !important;
        height: 60px !important;
        border-radius: 8px !important;
    }
    
    /* Responsive Lightbox Modal on Mobile */
    #imageEnlargeModal {
        padding: 8px;
    }
    #imageEnlargeModal .lightbox-container {
        width: 95vw !important;
        height: 78vh !important;
    }
    #imageEnlargeModal .lightbox-nav-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }
    #imageEnlargeModal .lightbox-prev-btn {
        left: 8px !important;
    }
    #imageEnlargeModal .lightbox-next-btn {
        right: 8px !important;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1005;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(7, 10, 19, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        gap: 35px;
        transition: left 0.4s ease-in-out;
        border-top: none;
        z-index: 1004;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 40px;
    }
    
    .btn-whatsapp-header {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .main-image-wrap {
        height: 280px;
    }
}

/* Hero Slideshow Section Styles */
.hero-slider-section {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .slide-content {
    max-width: 800px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider .slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-indicators .indicator {
    width: 32px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-indicators .indicator.active {
    background: var(--primary);
    width: 48px;
    box-shadow: 0 0 10px var(--primary);
}

@media (max-width: 576px) {
    .whatsapp-floating-btn {
        bottom: 85px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.6rem !important;
    }
}

/* Responsive Filter Toolbar */
.catalog-filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.toolbar-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.toolbar-quick-filters .filter-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-right: 5px;
}

.toolbar-quick-filters .pill {
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary);
    transition: var(--transition-smooth);
    color: var(--primary);
    background: transparent;
}

.toolbar-quick-filters .pill.active {
    color: #000000;
    background: var(--primary);
}

.toolbar-dropdowns {
    display: flex;
    gap: 12px;
}

.toolbar-dropdowns .select-dropdown {
    background-color: var(--bg-input);
    border: 1px solid var(--border-input);
    padding: 10px 36px 10px 16px;
    border-radius: 8px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    min-width: 160px;
    transition: var(--transition-smooth);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9A05F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

[data-theme="light"] .toolbar-dropdowns .select-dropdown {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239C6A38' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

[data-theme="fancy"] .toolbar-dropdowns .select-dropdown {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B02A54' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.toolbar-dropdowns .select-dropdown:focus {
    border-color: var(--primary);
}

/* Tablet view styling */
@media (max-width: 992px) {
    .toolbar-quick-filters .pill-index-2,
    .toolbar-quick-filters .pill-index-3 {
        display: none;
    }
}

/* Mobile view styling */
@media (max-width: 768px) {
    .catalog-filter-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .toolbar-quick-filters {
        justify-content: flex-start;
    }
    
    .toolbar-quick-filters .pill-index-2,
    .toolbar-quick-filters .pill-index-3 {
        display: none;
    }
    
    .toolbar-dropdowns {
        flex-direction: column;
        gap: 10px;
    }
    
    .toolbar-dropdowns .select-dropdown {
        width: 100%;
    }
}
