/* ============================================================
   Five Star Weighing — Main Stylesheet
   Light Professional Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --primary:    #1a3a5c;
    --primary-lt: #245080;
    --accent:     #e8a020;
    --accent-lt:  #f5b840;
    --white:      #ffffff;
    --bg:         #f7f8fc;
    --bg2:        #eef1f7;
    --text:       #1e2535;
    --text-sm:    #555e73;
    --border:     #d8dde8;
    --shadow:     0 4px 24px rgba(26,58,92,0.09);
    --shadow-lg:  0 8px 40px rgba(26,58,92,0.14);
    --radius:     10px;
    --radius-lg:  18px;
    --ticker-bg:  #1a3a5c;
    --ticker-text:#ffffff;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.25;
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--ticker-bg);
    color: var(--ticker-text);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    position: sticky;
    top: 0;
    z-index: 200;
}
.ticker-label {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
}
.ticker-track {
    display: flex;
    animation: ticker-scroll 38s linear infinite;
    white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    font-size: 13px;
    padding: 0 48px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.ticker-item::before {
    content: '★';
    color: var(--accent);
    font-size: 10px;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── NAVBAR ── */
.navbar {
    background: var(--white);
    position: sticky;
    top: 40px;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(26,58,92,0.10);
    border-bottom: 3px solid var(--accent);
}
.navbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; fill: var(--accent); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
.logo-sub {
    font-size: 11px;
    color: var(--text-sm);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active {
    background: var(--bg);
    color: var(--primary);
}
.nav-links a.active { font-weight: 700; }

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-lt) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: .3s;
}

/* hero replaced by .hero-slider */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: none;
    font-family: 'DM Sans', sans-serif;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-lt); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover { background: var(--accent-lt); color: var(--white); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }



/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg); }
.container { max-width: 1200px; margin: auto; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
    display: inline-block;
    background: var(--bg2);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.section-header h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.section-header p { font-size: 16px; color: var(--text-sm); max-width: 560px; margin: auto; }

/* ── PRODUCT CARDS ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-img {
    height: 200px;
    background: linear-gradient(135deg, #e9eef7 0%, #d4dded 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}
.product-body { padding: 22px; }
.product-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}
.product-desc {
    font-size: 13px;
    color: var(--text-sm);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.spec-pill {
    background: var(--bg2);
    border: 1px solid var(--border);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 50px;
    color: var(--text-sm);
    font-weight: 500;
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow .25s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e6ecf7, #d8e2f3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
}
.why-card h4 { font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-sm); }

/* ── DEALERS ── */
.dealers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.dealer-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow .25s;
}
.dealer-card:hover { box-shadow: var(--shadow); }
.dealer-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.dealer-name { font-weight: 700; font-size: 15px; color: var(--primary); margin-bottom: 2px; }
.dealer-company { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.dealer-info { font-size: 12px; color: var(--text-sm); display: flex; flex-direction: column; gap: 3px; }
.dealer-info span { display: flex; align-items: center; gap: 5px; }

/* ── CLIENTS ── */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.client-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: box-shadow .25s, border-color .25s;
}
.client-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.client-icon {
    width: 50px;
    height: 50px;
    background: var(--bg2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
}
.client-name { font-size: 13px; font-weight: 600; color: var(--primary); }
.client-industry { font-size: 11px; color: var(--text-sm); margin-top: 4px; }

/* ── NEWS CARDS ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-top {
    background: linear-gradient(135deg, #1a3a5c 0%, #245080 100%);
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.news-card-top::after {
    content: '★';
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 48px;
    color: rgba(232,160,32,0.2);
    line-height: 1;
}
.news-type-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.news-date { font-size: 12px; color: rgba(255,255,255,0.6); }
.news-body { padding: 22px; }
.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-excerpt { font-size: 13px; color: var(--text-sm); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── CONTACT ── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3 { font-size: 28px; margin-bottom: 14px; }
.contact-info p { color: var(--text-sm); margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--bg2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}
.contact-item-text strong { display: block; font-size: 13px; color: var(--text-sm); font-weight: 500; margin-bottom: 2px; }
.contact-item-text span { font-size: 15px; font-weight: 600; color: var(--text); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-form h4 {
    font-size: 22px;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    padding: 64px 24px 0;
}
.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.footer-about { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 20px; }

.footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; gap: 8px; align-items: flex-start; }
.footer-contact-item span:first-child { flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 24px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* ── PAGE BANNER ── */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
    padding: 60px 24px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 { font-size: clamp(26px, 3vw, 40px); color: var(--white); position: relative; }
.page-banner p { color: rgba(255,255,255,0.75); margin-top: 10px; position: relative; font-size: 15px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    position: relative;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── FILTER BAR ── */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sm);
    cursor: pointer;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ── ALERT ── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 20px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error   { background: #fce4e4; color: #c62828; border: 1px solid #ef9a9a; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 24px; box-shadow: 0 8px 24px rgba(0,0,0,.1); gap: 4px; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .navbar { position: relative; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .section { padding: 56px 16px; }
    .hero { padding: 56px 16px 48px; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 560px;
    max-height: 820px;
    overflow: hidden;
    background: #0d2137;
}

/* Track holds all slides side by side */
.hs-track {
    display: flex;
    height: 100%;
    width: 500%; /* 5 slides */
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* Each slide */
.hs-slide {
    position: relative;
    width: 20%; /* 100% / 5 slides */
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

/* Background layer */
.hs-bg {
    position: absolute;
    inset: 0;
    transition: transform 8s ease;
}
.hs-slide.active .hs-bg {
    transform: scale(1.06);
}

/* Subtle dot pattern overlay */
.hs-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Big decorative icon */
.hs-icon-bg {
    position: absolute;
    right: -40px;
    bottom: -40px;
    font-size: clamp(180px, 22vw, 340px);
    opacity: 0.08;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

/* Dark gradient overlay for text readability */
.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.45) 55%,
        rgba(0,0,0,0.10) 100%
    );
}

/* Content */
.hs-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 48px;
    padding-bottom: 80px; /* room for stats bar */
    color: #fff;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hs-slide.active .hs-content {
    opacity: 1;
    transform: translate(-50%, -50%);
    padding-bottom: 80px;
}

.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,160,32,0.22);
    border: 1px solid rgba(232,160,32,0.55);
    color: #ffd570;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hs-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.5vw, 58px);
    color: #fff;
    line-height: 1.18;
    margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hs-content p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.7;
}

.hs-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hs-btn-ghost {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(4px);
}
.hs-btn-ghost:hover {
    background: rgba(255,255,255,0.22) !important;
    transform: translateY(-2px);
}

/* ARROWS */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all .22s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.hs-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.08);
}
.hs-prev { left: 24px; }
.hs-next { right: 24px; }

/* DOTS */
.hs-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}
.hs-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}

/* STATS BAR */
.hs-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 20, 40, 0.82);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 14px 24px;
    z-index: 10;
}
.hs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.hs-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.hs-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 3px;
}
.hs-stat-div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { height: 85vh; min-height: 480px; }
    .hs-content { padding: 0 24px; padding-bottom: 90px; }
    .hs-arrow { width: 38px; height: 38px; font-size: 15px; }
    .hs-prev { left: 12px; }
    .hs-next { right: 12px; }
    .hs-stat { padding: 0 14px; }
    .hs-stat-num { font-size: 16px; }
    .hs-dots { bottom: 94px; }
}
@media (max-width: 480px) {
    .hs-content h1 { font-size: 24px; }
    .hs-stats-bar { gap: 0; padding: 10px 8px; }
    .hs-stat { padding: 0 8px; }
    .hs-stat-label { display: none; }
}

/* ============================================================
   PRODUCT GALLERY
   ============================================================ */
.pg-main-img {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    transition: box-shadow .2s;
}
.pg-main-img:hover { box-shadow: var(--shadow-lg); }
.pg-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}
.pg-main-img:hover img { transform: scale(1.03); }
.pg-main-img::after {
    content: '🔍';
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 18px;
    opacity: 0.5;
}

/* Thumbnails */
.pg-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.pg-thumb {
    width: 72px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s, transform .2s;
    flex-shrink: 0;
}
.pg-thumb:hover { border-color: var(--primary); transform: translateY(-2px); }
.pg-thumb.active { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(232,160,32,0.3); }
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.pg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.pg-lightbox.open { display: flex; }
.pg-lb-img-wrap {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-lb-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.pg-lb-close {
    position: fixed;
    top: 20px; right: 24px;
    background: rgba(255,255,255,0.15);
    border: none; color: #fff;
    font-size: 28px; width: 44px; height: 44px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 10000;
}
.pg-lb-close:hover { background: var(--accent); }
.pg-lb-prev, .pg-lb-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none; color: #fff;
    font-size: 22px; width: 48px; height: 48px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 10000;
}
.pg-lb-prev { left: 16px; }
.pg-lb-next { right: 16px; }
.pg-lb-prev:hover, .pg-lb-next:hover { background: var(--accent); }
.pg-lb-counter {
    position: fixed;
    bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 13px; font-family: 'DM Sans', sans-serif;
    background: rgba(0,0,0,0.4);
    padding: 4px 14px; border-radius: 50px;
}

@media (max-width: 768px) {
    .pg-main-img { height: 260px; }
    .pg-thumb { width: 56px; height: 44px; }
}
