@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0f172a;
    --bg-card-dark: #1e293b;
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #172554;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fef3c7;
    --success: #10b981;
    --danger: #ef4444;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card-light: #ffffff;
    --border-light: #e2e8f0;
    --border-dark: #334155;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-all);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-gradient { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

header.site-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-all);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    color: var(--accent);
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-white);
    letter-spacing: 1px;
}

.logo-text span { color: var(--accent); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-all);
}

.nav-item a:hover { color: var(--text-white); }
.nav-item a:hover::after, .nav-item.active a::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.48);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-explore-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(245, 158, 11, 0.12));
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.14);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

.hero-section {
    padding-top: 140px;
    padding-bottom: 90px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245,158,11,0.12), transparent 30%),
        linear-gradient(135deg, #071426 0%, #0b1731 20%, #101f3e 50%, #152a4d 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    z-index: 0;
    animation: gridShift 18s linear infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.20) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 50%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text { position: relative; z-index: 2; }

.hero-title {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.96;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.7;
}

.badge-certified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #f7b732 0%, #f59e0b 100%);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-all);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 32px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-all);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 520px;
}

.stat-card {
    background: rgba(15, 23, 42, 0.34);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    padding: 18px 18px 16px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.24);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.38);
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.stat-value {
    display: block;
    font-size: clamp(1.6rem, 2vw, 2.5rem);
    line-height: 0.96;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #f8fafc;
    margin-bottom: 6px;
    letter-spacing: -0.04em;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.visual-backdrop {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59,130,246,0.9) 0%, rgba(59,130,246,0.45) 20%, transparent 70%);
    filter: blur(40px);
    position: absolute;
    opacity: 0.8;
    z-index: 1;
    animation: pulseGlow 4.5s ease-in-out infinite alternate;
}

.hero-film-frame {
    position: relative;
    width: min(100%, 460px);
    padding: 18px;
    background: rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 26px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.38);
    z-index: 2;
    transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
    animation: floatHero 6s ease-in-out infinite alternate;
}

.film-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 30%, transparent 60%, rgba(255,255,255,0.12));
    border-radius: 26px;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
    transition: transform 0.45s ease;
}

.hero-film-frame:hover .hero-image { transform: scale(1.02); }

.floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.82);
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.badge-top { top: 28px; left: -8px; animation: driftLeft 4s ease-in-out infinite alternate; }
.badge-bottom { right: -14px; bottom: 30px; animation: driftRight 4.5s ease-in-out infinite alternate; }

.reveal-on-scroll, .reveal-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.is-visible, .reveal-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatHero {
    0% { transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) translateY(0); }
    100% { transform: perspective(1200px) rotateY(-7deg) rotateX(3deg) translateY(-10px); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.08); opacity: 1; }
}

@keyframes driftLeft {
    0% { transform: translateX(-8px); }
    100% { transform: translateX(8px); }
}

@keyframes driftRight {
    0% { transform: translateX(8px); }
    100% { transform: translateX(-8px); }
}

@keyframes gridShift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, 12px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.certifications-section {
    background-color: var(--bg-card-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 30px 0;
}

.cert-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.cert-item i {
    font-size: 28px;
    color: var(--primary-light);
}

.cert-item span {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--text-main);
}

.section-header { margin-bottom: 50px; }
.section-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 38px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.products-section { padding: 80px 0; }
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-all);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.category-tab.active {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.compare-panel {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.01));
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.compare-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.compare-header h3 { margin: 0; color: var(--text-main); font-size: 20px; }

.compare-clear-btn {
    border: 1px solid rgba(239, 68, 68, 0.25);
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.9), rgba(254, 226, 226, 0.7));
    color: #b91c1c;
    border-radius: 999px;
    padding: 9px 14px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.08);
}

.compare-clear-btn::before {
    content: '\f2ed';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.compare-clear-btn:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(239, 68, 68, 0.2);
}

.compare-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.compare-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
}

.compare-tag button {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--primary);
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.compare-table th, .compare-table td {
    border: 1px solid var(--border-light);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}
.compare-table th {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-main);
    font-weight: 700;
}
.compare-table td {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-muted);
    font-size: 14px;
}
.compare-table tr td:first-child, .compare-table tr th:first-child {
    width: 180px;
    color: var(--text-main);
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-all);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.2);
}

.product-image-container {
    position: relative;
    height: 200px;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.product-image { max-width: 100%; max-height: 100%; object-fit: contain; transition: var(--transition-all); }
.product-card:hover .product-image { transform: scale(1.05); }

.product-certified-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(16, 185, 129, 0.96);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 10px 6px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.22);
}

.product-certified-badge i { font-size: 10px; }
.product-category-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.82);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.4;
}

.product-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-specs {
    background-color: #f1f5f9;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-item {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.spec-item span:first-child {
    font-weight: 600;
    color: var(--text-main);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-compare {
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.06);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 12px;
    transition: var(--transition-all);
    white-space: nowrap;
}

.floating-compare-bar {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
}

.floating-compare-btn {
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.03em;
    box-shadow: 0 18px 26px rgba(30, 64, 175, 0.28);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-all);
}

.floating-compare-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 30px rgba(30, 64, 175, 0.34);
}

.btn-compare:hover, .btn-compare.is-selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-1px);
}

.btn-detail, .btn-send-query {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 12px;
    transition: var(--transition-all);
    white-space: nowrap;
}

.btn-detail {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-detail:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
}

.btn-send-query {
    background-color: #f59e0b;
    color: #fff;
}

.btn-send-query:hover { background-color: #d97706; transform: translateY(-1px); }

.about-section {
    padding: 56px 0 40px;
    background-color: var(--bg-card-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.about-exp-years {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.about-exp-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 10px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.trust-badge-primary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(59, 130, 246, 0.35);
}

.trust-badge-gold {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border-color: rgba(245, 158, 11, 0.45);
}

.trust-badge-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.trust-badge-primary .trust-badge-icon { background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%); }
.trust-badge-gold .trust-badge-icon { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.trust-badge-text {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.promise-tagline {
    margin-top: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03), rgba(59, 130, 246, 0.06));
    border-left: 4px solid var(--accent);
    border-radius: 12px;
}

.promise-label {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 8px;
}

.promise-text {
    font-size: clamp(24px, 2.2vw, 38px);
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-card {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info-backdrop {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(30px);
}

.contact-info-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 35px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 2;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-all);
}

.contact-method:hover .contact-method-icon {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: scale(1.05);
}

.contact-method-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.contact-method-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.contact-form-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-full { grid-column: span 2; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-all);
}

.form-control:focus {
    border-color: var(--primary-light);
    background-color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.btn-form-submit {
    background-color: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-all);
    margin-top: 10px;
}

.btn-form-submit:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
}

.product-detail-section {
    padding-top: 20px !important;
    background: #f7f7f6;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-detail-card { padding: 10px 0 40px; }
.pdp-shell { max-width: 1300px; margin: 0 auto; padding: 0 12px; }
.detail-topbar { display: flex; justify-content: flex-start; margin: 0 0 18px; }
.btn-back-detail {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-all);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.btn-back-detail:hover {
    background: #f3f4f6;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}
.breadcrumb-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    margin: 10px 0 32px;
    font-family: var(--font-body);
}
.reveal-card {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.breadcrumb-row strong { color: var(--text-main); font-weight: 700; }
.detail-layout {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 36px;
    margin-bottom: 36px;
}
.detail-gallery {
    background: linear-gradient(180deg, #f4f3f1 0%, #efefee 100%);
    border-radius: 12px;
    padding: 18px 18px 12px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.04);
}
.gallery-main {
    position: relative;
    background: linear-gradient(180deg, #f8f8f7 0%, #efefee 100%);
    border-radius: 10px;
    padding: 18px;
    min-height: 420px;
    height: 520px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 8px 18px rgba(15, 23, 42, 0.04);
    cursor: zoom-in;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.75s ease, filter 0.75s ease;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transform-origin: center center;
}
.gallery-main:hover img, .gallery-main:focus-within img {
    transform: scale(1.18) rotate(-0.9deg);
    filter: saturate(1.18) contrast(1.05);
}
.gallery-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15), rgba(255,255,255,0) 58%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-main:hover::after, .gallery-main:focus-within::after { opacity: 1; }
.gallery-search {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
}
.thumb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.thumb {
    background: linear-gradient(180deg, #f8f8f7 0%, #f3f3f1 100%);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    padding: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.thumb:hover { transform: translateY(-2px); box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06); }
.thumb.active { border-color: #1f2937; box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08); }
.thumb img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.3s ease, filter 0.3s ease; }
.thumb:hover img { transform: scale(1.08); filter: saturate(1.1); }
.detail-main { padding-top: 8px; }
.detail-main h1 {
    font-size: clamp(2.5rem, 3vw, 3.6rem);
    line-height: 1.02;
    margin: 0 0 24px;
    letter-spacing: -0.04em;
    color: var(--text-main);
}
.detail-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}
.btn-brochure, .btn-send-enquiry {
    border: 1px solid #1f2937;
    border-radius: 14px;
    height: 62px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-all);
}
.btn-brochure { min-width: 180px; background: #fff; color: var(--text-main); }
.btn-send-enquiry { min-width: 220px; background: #4b5563; color: #fff; border-color: #4b5563; }
.btn-brochure:hover, .btn-send-enquiry:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}
.tag-row span {
    background: #f1f5f9;
    border: 1px solid #dfe7f1;
    color: #475569;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
}
.overview-block { margin-top: 12px; }
.overview-block h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-main);
}
.overview-block p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.feature-icons {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 18px;
}
.feature-item { text-align: center; color: var(--text-main); font-size: 0.85rem; font-weight: 600; transition: transform 0.35s ease; }
.feature-item:hover { transform: translateY(-3px); }
.feature-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 12px;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #374151;
    font-size: 1.7rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.feature-item:hover .feature-icon {
    transform: translateY(-4px) scale(1.04) rotate(2deg);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    border-color: #94a3b8;
}
.spec-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}
.spec-panel, .similar-panel {
    background: #f0f0f0;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px 22px 14px;
}
.spec-panel h3, .similar-panel h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: var(--text-main);
}
.spec-panel { background: transparent; border: none; border-radius: 0; padding: 0 0 12px 0; }
.similar-panel { background: #f4f4f2; }
.spec-table { border-top: 1px solid #d9dee5; background: transparent; }
.spec-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #d9dee5;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-main);
    align-items: start;
}
.spec-row span { color: #1f2937; font-weight: 500; padding-right: 10px; }
.spec-row strong { font-weight: 400; color: #1f2937; text-align: left; }
.similar-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}
.similar-card {
    background: #e7e7e5;
    border: 1px solid #dfe3ea;
    border-radius: 16px;
    padding: 16px 14px 12px;
    min-height: 210px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 180px;
}
.similar-image-wrap {
    width: 100%;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.similar-image-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.35s ease, filter 0.35s ease; }
.similar-card:hover .similar-image-wrap img { transform: scale(1.08); filter: saturate(1.15); }
.similar-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    min-height: 46px;
}
.similar-link {
    margin-top: auto;
    background: transparent;
    border: none;
    color: #1e3a8a;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    padding-top: 8px;
}
.view-all-btn {
    margin-top: 18px;
    width: 100%;
    border: none;
    background: rgba(55,65,81,0.92);
    color: #fff;
    height: 62px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}
.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 22px;
    background: linear-gradient(180deg, #d33c3c 0%, #bc2c2c 100%);
    color: #fff;
    border: none;
    border-radius: 12px 12px 12px 12px;
    width: 54px;
    height: 110px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

@media (max-width: 980px) {
    .detail-layout, .spec-layout { grid-template-columns: 1fr; }
    .feature-icons { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
}

@media (max-width: 640px) {
    .detail-actions { flex-direction: column; align-items: stretch; }
    .btn-brochure, .btn-send-enquiry { width: 100%; }
    .spec-row { grid-template-columns: 1fr; gap: 10px; }
    .similar-grid { grid-template-columns: 1fr; }

    body { overflow-x: hidden; }
    .container { width: 100%; padding-left: 16px; padding-right: 16px; }
    header.site-header { position: fixed; }
    .nav-container { height: 64px; padding-left: 12px; padding-right: 12px; }
    .logo-text { font-size: 18px; letter-spacing: 0; }
    .logo-icon { font-size: 18px; }
    .site-header nav { position: relative; }
    .nav-menu { display: none; position: absolute; top: 28px; right: -12px; width: min(220px, calc(100vw - 32px)); padding: 10px; background: rgba(15, 23, 42, 0.98); border: 1px solid rgba(148, 163, 184, 0.24); border-radius: 12px; box-shadow: var(--shadow-xl); flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-menu.active { display: flex; }
    .nav-item a { display: block; padding: 10px 12px; font-size: 13px; }
    .nav-actions { gap: 8px; }
    .header-explore-btn { display: none; }
    .mobile-toggle { display: block; font-size: 20px; padding: 6px; }

    .hero-section { padding-top: 104px; padding-bottom: 48px; }
    .hero-grid { grid-template-columns: 1fr; gap: 0; }
    .hero-title { font-size: 42px; line-height: 0.98; letter-spacing: -0.04em; }
    .hero-subtitle { font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-stats .stat-card { min-height: 104px; padding: 12px; }
    .hero-visual { display: none; }

    .products-section, .contact-section { padding: 52px 0; }
    .section-header { margin-bottom: 28px; }
    .section-title { font-size: 30px; line-height: 1.08; }
    .section-desc { font-size: 13px; line-height: 1.55; }
    .category-tabs { gap: 7px; margin-bottom: 26px; }
    .category-tab { font-size: 11px; padding: 8px 10px; }
    .product-grid { grid-template-columns: 1fr; gap: 18px; }

    .about-section { padding: 52px 0; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 26px; }
    .about-img { height: 300px; }
    .about-experience-badge { left: 16px; bottom: 16px; padding: 12px 16px; gap: 10px; }
    .about-exp-years { font-size: 30px; }
    .about-exp-text { font-size: 11px; }
    .about-text h2 { font-size: 34px !important; line-height: 1.06 !important; }
    .about-text p { font-size: 14px; line-height: 1.65; }
    .trust-badges { align-items: stretch; flex-direction: column; }
    .trust-badge { width: 100%; }
    .promise-text { font-size: 25px; }

    .contact-info-card, .contact-form-card { padding: 24px 18px; border-radius: 16px; }
    .contact-info-title { font-size: 25px; }
    .contact-methods { gap: 18px; }
    .contact-method-value { font-size: 13px; overflow-wrap: anywhere; }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-group-full { grid-column: auto; }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-all);
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-wrapper {
    background-color: var(--bg-card-light);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-all);
    display: flex;
    flex-direction: column;
}
.modal-overlay.active .modal-wrapper { transform: scale(1); }
.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-title { font-size: 18px; color: var(--text-main); }
.btn-modal-close {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-all);
}
.btn-modal-close:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}
.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(85vh - 78px);
}
.confirm-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 18px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
}
.confirm-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--success);
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--bg-card-light);
    box-shadow: var(--shadow-xl);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-panel.active { right: 0; }
.cart-header { padding: 24px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.cart-body {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    text-align: center;
    gap: 15px;
}
.cart-empty-icon { font-size: 48px; color: var(--border-light); }
.cart-item-row {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}
.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 5px;
}
.cart-item-details { flex-grow: 1; }
.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cart-item-price { font-size: 14px; font-weight: 800; color: var(--primary); }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
}
.cart-qty-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}
.cart-qty-val { font-weight: 600; }
.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
}
.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-light);
    background-color: #f8fafc;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cart-total-price {
    font-size: 22px;
    color: var(--primary);
    font-weight: 800;
}
.btn-checkout {
    width: 100%;
    background-color: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    transition: var(--transition-all);
}

.owner-dashboard-view { display: none; min-height: 100vh; background: #05070c; color: #f8fafc; }
.owner-dashboard-view.active { display: block; }
.dashboard-header { background: linear-gradient(135deg, #0b142d 0%, #172554 62%, #1e3a8a 100%); border-bottom: 1px solid rgba(245, 158, 11, 0.32); color: var(--text-white); box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2); }
.dash-nav-container { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dash-logo, .dash-actions, .dash-tabs, .dash-tab, .btn-view-customer, .btn-logout { display: inline-flex; align-items: center; }
.dash-logo { gap: 10px; font-family: var(--font-heading); font-size: 22px; font-weight: 700; }
.dash-logo span { color: var(--accent); }
.dash-logo .logo-icon { color: var(--accent); }
.dash-actions { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.btn-view-customer, .btn-logout { gap: 8px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; padding: 9px 13px; font: 600 13px var(--font-body); cursor: pointer; transition: var(--transition-all); }
.btn-view-customer { background: rgba(255, 255, 255, 0.1); color: var(--text-white); }
.btn-logout { background: rgba(239, 68, 68, 0.14); color: #fecaca; }
.btn-view-customer:hover, .btn-logout:hover { transform: translateY(-1px); filter: brightness(1.12); }
.dashboard-body { padding-top: 28px; padding-bottom: 60px; }
.dash-tabs { gap: 8px; border-bottom: 1px solid #273449; margin-bottom: 24px; }
.dash-tab { gap: 8px; background: transparent; border: 0; border-bottom: 3px solid transparent; color: #94a3b8; padding: 12px 16px; font: 700 14px var(--font-body); cursor: pointer; }
.dash-tab:hover, .dash-tab.active { color: var(--primary); border-bottom-color: var(--accent); background: rgba(245, 158, 11, 0.06); }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 24px; }
.stats-grid .stat-card { min-height: 142px; background: #111827; border: 1px solid #263653; border-radius: 16px; color: #f8fafc; box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3); backdrop-filter: blur(8px); }
.stats-grid .stat-card:hover { border-color: rgba(59, 130, 246, 0.4); }
.stat-info h5 { color: #b7c4d8; font-size: 13px; margin-bottom: 8px; }
.stat-info h2 { color: #f8fafc; font-size: 32px; line-height: 1; }
.stat-icon { margin-left: auto; color: var(--primary-light); font-size: 26px; filter: drop-shadow(0 5px 8px rgba(59, 130, 246, 0.2)); }
.dash-panel { display: none; }
.dash-panel.active { display: block; }
.table-card { background: #111827; border: 1px solid #263653; border-radius: 16px; box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3); overflow: hidden; }
.table-responsive { overflow-x: auto; }
.dash-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.dash-table th, .dash-table td { padding: 14px 16px; border-bottom: 1px solid #263653; text-align: left; vertical-align: middle; }
.dash-table th { background: #1e293b; color: #b7c4d8; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.dash-table td { background: #111827; color: #e5edf8; font-size: 13px; }
.dash-table tr:last-child td { border-bottom: 0; }
#dashProductsPanel > div:first-child h3 { color: #f8fafc !important; font-size: 24px; letter-spacing: -0.02em; }
#dashProductsPanel > div:nth-child(2) { background: linear-gradient(145deg, #172554, #0f172a) !important; border-color: rgba(59, 130, 246, 0.28) !important; box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14); }
.owner-dashboard-view .form-label { color: #b7c4d8; }
.owner-dashboard-view .form-control { background: #e8eef7; border-color: #51627d; color: #0f172a; }
.owner-dashboard-view .form-control:focus { background: #f8fafc; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18); }
@media (max-width: 760px) {
    .dash-nav-container { align-items: flex-start; flex-direction: column; padding: 18px 16px; gap: 16px; }
    .owner-dashboard-view .container { width: 100%; padding-left: 16px; padding-right: 16px; }
    .dash-logo { font-size: 19px; line-height: 1.2; }
    .dash-logo .logo-icon { font-size: 20px; }
    .dash-logo div span { font-size: 10px !important; }
    .dash-actions { width: 100%; justify-content: stretch; gap: 8px; }
    .btn-view-customer, .btn-logout { flex: 1; justify-content: center; min-height: 44px; padding: 10px 8px; font-size: 12px; }
    .dashboard-body { padding: 24px 16px 48px; }
    .dash-tabs { gap: 4px; margin-bottom: 28px; overflow-x: auto; }
    .dash-tab { flex: 0 0 auto; min-height: 46px; padding: 12px 14px; }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
    .stats-grid .stat-card { min-height: 128px; padding: 18px; }
    .dash-table { min-width: 700px; }
    .dash-table th, .dash-table td { padding: 13px 14px; }
    .table-card { border-radius: 14px; }
    .owner-dashboard-view .form-control { min-height: 46px; font-size: 14px; }
    #dashProductsPanel > div:first-child { gap: 16px; align-items: flex-start !important; flex-direction: column; margin-bottom: 24px !important; }
    #dashProductsPanel > div:first-child .btn-primary { width: 100%; justify-content: center; min-height: 44px; }
    #dashProductsPanel > div:nth-child(2) { padding: 16px !important; }
    #dashProductsPanel > div:nth-child(2) > div:nth-child(2) { grid-template-columns: 1fr !important; gap: 16px !important; }
    #dashProductsPanel > div:nth-child(2) > div:first-child { align-items: flex-start !important; flex-direction: column; }
    #dashProductsPanel > div:nth-child(2) .btn-secondary { width: 100%; justify-content: center; }
    #dashProductsPanel > div:nth-child(2) .btn-primary { min-height: 44px; }
}
