/* ============================================================
   Q CRACKERS — DESIGN TOKENS
   Palette: near-black ground, gold-yellow ignition, ember accent
   Display: Anton (bold, festive, poster-like)
   Body: Poppins
   Signature: the "lit fuse" — a dashed spark-line that runs
   between every section, echoing an actual firecracker fuse.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #ffffff;
    --bg-white: #ffffff;
    --bg-elevated: #fff8f6;
    --card: #e60000;
    --card-hover: #c40000;
    --border: rgba(230, 0, 0, 0.12);
    --border-strong: rgba(230, 0, 0, 0.30);
    --yellow: #ffd400;
    --yellow-bright: #fff04d;
    --ember: #ff0000;
    --ember-soft: rgba(255, 0, 0, 0.15);
    --text: #1f1f1f;
    --text-muted: #555555;
    --text-dim: #888888;
    --radius: 14px;
    --radius-sm: 8px;
    --max-w: 1200px;
    --shadow-glow: 0 0 30px rgba(230, 0, 0, 0.25);
    --sidebar-width: 260px;
    --header-height: 70px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 10%, rgba(255, 201, 60, 0.05), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255, 90, 31, 0.05), transparent 40%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

h1,
h2,
h3,
.display {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.05;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--ember);
}

.accent {
    color: var(--yellow);
}
/* ============================================================
   🔥 PROFESSIONAL NAVIGATION - Q CRACKERS THEME COLORS
   ============================================================ */

/* ---------- TOP BAR ---------- */
.top-bar {
    background: linear-gradient(90deg, #8b3a2a, var(--ember));
    color: #fff;
    font-size: 0.78rem;
    padding: 6px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.top-bar-contacts {
    display: flex;
    gap: 20px;
}

.top-bar-contacts a {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.top-bar-contacts a:hover {
    color: var(--yellow);
}

.top-bar-msg {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* ---------- HEADER ---------- */
.site-header {
    background: #fffdf8;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    background: #fffdf8;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    transform: scale(1.4);
    transform-origin: left center;
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--yellow);
}

/* Nav Top Right */
.nav-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-top-phone {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-top-phone i {
    color: var(--ember);
}

.header-cart {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.header-cart:hover {
    border-color: var(--yellow);
    background: #fffdf5;
}

.header-cart i {
    color: var(--ember);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--ember);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* ---------- NAV BOTTOM - PROFESSIONAL WITH THEME COLORS ---------- */
.nav-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    background: #fffdf8;
    border-top: 1px solid var(--border);
    gap: 20px;
    min-height: 52px;
}

/* All Categories - Theme Colors */
.all-categories {
    position: relative;
    flex-shrink: 0;
}

.all-categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8B0000, #cc0000);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    height: 42px;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
}

.all-categories-btn:hover {
    background: linear-gradient(135deg, #a00000, #e60000);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
    transform: translateY(-1px);
}

.all-categories-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
    color: var(--yellow);
}

.all-categories-btn.active i {
    transform: rotate(180deg);
}

.all-categories-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 220px;
    padding: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    display: none;
    z-index: 100;
}

.all-categories-menu.open {
    display: block;
}

.all-categories-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.all-categories-menu a i {
    color: var(--yellow);
    font-size: 0.9rem;
    width: 20px;
}

.all-categories-menu a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--ember);
}

/* ============================================================
   MOBILE NAV - ALL 3 ITEMS IN ONE ROW
   All Categories | Download Price List | Hamburger
   ============================================================ */
@media (max-width: 768px) {

    .nav-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        padding: 6px 10px;
        min-height: 50px;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
    }

    /* All Categories */
    .all-categories {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
    }

    .all-categories-btn {
        width: 100%;
        height: 36px;
        padding: 6px 8px;
        font-size: 0.72rem;
        justify-content: center;
        white-space: nowrap;
        box-sizing: border-box;
    }

    /* Download + Hamburger */
    .nav-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
    }

    /* Download Price List */
    .nav-actions .btn {
        width: auto;
        height: 36px;
        padding: 6px 9px;
        font-size: 0.65rem;
        line-height: 1;
        white-space: nowrap;
        gap: 4px;
        box-sizing: border-box;
    }

    .nav-actions .btn i {
        font-size: 0.62rem;
    }

    /* Hamburger */
    .nav-actions .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0;
        flex: 0 0 36px;
        box-sizing: border-box;
    }

    .nav-actions .hamburger span {
        width: 17px;
    }
}@media (max-width: 480px) {

    .nav-bottom {
        gap: 5px;
        padding: 5px 8px;
    }

    .all-categories-btn {
        height: 34px;
        padding: 5px 7px;
        font-size: 0.65rem;
    }

    .nav-actions {
        gap: 4px;
    }

    .nav-actions .btn {
        height: 34px;
        padding: 5px 7px;
        font-size: 0.58rem;
    }

    .nav-actions .btn i {
        font-size: 0.55rem;
    }

    .nav-actions .hamburger {
        width: 34px;
        height: 34px;
        min-width: 34px;
        flex-basis: 34px;
    }

    .nav-actions .hamburger span {
        width: 16px;
    }
}
/* ============================================================
   🔥 MAIN NAV - CENTERED
   ============================================================ */

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center; /* ← This centers the nav links */
}

.main-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.main-nav ul li a:hover {
    background: rgba(212, 175, 55, 0.06);
    color: var(--text);
}

.main-nav ul li a.active {
    background: rgba(212, 175, 55, 0.08);
    color: var(--ember);
    font-weight: 600;
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
}/* ============================================================
   🔥 MOBILE - NAV LINKS LEFT ALIGNED
   ============================================================ */

@media (max-width: 992px) {
    .main-nav {
        justify-content: flex-start; /* Left align on mobile */
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
        justify-content: flex-start;
        width: 100%;
    }

    .main-nav ul li a.active::after {
        display: none; /* Remove underline on mobile */
    }
}
/* Nav Actions - Theme Colors */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
    color: #1a1200;
    border: none;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    height: 42px;
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.25);
}

.nav-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.4);
}

.nav-actions .btn i {
    font-size: 0.85rem;
}

/* Hamburger - Theme Colors */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    border-color: var(--yellow);
    background: rgba(255, 212, 0, 0.06);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   🔥 MOBILE RESPONSIVE - THEME COLORS
   ============================================================ */

@media (max-width: 992px) {
    .nav-bottom {
        padding: 0 16px;
        min-height: 56px;
        gap: 12px;
    }

    .main-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 16px 20px;
        border-top: 1px solid var(--border);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        z-index: 99;
    }

    .main-nav.active {
        display: block !important;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav ul li a {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
        justify-content: flex-start;
    }

    .main-nav ul li a.active::after {
        display: none;
    }

    .hamburger {
        display: flex !important;
    }

    .top-bar-msg {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
        padding: 4px 16px;
    }

    .top-bar-contacts {
        gap: 12px;
    }

    .top-bar-contacts a {
        font-size: 0.7rem;
    }

    .logo-img {
        height: 60px;
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {
    .nav-top {
        padding: 8px 16px;
    }

    .logo-img {
        height: 50px;
        transform: scale(1.2);
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-top-phone {
        display: none;
    }

    .header-cart {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .all-categories-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
        height: 38px;
    }

    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        height: 38px;
    }

    .nav-actions .btn i {
        font-size: 0.7rem;
    }

    .all-categories-menu {
        min-width: 200px;
        left: 0;
        right: auto;
    }

    .hamburger {
        width: 38px;
        height: 38px;
    }

    .hamburger span {
        width: 18px;
    }
}

@media (max-width: 480px) {
    .nav-bottom {
        padding: 0 10px;
        gap: 6px;
        min-height: 48px;
    }

    .all-categories-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        height: 34px;
        gap: 4px;
    }

    .all-categories-btn i {
        font-size: 0.55rem;
    }

    .nav-actions .btn {
        padding: 6px 12px;
        font-size: 0.65rem;
        height: 34px;
        gap: 4px;
    }

    .nav-actions .btn i {
        font-size: 0.6rem;
    }

    .hamburger {
        width: 34px;
        height: 34px;
    }

    .hamburger span {
        width: 16px;
        height: 1.5px;
    }

    .main-nav {
        padding: 12px 14px;
    }

    .main-nav ul li a {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .all-categories-menu {
        min-width: 180px;
        left: -10px;
        right: -10px;
        width: auto;
    }

    .all-categories-menu a {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .logo-img {
        height: 42px;
        transform: scale(1.1);
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .top-bar-contacts a {
        font-size: 0.6rem;
    }
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--ember);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
}

.cart-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, #8b3a2a, var(--ember));
    color: #fff;
}

.cart-modal-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 1.15rem;
    text-transform: none;
}

.cart-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.cart-modal-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.3);
}

.cart-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

.cart-empty-msg {
    text-align: center;
    color: var(--text-muted);
    padding: 30px 0;
}

.cart-modal-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-modal-table th {
    text-align: left;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 6px;
    border-bottom: 2px solid var(--border);
}

.cart-modal-table td {
    padding: 12px 6px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    vertical-align: middle;
}

.cm-qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cm-qty-stepper button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--yellow);
    font-weight: 700;
}

.cm-delete {
    color: #d33;
    font-size: 1rem;
    cursor: pointer;
}

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

.cart-modal-totals {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.cart-modal-totals strong {
    color: var(--text);
}

.cart-modal-totals .cart-modal-overall strong {
    color: var(--ember);
    font-size: 1.05rem;
}

.cart-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 560px) {
    .cart-modal-actions {
        flex-direction: column-reverse;
    }

    .cart-modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all .2s ease;
}

.icon-btn:hover {
    color: var(--yellow);
    border-color: var(--border-strong);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--yellow);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
    color: #1a1200;
    box-shadow: 0 8px 24px rgba(255, 201, 60, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 201, 60, 0.4);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--card);
    color: var(--card);
    background: rgba(255, 201, 60, 0.06);
}

/* ============================================================
   ORDER FORM (Client Information) — ADD-ON STYLES
   Paste this whole block at the very END of your existing style.css
   ============================================================ */

.client-info-section {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 22px;
}

.client-info-section h3,
.order-details-heading {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--ember);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-details-heading {
    margin: 4px 0 14px;
}

.client-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.client-info-section .field input,
.client-info-section .field select,
.client-info-section .field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.2s ease;
}

.client-info-section .field input:focus,
.client-info-section .field select:focus,
.client-info-section .field textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.client-info-section .field-full {
    margin-bottom: 6px;
}

.client-info-section textarea {
    resize: vertical;
    min-height: 56px;
}

.client-form-error {
    display: none;
    align-items: center;
    gap: 8px;
    color: #c0392b;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.82rem;
    margin-top: 4px;
}

.client-form-error.show {
    display: flex;
}

@media (max-width: 560px) {
    .client-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Send to WhatsApp button ---- */
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    background: #21bd5c;
}

/* ============================================================
   TWO-MODAL CHECKOUT FLOW
   ============================================================ */

/* ---- Shopping Cart modal totals: two columns ---- */
.cart-modal-totals {
    justify-content: space-between;
    align-items: flex-start;
}

.cart-modal-totals-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-modal-totals-col.align-right {
    align-items: flex-end;
    text-align: right;
}

.cart-modal-minorder {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2ecc71;
}

.cart-modal-minorder strong {
    color: #2ecc71;
}

@media (max-width: 560px) {
    .cart-modal-totals {
        flex-direction: column;
        gap: 10px;
    }

    .cart-modal-totals-col.align-right {
        align-items: flex-start;
        text-align: left;
    }
}

/* ---- Order Summary modal: order details meta strip ---- */
.order-summary-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 4px 0 18px;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-summary-meta-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-summary-meta-col.align-right {
    align-items: flex-end;
    text-align: right;
}

.order-summary-meta strong {
    color: var(--text);
}

.os-overall strong {
    color: var(--ember);
    font-size: 1.05rem;
}

@media (max-width: 560px) {
    .order-summary-meta {
        flex-direction: column;
    }

    .order-summary-meta-col.align-right {
        align-items: flex-start;
        text-align: left;
    }
}
/* ============================================================
   🔥 FIX: ORDER SUMMARY MODAL - FULLY RESPONSIVE
   ============================================================ */

/* Force Order Summary table to be responsive */
#order-summary-modal .cart-modal-content {
    max-width: 800px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#order-summary-modal .cart-modal-body {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1;
}

/* Order Summary Table - Desktop */
#os-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    display: table;
}

#os-table thead {
    display: table-header-group;
}

#os-table thead th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid var(--border);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #555;
    background: #f8f4ef;
}

#os-table tbody {
    display: table-row-group;
}

#os-table tbody tr {
    display: table-row;
    border-bottom: 1px solid var(--border);
}

#os-table tbody td {
    display: table-cell;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    font-size: 0.85rem;
}

#os-table tfoot {
    display: table-footer-group;
}

#os-table tfoot tr {
    display: table-row;
}

#os-table tfoot td {
    display: table-cell;
    padding: 12px 12px;
}

/* ============================================================
   🔥 MOBILE: ORDER SUMMARY TABLE - STACK VIEW
   ============================================================ */

@media (max-width: 768px) {
    /* Force table to stack on mobile */
    #os-table,
    #os-table thead,
    #os-table tbody,
    #os-table tr,
    #os-table td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    #os-table thead {
        display: none !important;
    }

    #os-table tbody tr {
        display: block !important;
        margin-bottom: 12px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 12px 14px;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        width: 100% !important;
    }

    #os-table tbody td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 6px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 0.82rem !important;
        width: 100% !important;
        text-align: left !important;
    }

    #os-table tbody td:last-child {
        border-bottom: none !important;
    }

    #os-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
        margin-right: 12px;
    }

    /* Fix for tfoot on mobile */
    #os-table tfoot {
        display: block !important;
        margin-top: 10px;
        width: 100% !important;
    }

    #os-table tfoot tr {
        display: block !important;
        padding: 12px 14px;
        background: #f8f4ef;
        border-radius: var(--radius-sm);
        width: 100% !important;
    }

    #os-table tfoot td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 4px 0 !important;
        border: none !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        text-align: left !important;
    }

    /* Grand Total row */
    .os-grand-total-row td {
        font-size: 1rem !important;
        font-weight: 700 !important;
    }

    .os-grand-total-row td:last-child {
        color: var(--ember);
        font-weight: 700 !important;
    }
}

/* ============================================================
   🔥 EXTRA SMALL PHONES
   ============================================================ */

@media (max-width: 480px) {
    #order-summary-modal .cart-modal-body {
        padding: 10px 12px;
    }

    #os-table tbody td {
        font-size: 0.75rem !important;
        padding: 4px 0 !important;
    }

    #os-table tbody td::before {
        font-size: 0.6rem !important;
    }

    #os-table tbody tr {
        padding: 8px 10px !important;
        margin-bottom: 8px;
    }

    #os-table tfoot tr {
        padding: 8px 10px !important;
    }

    #os-table tfoot td {
        font-size: 0.8rem !important;
        padding: 3px 0 !important;
    }

    .os-grand-total-row td {
        font-size: 0.9rem !important;
    }

    .order-summary-meta {
        flex-direction: column !important;
        padding: 10px 12px !important;
        gap: 6px !important;
    }

    .order-summary-meta-col.align-right {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .os-overall {
        font-size: 0.95rem !important;
    }

    /* Client info grid - single column */
    .client-info-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .client-info-section {
        padding: 12px 14px !important;
    }

    .client-info-section .field input,
    .client-info-section .field select,
    .client-info-section .field textarea {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
    }

    /* Modal action buttons */
    #order-summary-modal .cart-modal-actions {
        flex-direction: column !important;
    }

    #order-summary-modal .cart-modal-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
    }

    #order-summary-modal .cart-modal-header h2 {
        font-size: 0.85rem !important;
    }

    #order-summary-modal .cart-modal-footer {
        padding: 10px 14px !important;
    }
}

/* ============================================================
   🔥 CART MODAL - ALSO FIX RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    /* Shopping Cart Modal Table */
    #cart-modal-table,
    #cart-modal-table thead,
    #cart-modal-table tbody,
    #cart-modal-table tr,
    #cart-modal-table td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    #cart-modal-table thead {
        display: none !important;
    }

    #cart-modal-table tbody tr {
        display: block !important;
        margin-bottom: 10px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 10px 12px;
        background: #fafafa;
        width: 100% !important;
    }

    #cart-modal-table tbody td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 5px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 0.82rem !important;
        width: 100% !important;
        text-align: left !important;
    }

    #cart-modal-table tbody td:last-child {
        border-bottom: none !important;
    }

    #cart-modal-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
        margin-right: 10px;
    }

    .cart-modal-totals {
        flex-direction: column !important;
    }

    .cart-modal-totals-col.align-right {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .cart-modal-actions {
        flex-direction: column !important;
    }

    .cart-modal-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    #cart-modal-table tbody td {
        font-size: 0.75rem !important;
        padding: 4px 0 !important;
    }

    #cart-modal-table tbody td::before {
        font-size: 0.6rem !important;
    }

    #cart-modal-table tbody tr {
        padding: 8px 10px !important;
    }

    #cart-modal-table .cm-qty-stepper button {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.8rem !important;
    }
}
/* ---- Order Summary table grand-total row ---- */
.os-grand-total-row td {
    font-weight: 700;
    color: var(--ember);
    border-top: 2px solid var(--border);
    padding-top: 12px;
}

.os-grand-total-row td:first-child {
    text-align: right;
}

/* ---- Bottom bar minimum-order badge ---- */
.min-order-badge {
    font-size: 0.78rem;
    font-weight: 600;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.25);
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .min-order-badge {
        order: 4;
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   HEADER — RESPONSIVE FIX (logo scaling + mobile nav-bottom row)
   Fixes the oversized/overflowing logo and the cramped
   "All Categories / Order Now / hamburger" row on narrow screens
   (index.html, and any other page using the same header markup).
   ============================================================ */

/* Base: keep the enlarged logo, but let it scale with the viewport
   instead of a fixed px height + fixed transform. */
.logo-img {
    height: clamp(48px, 14vw, 80px);
    width: auto;
    top: 0;
    transform: scale(1.4);
    transform-origin: left center;
}

.logo {
    min-height: 56px;
    display: flex;
    align-items: center;
}

@media (max-width: 900px) {
    .nav-top {
        padding: 12px 16px;
    }

    .logo-img {
        transform: scale(1.3);
    }

    .header-cart {
        padding: 7px 12px;
        font-size: 0.82rem;
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: clamp(46px, 16vw, 64px);
        transform: scale(1.2);
    }

    .nav-top-right {
        gap: 12px;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: clamp(42px, 18vw, 56px);
        transform: scale(1.1);
    }

    .header-cart span {
        font-size: 0.78rem;
    }
}

/* ---- Top bar: center phone + email on mobile ---- */
@media (max-width: 700px) {
    .top-bar-contacts {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-bar-contacts {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
}

/* ---- Mobile nav-bottom: tidy two-row layout ---- */
@media (max-width: 900px) {
    .nav-bottom {
        flex-wrap: wrap;
        row-gap: 10px;
        padding: 12px 16px;
    }

    .all-categories {
        order: 1;
        flex: 1 1 100%;
    }

    .all-categories-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 16px;
        font-size: 0.85rem;
    }

    .all-categories-menu {
        left: 0;
        right: 0;
        width: 100%;
    }

    .nav-actions {
        order: 2;
        flex: 1 1 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 11px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: 50%;
        background: var(--bg-elevated);
    }
}

@media (max-width: 420px) {

    .all-categories-btn,
    .nav-actions .btn {
        font-size: 0.78rem;
        padding: 10px 12px;
    }

    .hamburger {
        width: 38px;
        height: 38px;
    }
}

.btn-download {
    background: #b87333;
    color: #fff;
    border: 2px solid #b87333;
    transition: 0.3s ease;
}

.btn-download:hover {
    background: #8e592b;
    border-color: #8e592b;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #b87333;
    border: 2px solid #b87333;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #b87333;
    color: #fff;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 90px 0 60px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    margin: 18px 0;
}

.hero h1 .glow {
    color: var(--yellow);
    text-shadow: 0 0 30px rgba(255, 201, 60, 0.5);
}

.hero p.lede {
    color: var(--text-muted);
    max-width: 480px;
    font-size: 1.02rem;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-cta a {
    margin-top: 35px;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-phone strong {
    color: var(--card-hover);
}

.hero-stage {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burst-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.burst-ring.r2 {
    width: 300px;
    height: 300px;
    border-style: dashed;
    border-color: var(--border-strong);
    animation: spin 40s linear infinite;
}

.burst-ring.r3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.12), transparent 70%);
    border: none;
}

.cracker-visual {
    position: relative;
    width: 130px;
    height: 340px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2a2410, #0a0a0a 60%);
    border: 2px solid var(--yellow);
    box-shadow: var(--shadow-glow);
    animation: float 5s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.cracker-visual .cap {
    width: 100%;
    height: 26px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-bright));
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: -2px;
    left: 0;
}

.cracker-visual .brand-ring {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 0.7rem;
    color: var(--yellow-bright);
    margin-top: 20px;
}

.spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow-bright);
    box-shadow: 0 0 10px 3px var(--ember-soft);
    animation: spark-pop 2.4s ease-in-out infinite;
}

@keyframes spark-pop {

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

    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

/* ---------- TOP BANNER CAROUSEL ---------- */

/* ============================================================
   SECTION: INTRO - IMAGE LEFT / CONTENT RIGHT
   All styles for the intro section moved from inline to CSS
   ============================================================ */

/* ----- IMAGE BOX ----- */
.img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.img-box img {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    filter: drop-shadow(0 20px 35px rgba(255, 201, 60, 0.25));
    transition: transform 0.4s ease;
    align-items: center;
    text-align: center;
    justify-content: center;
}

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

/* ============================================================
   CONTENT FLEX - REVERSE (Image Right / Content Left)
   ============================================================ */

.content-flex {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

/* Reverse Layout - Image on Right, Content on Left */
.content-flex-reverse {
    grid-template-columns: 1.15fr 0.85fr;
}

/* IMAGE BOX - Right Side */
.content-flex-reverse .img-box {
    order: 2;
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-flex-reverse .img-box img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 35px rgba(255, 201, 60, 0.25));
    transition: transform 0.4s ease;
}

.content-flex-reverse .img-box img:hover {
    transform: scale(1.05);
}

/* Content - Left Side */
.content-flex-reverse .reveal {
    order: 1;
}

.content-flex-reverse .reveal h2 {
    font-size: 3rem;
    margin: 14px 0 16px;
}

.content-flex-reverse .reveal .lede {
    max-width: 520px;
    font-size: 18px;
}

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

@media (max-width: 900px) {

    .content-flex,
    .content-flex-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-flex-reverse .img-box {
        order: -1;
        height: auto;
        min-height: 250px;
        padding: 10px;
    }

    .content-flex-reverse .img-box img {
        max-width: 300px;
    }

    .content-flex-reverse .reveal {
        order: 2;
    }

    .content-flex-reverse .reveal h2 {
        font-size: 1.6rem;
    }

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

    .icon-feature {
        margin-bottom: 14px;
    }

    .icon-feature:last-child {
        margin-bottom: 0;
    }

    .icon-feature .ic {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .icon-feature strong {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .content-flex-reverse .reveal h2 {
        font-size: 1.4rem;
    }

    .content-flex-reverse .img-box img {
        max-width: 260px;
    }

    .icon-feature .ic {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .icon-feature strong {
        font-size: 14px;
    }

    .icon-feature p {
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        justify-content: center;
    }
}

/* ============================================================
   TOP BANNER CAROUSEL - ATTRACTIVE DESIGN
   ============================================================ */

.hero-carousel {
    position: relative;
    height: 580px;
    overflow: hidden;
    border-bottom: 3px solid var(--border-strong);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Background Gradient Overlay - Lighter for better image visibility */
.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(10, 10, 10, 0.75) 0%,
            rgba(10, 10, 10, 0.40) 40%,
            rgba(10, 10, 10, 0.20) 70%,
            rgba(10, 10, 10, 0.50) 100%);
    z-index: 1;
}

/* Gold glow overlay */
.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.05), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Slide Images */
.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.85) saturate(1.05);
    transition: transform 8s ease;
}

.carousel-slide:hover .slide-img {
    transform: scale(1.05);
}

/* Slide Content - Enhanced */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 0 24px;
    animation: slideFadeUp 0.8s ease forwards;
}

@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.slide-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 18px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 16px;
}

.slide-content .eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
}

.slide-content h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin: 14px 0 18px;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.slide-content h2 .accent {
    color: var(--yellow);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Slide Buttons - Enhanced */
.slide-content .btn {
    padding: 16px 36px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.slide-content .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

/* ============================================================
   CAROUSEL ARROWS - Enhanced
   ============================================================ */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
    background: var(--yellow);
    color: #1a1200;
    border-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
}

.carousel-arrow.prev {
    left: 24px;
}

.carousel-arrow.next {
    right: 24px;
}

/* ============================================================
   CAROUSEL DOTS - Enhanced
   ============================================================ */

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

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-dots .dot.active {
    background: var(--yellow);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    border-color: var(--yellow);
}

/* ============================================================
   SLIDE SPECIFIC BACKGROUND COLORS (Fallback)
   ============================================================ */

.slide-1 {
    background: linear-gradient(135deg, #1a0e08, #0a0a0a);
}

.slide-2 {
    background: linear-gradient(135deg, #1a1208, #0a0a0a);
}

.slide-3 {
    background: linear-gradient(135deg, #121008, #0a0a0a);
}

.slide-4 {
    background: linear-gradient(135deg, #0e1208, #0a0a0a);
}

.slide-5 {
    background: linear-gradient(135deg, #180e08, #0a0a0a);
}

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

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

    .carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .carousel-arrow.prev {
        left: 16px;
    }

    .carousel-arrow.next {
        right: 16px;
    }

    .slide-content h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .slide-content p {
        font-size: 0.95rem;
    }
}

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

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .carousel-arrow.prev {
        left: 10px;
    }

    .carousel-arrow.next {
        right: 10px;
    }

    .slide-content .eyebrow {
        font-size: 0.65rem;
        padding: 4px 14px;
        letter-spacing: 2px;
    }

    .slide-content h2 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        margin: 10px 0 14px;
    }

    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .slide-content .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .carousel-dots {
        bottom: 16px;
        gap: 8px;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
}

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

    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .carousel-arrow.prev {
        left: 6px;
    }

    .carousel-arrow.next {
        right: 6px;
    }

    .slide-content {
        padding: 0 16px;
    }

    .slide-content .eyebrow {
        font-size: 0.55rem;
        padding: 3px 10px;
        letter-spacing: 1.5px;
        gap: 6px;
    }

    .slide-content .eyebrow::before {
        width: 14px;
    }

    .slide-content h2 {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        margin: 8px 0 10px;
    }

    .slide-content p {
        font-size: 0.75rem;
        margin-bottom: 14px;
    }

    .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .carousel-dots {
        bottom: 10px;
        gap: 6px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }
}

/* ---------- CONTENT FLEX (image left / copy right) ---------- */
.content-flex {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.content-flex .img-box {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 28px;
}

.icon-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.icon-feature .ic {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 201, 60, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-feature strong {
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.icon-feature p {
    color: var(--text-muted);
    font-size: 1rem;
}

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

    .content-flex {
        grid-template-columns: 1fr;
    }

    .content-flex .img-box {
        height: 280px;
        order: -1;
    }

    .icon-features {
        grid-template-columns: 1fr;
    }
}

/* ---------- SECTION HEADERS ---------- */
.section {
    padding: 84px 0;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin: 14px 0;
}

.section-head p {
    color: var(--text-muted);
}

/* ============================================================
   CATEGORY CARDS - CRACKER PREVIEW
   ============================================================ */
/* ============================================================
   CATEGORIES - RECTANGLE IMAGES WITH OVERLAY
   ============================================================ */

.categories-section {
    background: var(--bg-white);
    padding: 80px 0;
}

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

.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Category Image - Rectangle */
.category-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-elevated);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Overlay on Image */
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    transition: all 0.3s ease;
}

.category-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.category-overlay span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay span {
    gap: 10px;
    color: var(--yellow-bright);
}

/* Badge on top left (Optional) */
.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--yellow);
    color: #1a1200;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

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

    .category-image {
        height: 160px;
    }

    .category-overlay {
        padding: 14px 12px 12px;
    }

    .category-overlay h3 {
        font-size: 0.9rem;
    }

    .category-overlay span {
        font-size: 0.7rem;
    }
}

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

    .category-image {
        height: 140px;
    }

    .category-overlay {
        padding: 10px 10px 10px;
    }

    .category-overlay h3 {
        font-size: 0.8rem;
    }

    .category-overlay span {
        font-size: 0.65rem;
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background: var(--card-hover);
}

.card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 201, 60, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card .cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 201, 60, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.card:hover .cat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 201, 60, 0.15);
    border-color: var(--yellow);
}

.card h3 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: none;
    margin-bottom: 8px;
    letter-spacing: 0;
    color: var(--text);
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 16px 0;
}

/* CRACKER PREVIEW - Small icons at bottom */
.cracker-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--yellow);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.card:hover .cracker-preview {
    opacity: 1;
    border-top-color: var(--border-strong);
}


/* Stagger animation for multiple icons */
.cracker-preview i:nth-child(1) {
    transition-delay: 0s;
}

.cracker-preview i:nth-child(2) {
    transition-delay: 0.05s;
}

.cracker-preview i:nth-child(3) {
    transition-delay: 0.1s;
}

.card:hover .cracker-preview i:nth-child(1) {
    transform: translateY(-4px) rotate(-10deg);
}

.card:hover .cracker-preview i:nth-child(2) {
    transform: translateY(-4px) scale(1.1);
}

.card:hover .cracker-preview i:nth-child(3) {
    transform: translateY(-4px) rotate(10deg);
}

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

@media (max-width: 560px) {
    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .card {
        padding: 18px;
    }

    .card .cat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .card h3 {
        font-size: 0.9rem;
    }

    .card p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .cracker-preview i {
        font-size: 0.9rem;
    }

    .cracker-preview {
        gap: 5px;
        padding-top: 8px;
    }
}


/* ============================================================
   PRODUCT TABLE - WHITE THEME
   ============================================================ */

.catalog-info {
    background: #fffdf8;
    padding: 40px 0 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.catalog-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.catalog-info-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.catalog-info-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    color: #1a0e08;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.catalog-info-content h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b87333);
    border-radius: 2px;
}

.catalog-info-content .catalog-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2f241b;
    margin: 16px 0 4px;
}

.catalog-info-content .catalog-tagline i {
    color: #d4af37;
    margin-right: 6px;
}

.catalog-info-content .catalog-desc {
    font-size: 0.95rem;
    color: #7b6a58;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .catalog-info {
        padding: 25px 0 20px;
    }

    .catalog-info-content h2 {
        font-size: 1.6rem;
    }

    .catalog-info-content .catalog-tagline {
        font-size: 0.95rem;
    }

    .catalog-info-content .catalog-desc {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .state-badge {
        font-size: 0.78rem;
        padding: 6px 16px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .catalog-info-content h2 {
        font-size: 1.3rem;
    }

    .catalog-info-content .catalog-tagline {
        font-size: 0.85rem;
    }

    .catalog-info-content .catalog-desc {
        font-size: 0.78rem;
    }

    .state-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }
}

.catalog-toolbar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* ============================================================
   SEARCH BOX - FIX ICON
   ============================================================ */

.search-box {
    flex: 1;
    min-width: 220px;
    position: relative;
}

/* Search Icon - Position inside input */
.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a08d78;
    font-size: 0.95rem;
    z-index: 2;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 13px 16px 13px 44px;
    /* ← Added left padding for icon */
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.search-box input::placeholder {
    color: #a08d78;
}

/* ==========================
   CATEGORY FILTER
========================== */

.category-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-box label {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.category-box select {
    min-width: 180px;
    height: 46px;
    padding: 0 42px 0 18px;

    background: var(--bg-white);
    color: var(--text);

    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: .92rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;

    transition: .3s ease;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Custom Arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b87333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.category-box select:hover {
    border-color: var(--ember);
    box-shadow: 0 4px 14px rgba(184, 115, 51, .15);
}

.category-box select:focus {
    border-color: var(--ember);
    box-shadow: 0 0 0 4px rgba(184, 115, 51, .12);
}

.category-box option {
    background: #fff;
    color: var(--text);
}

@media (max-width:768px) {

    .category-box {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .category-box label {
        margin-bottom: 4px;
    }

    .category-box select {
        width: 100%;
    }

}

.min-order-note {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================================
   Q CRACKERS - PRODUCT PAGE STYLES (CLEAN VERSION)
   ============================================================ */

/* ---------- CATEGORY SECTIONS ---------- */
.cat-section {
    margin-bottom: 40px;
}

.cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #8B0000, #cc0000);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.cat-header h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0;
}

.cat-header h3 i {
    color: var(--yellow);
    margin-right: 8px;
}

.cat-header .offer-tag {
    background: rgba(255, 212, 0, 0.2);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--yellow);
    border: 1px solid rgba(255, 212, 0, 0.2);
}

/* ---------- TABLE WRAPPER ---------- */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: #ffffff;
}

/* ---------- PRODUCT TABLE ---------- */
.product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #ffffff;
    min-width: 700px;
}

/* Table Header */
.product-table thead {
    background: #f8f4ef;
    border-bottom: 2px solid var(--border);
}

.product-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Table Body */
.product-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.product-table tbody tr:hover {
    background: #faf7f2;
}

.product-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    color: var(--text);
}

/* ---------- S.NO COLUMN ---------- */
.product-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* ---------- IMAGE COLUMN ---------- */
.product-image {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: block;
    background: #fff;
}

/* ---------- PRODUCT NAME COLUMN ---------- */
.product-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.88rem;
    display: block;
}

.product-table .sub {
    color: var(--text-dim);
    font-size: 0.75rem;
    display: block;
    margin-top: 2px;
}

/* ---------- PRICE COLUMN ---------- */
.product-table del {
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-right: 6px;
    text-decoration: line-through;
}

.product-table .price-tag {
    color: #e60000;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ---------- QUANTITY STEPPER ---------- */
.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #f8f4ef;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    border: none;
    cursor: pointer;
}

.qty-btn:hover {
    background: rgba(212, 175, 55, 0.15);
}

.qty-btn.minus:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.qty-btn.plus:hover {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: #ffffff;
    color: var(--text);
    font-size: 0.9rem;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
}

/* ---------- AMOUNT COLUMN ---------- */
.row-amount {
    font-weight: 700;
    color: #e60000;
    font-size: 0.95rem;
}

/* ---------- NO RESULTS ---------- */
.no-results-msg {
    text-align: center;
    padding: 30px 0;
    color: var(--text-muted);
}

.no-results-msg i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    color: var(--border-strong);
}

/* ---------- LOADING SPINNER ---------- */
.loading-spinner {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}

.loading-spinner i {
    font-size: 2rem;
    color: var(--yellow);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   MOBILE RESPONSIVE - STACK VIEW
   ============================================================ */
@media (max-width: 768px) {

    /* Hide table header */
    .product-table thead {
        display: none;
    }

    /* Each row becomes a card */
    .product-table,
    .product-table tbody,
    .product-table tr,
    .product-table td {
        display: block;
        width: 100%;
    }

    .product-table {
        min-width: 100%;
    }

    .product-table tbody tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 14px 16px;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .product-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.85rem;
        width: 100%;
    }

    .product-table tbody td:last-child {
        border-bottom: none;
    }

    /* Add labels before each field */
    .product-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
        margin-right: 12px;
    }

    /* Image in mobile */
    .product-table tbody td .product-image {
        width: 50px;
        height: 50px;
    }

    /* Qty stepper mobile */
    .product-table tbody td .qty-stepper .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .product-table tbody td .qty-stepper .qty-input {
        width: 36px;
        font-size: 0.8rem;
    }

    /* Cat header mobile */
    .cat-header {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 6px;
    }

    .cat-header h3 {
        font-size: 0.95rem;
    }

    .cat-header .offer-tag {
        font-size: 0.6rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .product-table tbody td {
        font-size: 0.78rem;
        padding: 6px 0;
    }

    .product-table tbody td::before {
        font-size: 0.6rem;
    }

    .product-table tbody td .product-image {
        width: 40px;
        height: 40px;
    }

    .product-table tbody td .qty-stepper .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .product-table tbody td .qty-stepper .qty-input {
        width: 30px;
        font-size: 0.7rem;
    }

    .product-table tbody tr {
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .cat-header {
        padding: 10px 12px;
    }

    .cat-header h3 {
        font-size: 0.85rem;
    }
}

/* ============================================================
   CART SUMMARY BAR - FIXED
   ============================================================ */

.cart-summary-bar {
    position: sticky;
    bottom: 0;
    z-index: 90;
    background: #ffffff;
    border-top: 2px solid var(--border-strong);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.cart-summary-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 20px;
    flex-wrap: wrap;
    max-width: var(--max-w);
    margin: 0 auto;
}

.cart-stat {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.cart-stat strong {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 700;
}

.min-order-badge {
    font-size: 0.65rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
}

/* Submit Button Container */
.submit-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: auto;
}

.btn-submit-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

.btn-submit-enabled {
    opacity: 1;
    cursor: pointer !important;
    pointer-events: auto;
}

.btn-submit-enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.3);
}

.min-order-warning {
    display: none;
    align-items: center;
    gap: 6px;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 0.7rem;
}

.min-order-warning.show {
    display: flex;
}

/* ============================================================
   RESPONSIVE - CART SUMMARY
   ============================================================ */
@media (max-width: 768px) {
    .cart-summary-inner {
        gap: 12px;
        padding: 10px 14px;
        justify-content: center;
    }

    .cart-stat strong {
        font-size: 0.95rem;
    }

    .submit-container {
        width: 100%;
        align-items: stretch;
        margin-left: 0;
    }

    .submit-container .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cart-summary-inner {
        gap: 8px;
        padding: 8px 10px;
    }

    .cart-stat strong {
        font-size: 0.85rem;
    }

    .cart-stat span {
        font-size: 0.6rem;
    }

    .submit-container .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* ============================================================
   HIDE SOCIAL FLOATING ICONS ON MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .social-float {
        display: none !important;
    }
}

/*=======================================
Guide Index
========================================*/
.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

/* Column Styles */
.guide-column {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    padding: 30px 25px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.guide-column:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.do-column {
    border-top: 4px solid #2ecc71;
}

.dont-column {
    border-top: 4px solid #e74c3c;
}

/* Guide Header */
.guide-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.guide-header .guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.do-column .guide-icon {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.dont-column .guide-icon {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.guide-header h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.do-column .guide-header h3 {
    color: #2ecc71;
}

.dont-column .guide-header h3 {
    color: #e74c3c;
}

.guide-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Guide Cards */
.guide-card {
    display: flex;
    gap: 16px;
    padding: 18px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    transition: all 0.3s ease;
    cursor: default;
}

.guide-card:last-child {
    margin-bottom: 0;
}

.do-card {
    background: rgba(46, 204, 113, 0.05);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.do-card:hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    transform: translateX(6px);
}

.dont-card {
    background: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.15);
}

.dont-card:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
    transform: translateX(6px);
}

/* Card Icon */
.guide-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.do-card .guide-card-icon {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.dont-card .guide-card-icon {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Card Content */
.guide-card-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}

.guide-card-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Tags */
.guide-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.do-card .guide-tag {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.dont-card .guide-tag {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.guide-tag.warning {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

/* ============================================================
   GUIDE SECTION - RESPONSIVE FIX (Do's & Don'ts)
   ============================================================ */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .guide-grid {
        gap: 24px;
    }

    .guide-column {
        padding: 24px 20px;
    }

    .guide-header h3 {
        font-size: 1.4rem;
    }
}

/* ============================================================
   GUIDE SECTION - MOBILE RESPONSIVE FIX
   ============================================================ */

/* Tablet */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guide-column {
        padding: 22px 18px;
    }

    .guide-header {
        margin-bottom: 22px;
        padding-bottom: 16px;
    }

    .guide-header h3 {
        font-size: 1.35rem;
    }

    .guide-header p {
        font-size: 0.9rem;
    }

    .guide-card {
        gap: 14px;
        padding: 16px;
    }

    .guide-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .guide-card-content h4 {
        font-size: 0.95rem;
    }

    .guide-card-content p {
        font-size: 0.84rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .guide-column {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .guide-header .guide-icon {
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
    }

    .guide-header h3 {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .guide-header p {
        font-size: 0.82rem;
    }

    .guide-card {
        gap: 12px;
        padding: 14px;
        align-items: flex-start;
    }

    .guide-card:hover {
        transform: none;
    }

    .guide-card-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .guide-card-content {
        min-width: 0;
        flex: 1;
    }

    .guide-card-content h4 {
        font-size: 0.92rem;
        line-height: 1.35;
        word-break: break-word;
    }

    .guide-card-content p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .guide-tag {
        font-size: 0.66rem;
        padding: 4px 10px;
        white-space: normal;
        line-height: 1.3;
    }
}

/* Small phones (369px) */
@media (max-width: 390px) {
    .guide-column {
        padding: 16px 12px;
    }

    .guide-card {
        padding: 12px;
    }

    .guide-card-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .guide-header h3 {
        font-size: 1.15rem;
    }

    .guide-card-content h4 {
        font-size: 0.88rem;
    }

    .guide-card-content p {
        font-size: 0.78rem;
    }

    .guide-tag {
        font-size: 0.62rem;
        padding: 4px 8px;
    }
}
/* ---------- PRODUCT TILE (with fake image block) ---------- */
.product-tile {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.product-tile:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.product-media {
    height: 180px;
    background: linear-gradient(160deg, #1c1a10, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.product-media .mini-cracker {
    width: 46px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--yellow) 0%, #2a2410 22%, #0a0a0a 100%);
    border: 1px solid var(--yellow);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ember);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 20px;
}

.product-body h3 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

.product-body .sub {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-tag {
    color: var(--yellow);
    font-weight: 700;
}

.price-tag del {
    color: var(--text-dim);
    font-weight: 400;
    font-size: 0.8rem;
    margin-right: 6px;
}

.add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--yellow);
    color: #1a1200;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.add-btn:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ============================================================
   STRIP / STATS SECTION
============================================================ */

.strip {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

/* Main Layout */
.strip-flex {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: center;
    gap: 70px;
}

/* ============================================================
   LEFT IMAGE
============================================================ */

.strip-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flowerpot-real {
    width: 100%;
    max-width: 190px;
    height: auto;
    object-fit: contain;
    animation: floatImage 3.5s ease-in-out infinite;
    transition: transform .35s ease;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .15));
}

.flowerpot-real:hover {
    transform: scale(1.05);
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* ============================================================
   RIGHT STATS
============================================================ */
.strip-stats {
    width: 100%;
}

.strip .grid-4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
}

.strip .stat {
    flex: 1;
    min-width: 170px;
    text-align: center;
}

.strip .stat span {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
    /* Important */
}


/* Divider */

.strip .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, .08);
}

/* Number */

.strip .stat b {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 5.4rem;
    color: var(--yellow);
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: .3s;
}

/* Underline Animation */

.strip .stat b::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    margin: 8px auto 0;
    background: var(--yellow);
    transition: .4s;
}

.strip .stat:hover b::after {
    width: 45px;
}

/* Label */

.strip .stat span {
    display: block;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.5;
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width:1024px) {

    .strip {
        padding: 50px 0;
    }

    .strip-flex {
        grid-template-columns: 190px 1fr;
        gap: 45px;
    }

    .flowerpot-real {
        max-width: 160px;
    }

    .strip .grid-4 {
        gap: 28px;
        grid-template-columns: repeat(4, minmax(120px, 1fr));
    }

    .strip .stat:not(:last-child)::after {
        right: -14px;
        height: 50px;
    }

    .strip .stat b {
        font-size: 2rem;
    }

    .strip .stat span {
        font-size: .82rem;
    }

}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width:768px) {

    .strip {
        padding: 40px 0;
    }

    .strip-flex {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .strip-image {
        order: -1;
    }

    .flowerpot-real {
        max-width: 140px;
    }

    .strip .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .strip .stat {
        padding: 12px;
    }

    .strip .stat::after {
        display: none;
    }

    .strip .stat b {
        font-size: 1.9rem;
    }

}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width:480px) {

    .strip {
        padding: 30px 0;
    }

    .flowerpot-real {
        max-width: 110px;
    }

    .strip .grid-4 {
        gap: 18px;
    }

    .strip .stat {
        padding: 8px;
    }

    .strip .stat b {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .strip .stat b::after {
        margin-top: 5px;
    }

    .strip .stat:hover b::after {
        width: 28px;
    }

    .strip .stat span {
        font-size: .72rem;
    }

}

/* ============================================================
   OFFER BANNER - WITH BACKGROUND IMAGE
   ============================================================ */

.offer-banner {
    background: var(--bg-white);
    border-top: 2px solid var(--border-strong);
    border-bottom: 2px solid var(--border-strong);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Background Image */
    background-image: url('./images/offerbanner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay for Text Readability */
.offer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* Gold Glow Effect */
.offer-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.offer-banner-content {
    position: relative;
    z-index: 1;
}

/* Heading - White */
.offer-banner h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
}

.offer-banner h2 .accent {
    color: var(--yellow);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Description - White */
.offer-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Offer Features - White */
.offer-features {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.offer-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.offer-features span i {
    color: var(--yellow);
    font-size: 0.9rem;
}

/* Button */
.offer-banner .btn {
    padding: 16px 40px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.offer-banner .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 45px rgba(212, 175, 55, 0.5);
}

/* Timer - White */
.offer-timer {
    margin-top: 20px;
}

.offer-timer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.offer-timer span i {
    color: var(--yellow);
}

/* ============================================================
   RESPONSIVE OFFER BANNER
   ============================================================ */

@media (max-width: 768px) {
    .offer-banner {
        padding: 50px 0;
    }

    .offer-banner::after {
        width: 400px;
        height: 400px;
    }

    .offer-banner h2 {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
    }

    .offer-banner p {
        font-size: 0.9rem;
        padding: 0 16px;
    }

    .offer-features {
        gap: 16px;
    }

    .offer-features span {
        font-size: 0.78rem;
    }

    .offer-banner .btn {
        padding: 14px 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .offer-banner {
        padding: 40px 0;
    }

    .offer-banner::after {
        width: 280px;
        height: 280px;
    }

    .offer-banner h2 {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
    }

    .offer-banner p {
        font-size: 0.82rem;
    }

    .offer-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .offer-features span {
        font-size: 0.75rem;
    }

    .offer-banner .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .offer-timer span {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* ---------- FORMS (contact) ---------- */
.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--yellow);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================
   FAQ PAGE - WHITE THEME
   ============================================================ */

/* Page Banner */
.page-banner {
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    min-height: 450px;
    background: var(--bg-white) url('./images/faq.png') no-repeat center center / cover;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.banner-content .eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow-bright);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.banner-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 12px;
    color: var(--yellow);
}

.banner-content p {
    color: var(--bg-elevated);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 24px;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bg);
    font-size: 0.9rem;
}

.banner-stats span i {
    color: var(--yellow);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

/* FAQ Search */
.faq-search {
    position: relative;
    margin-bottom: 24px;
}

.faq-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1rem;
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.faq-search input::placeholder {
    color: var(--text-dim);
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.faq-cat {
    padding: 8px 20px;
    border-radius: 999px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cat:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.faq-cat.active {
    background: var(--yellow);
    color: #fff;
    border-color: var(--yellow);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--border-strong);
}

.accordion-item.open {
    border-color: var(--yellow);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.06);
}

.accordion-q {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-q:hover {
    background: rgba(212, 175, 55, 0.04);
}

.accordion-q .faq-number {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: var(--yellow);
    opacity: 0.5;
    min-width: 32px;
}

.accordion-q .faq-title {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.accordion-q .plus {
    color: var(--yellow);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.accordion-item.open .accordion-q .plus {
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.15);
}

.accordion-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    padding: 0 22px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.accordion-item.open .accordion-a {
    max-height: 300px;
    padding: 0 22px 22px;
}

.accordion-a a {
    color: var(--yellow);
    text-decoration: underline;
}

.accordion-a a:hover {
    color: var(--yellow-bright);
}

/* FAQ Tags */
.faq-tags {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.faq-tags span {
    font-size: 0.7rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 4px;
}

.faq-tags span i {
    font-size: 0.6rem;
    color: var(--yellow);
}

/* FAQ No Results */
.faq-no-results {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    display: none;
}

.faq-no-results i {
    font-size: 2.5rem;
    color: var(--yellow);
    display: block;
    margin-bottom: 12px;
}

/* FAQ CTA */
.faq-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    margin-top: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.faq-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--yellow);
    flex-shrink: 0;
}

.faq-cta-content {
    flex: 1;
}

.faq-cta-content h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 2px;
}

.faq-cta-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-cta .btn {
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE FAQ
   ============================================================ */

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0 30px;
        min-height: 280px;
    }

    .banner-stats {
        gap: 16px;
    }

    .banner-stats span {
        font-size: 0.78rem;
    }

    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .faq-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .accordion-q {
        padding: 14px 16px;
        gap: 10px;
    }

    .accordion-q .faq-number {
        font-size: 1rem;
        min-width: 26px;
    }

    .accordion-q .faq-title {
        font-size: 0.85rem;
    }

    .accordion-a {
        padding: 0 16px;
        font-size: 0.85rem;
    }

    .accordion-item.open .accordion-a {
        padding: 0 16px 16px;
    }

    .faq-categories {
        gap: 6px;
        justify-content: center;
    }

    .faq-cat {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        min-height: 220px;
        padding: 30px 0 25px;
    }

    .banner-stats {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .faq-search input {
        padding: 14px 16px 14px 44px;
        font-size: 0.85rem;
    }

    .faq-search i {
        left: 16px;
        font-size: 0.85rem;
    }

    .faq-cta-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    columns: 4 220px;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    background: linear-gradient(160deg, #1c1a10, #0a0a0a);
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--border-strong);
}

/* ============================================================
   TESTIMONIALS - WHITE BACKGROUND (FIXED ALIGNMENT)
   ============================================================ */

/* Section Background - White */
.section.testimonials-section {
    background: var(--bg-white);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0 50px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    gap: 0;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Testimonial Card - White */
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
}

/* Location Header - Left Aligned */
.testimonial-location {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-align: left;
}

.testimonial-location i {
    color: var(--yellow);
    margin-right: 8px;
}

/* Stars - Left Aligned */
.testimonial-card .stars {
    color: var(--yellow);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-align: left;
}

/* Quote - Left Aligned */
.testimonial-card .quote {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    text-align: left;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--yellow);
    opacity: 0.4;
}

.testimonial-card .quote::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--yellow);
    opacity: 0.4;
}

/* User Info - Left Aligned */
.testimonial-card .who {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    text-align: left;
}

.testimonial-card .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-card .who strong {
    color: var(--text);
    font-size: 0.95rem;
}

/* Review Meta - Left Aligned */
.review-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.review-meta .review-badge {
    font-size: 0.7rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.08);
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(46, 204, 113, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-meta .review-date {
    font-size: 0.7rem;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   CAROUSEL ARROWS
   ============================================================ */

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-strong);
    color: var(--yellow);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-arrow:hover {
    background: var(--yellow);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.3);
}

.testimonial-arrow.prev {
    left: 0;
}

.testimonial-arrow.next {
    right: 0;
}

/* ============================================================
   CAROUSEL DOTS
   ============================================================ */

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

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-dots .dot:hover {
    background: var(--yellow);
}

.testimonial-dots .dot.active {
    background: var(--yellow);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

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

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px 18px;
        margin: 0 5px;
    }

    .testimonial-location {
        font-size: 1.2rem;
    }

    .testimonial-card .quote {
        font-size: 0.85rem;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .testimonial-arrow.prev {
        left: 5px;
    }

    .testimonial-arrow.next {
        right: 5px;
    }

    .testimonial-card .who {
        flex-direction: row;
        gap: 12px;
    }

    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 16px 14px;
        margin: 0 2px;
    }

    .testimonial-location {
        font-size: 1rem;
    }

    .testimonial-card .stars {
        font-size: 0.9rem;
    }

    .testimonial-card .quote {
        font-size: 0.8rem;
    }

    .testimonial-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .testimonial-arrow.prev {
        left: 2px;
    }

    .testimonial-arrow.next {
        right: 2px;
    }

    .testimonial-card .avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .review-meta .review-badge,
    .review-meta .review-date {
        font-size: 0.6rem;
    }
}

/* ============================================================
   REVIEWS MODAL
   ============================================================ */

.reviews-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

.reviews-modal.active {
    display: flex !important;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reviews-modal-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.reviews-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--bg-white);
}

.reviews-modal-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin: 0;
}

.reviews-modal-header h2 i {
    color: var(--yellow);
}

.reviews-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-modal-close:hover {
    background: var(--yellow);
    color: #fff;
    border-color: var(--yellow);
    transform: rotate(90deg);
}

.reviews-modal-body {
    padding: 20px 25px 25px;
    overflow-y: auto;
    flex: 1;
}

/* Custom Scrollbar */
.reviews-modal-body::-webkit-scrollbar {
    width: 6px;
}

.reviews-modal-body::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 10px;
}

.reviews-modal-body::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 10px;
}

/* Review Item */
.review-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-item:last-child {
    margin-bottom: 0;
}

.review-item:hover {
    border-color: var(--border-strong);
    transform: translateX(4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.review-info span {
    font-size: 0.78rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-info span i {
    color: var(--yellow);
}

.review-stars {
    color: var(--yellow);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-left: auto;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 54px;
}

.review-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-left: 54px;
}

.review-meta .review-badge {
    font-size: 0.7rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.08);
    padding: 2px 12px;
    border-radius: 999px;
    border: 1px solid rgba(46, 204, 113, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-meta .review-date {
    font-size: 0.7rem;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   RESPONSIVE MODAL
   ============================================================ */

@media (max-width: 768px) {
    .reviews-modal {
        padding: 10px;
    }

    .reviews-modal-content {
        max-height: 95vh;
    }

    .reviews-modal-header {
        padding: 14px 16px;
    }

    .reviews-modal-header h2 {
        font-size: 1.1rem;
    }

    .reviews-modal-body {
        padding: 14px 16px 16px;
    }

    .review-item {
        padding: 14px 16px;
    }

    .review-header {
        gap: 10px;
    }

    .review-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .review-text {
        padding-left: 0;
        font-size: 0.82rem;
    }

    .review-meta {
        padding-left: 0;
    }

    .review-stars {
        font-size: 0.75rem;
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .reviews-modal-header h2 {
        font-size: 0.95rem;
    }

    .reviews-modal-close {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .review-item {
        padding: 12px 14px;
    }

    .review-info strong {
        font-size: 0.82rem;
    }

    .review-info span {
        font-size: 0.7rem;
    }

    .review-text {
        font-size: 0.78rem;
    }

    .review-meta .review-badge,
    .review-meta .review-date {
        font-size: 0.62rem;
    }
}
/* ============================================================
   FOOTER - DARK RED + YELLOW THEME
   ============================================================ */

.site-footer {
    border-top: 3px solid var(--yellow);
    padding: 60px 0 0;
    background: linear-gradient(135deg,
            #8B0000 0%,
            #a00000 30%,
            #cc0000 60%,
            #8B0000 100%);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--yellow) 20%,
            var(--yellow-bright) 40%,
            var(--card) 60%,
            var(--yellow) 80%,
            transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 212, 0, 0.15);
}

/* Footer Logo - Text White */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-bright));
    color: #8B0000;
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(255, 212, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-mark {
    transform: rotate(360deg) scale(1.05);
}

.footer-logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-logo-text span {
    color: var(--yellow);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 20px;
}

/* Social Icons - White */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.footer-social .social-icon:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
}

.footer-social .social-icon.facebook:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.footer-social .social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5 20%, #ff543e 40%, #c837ab 60%, #7038c0 80%);
    color: #fff;
    border-color: #ff543e;
}

.footer-social .social-icon.youtube:hover {
    background: #FF0000;
    color: #fff;
    border-color: #FF0000;
}

.footer-social .social-icon.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Footer Links - White Text */
.footer-links h4,
.footer-contact h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links h4 i,
.footer-contact h4 i {
    color: var(--yellow);
    font-size: 0.9rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-links ul li a i {
    color: var(--yellow);
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--yellow);
    transform: translateX(6px);
}

.footer-links ul li a:hover i {
    transform: scale(1.2);
}
/* ============================================================
   CONTACT PAGE - WHITE THEME
   ============================================================ */

.contact-banner {
    padding: 60px 0 50px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    min-height: 550px;
    background-image: linear-gradient(rgba(41, 37, 37, 0.4)), url('./images/contact-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.contact-banner .banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.contact-banner .banner-content .eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-banner .banner-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 12px;
    color: var(--text);
}

.contact-banner .banner-content p {
    color: var(--yellow-bright);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 24px;
}

.contact-banner .banner-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-banner .banner-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-banner .banner-stats span i {
    color: var(--yellow);
    font-size: 1rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Left Side - Contact Info */
.contact-info .eyebrow {
    margin-bottom: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    margin: 14px 0 16px;
}

.contact-info>p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 420px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 0.9rem;
}

.contact-info-detail {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

.contact-info-detail a,
.contact-info-detail span {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
}

.contact-info-detail a:hover {
    color: var(--yellow);
}

/* Social */
.contact-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-social-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-social-icons {
    display: flex;
    gap: 10px;
}

.contact-social-icons .cs-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-icons .cs-icon:hover {
    transform: translateY(-3px);
}

.contact-social-icons .cs-icon.facebook:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.contact-social-icons .cs-icon.instagram:hover {
    background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5 20%, #ff543e 40%, #c837ab 60%, #7038c0 80%);
    color: #fff;
    border-color: #ff543e;
}

.contact-social-icons .cs-icon.youtube:hover {
    background: #FF0000;
    color: #fff;
    border-color: #FF0000;
}

.contact-social-icons .cs-icon.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.whatsapp-btn {
    width: 100%;
    justify-content: center;
    background: #25D366 !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-btn:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5) !important;
}

/* Right Side - Form */
.contact-form-wrapper {
    background: var(--bg-white);
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.form-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    margin-bottom: 4px;
}

.form-card>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.field label i {
    color: var(--yellow);
    margin-right: 6px;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.06);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ============================================================
   MAP SECTION
   ============================================================ */

.map-section {
    padding: 0 0 60px 0;
    background: var(--bg-white);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(4px);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-overlay i {
    color: var(--yellow);
    margin-right: 6px;
}

/* ============================================================
   RESPONSIVE CONTACT PAGE
   ============================================================ */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        min-height: 280px;
        padding: 40px 0 30px;
    }

    .contact-banner .banner-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .contact-banner .banner-stats span {
        font-size: 0.78rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px 20px;
    }

    .map-section {
        padding: 0 0 40px 0;
    }

    .map-wrapper iframe {
        height: 200px;
    }

    .map-overlay {
        font-size: 0.7rem;
        padding: 6px 14px;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        min-height: 220px;
        padding: 30px 0 25px;
    }

    .contact-banner .banner-stats {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info>p {
        font-size: 0.9rem;
    }

    .form-card {
        padding: 18px 14px;
    }

    .form-card h3 {
        font-size: 1.1rem;
    }

    .field input,
    .field textarea,
    .field select {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 14px;
        font-size: 0.9rem;
    }

    .map-wrapper iframe {
        height: 150px;
    }
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-list li:hover .contact-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.contact-detail {
    display: flex;
    flex-direction: column;
}

.contact-detail .contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.contact-detail a,
.contact-detail span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--yellow);
}

/* Footer Bottom - White Text */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-bottom strong {
    color: var(--yellow);
}

.footer-bottom-left span {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-right span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-right span i {
    font-size: 0.9rem;
}

/* Footer Disclaimer - White Text */
.footer-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color:white;
    font-size: 0.78rem;
    text-align: center;
}

.footer-disclaimer i {
    color: var(--yellow);
    font-size: 1rem;
}

/* ============================================================
   RESPONSIVE FOOTER
   ============================================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .footer-bottom-right {
        justify-content: center;
    }

    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo-text {
        font-size: 1.2rem;
    }

    .footer-social .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .contact-list li {
        gap: 10px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* ---------- LEFT SOCIAL FLOAT STACK ---------- */
.social-float {
    position: fixed;
    top: 67%;
    left: 22px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 200;
}

.social-float a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    border: 2px solid var(--bg);
    transition: transform .25s ease, box-shadow .25s ease;
}

.social-float a:hover {
    transform: scale(1.12) translateX(4px);
}

.social-float a svg {
    width: 21px;
    height: 21px;
}

.social-float .sf-phone {
    background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
    color: #1a1200;
}

.social-float .sf-whatsapp {
    background: #25D366;
}

.social-float .sf-instagram {
    background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5 20%, #ff543e 40%, #c837ab 60%, #7038c0 80%);
}

.social-float .sf-facebook {
    background: #1877F2;
}

@media (max-width: 700px) {
    .social-float {
        left: 12px;
        gap: 10px;
    }

    .social-float a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
    color: #1a1200;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(255, 201, 60, 0.3);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 201, 60, 0.45);
}

@media (max-width: 700px) {
    .back-to-top {
        bottom: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* ---------- FLOAT BUTTONS ---------- */
.float-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 200;
    font-size: 1.5rem;
    animation: pulse-wa 2.4s ease-in-out infinite;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    }
}

/* ============================================================
   PAGE HERO - WITH BACKGROUND IMAGE
   ============================================================ */

.page-hero {
    padding: 60px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Products Page Hero - With Background Image */
.products-hero {
    min-height: 450px;
    background-image: url('./images/productvideo.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Dark Overlay for Text Readability */
.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    z-index: 0;
}

/* Gold Glow Overlay */
.products-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.06), transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.04), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.products-hero .container {
    position: relative;
    z-index: 1;
}

/* Breadcrumb - White/Gold */
.products-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.products-hero .breadcrumb .accent {
    color: var(--yellow);
}

/* Heading - White */
.products-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: 14px 0 10px;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.products-hero h1 .accent {
    color: var(--yellow);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

/* Paragraph - Light */
.products-hero p {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   OPTIONAL: Without Dark Overlay (Image More Visible)
   ============================================================ */
.products-hero-light::before {
    display: none;
}

.products-hero-light h1 {
    color: var(--text);
}

.products-hero-light p {
    color: var(--text-muted) !important;
}

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

@media (max-width: 768px) {
    .products-hero {
        min-height: 280px;
        padding: 40px 0 30px;
    }

    .products-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
}

@media (max-width: 480px) {
    .products-hero {
        min-height: 220px;
        padding: 30px 0 25px;
    }

    .products-hero h1 {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
    }

    .products-hero p {
        font-size: 0.85rem;
    }
}

/* ---------- FILTER BAR (products page) ---------- */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.chip {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all .2s ease;
}

.chip.active,
.chip:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255, 201, 60, 0.06);
}

/* ---------- RESPONSIVE ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    nav.main-nav {
        display: none;
    }

    nav.main-nav.open-mobile {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
    }

    nav.main-nav.open-mobile ul {
        flex-direction: column;
        gap: 18px;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        height: 320px;
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .strip .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        columns: 2 180px;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .strip .grid-4 {
        grid-template-columns: 1fr;
    }

    .track-form {
        flex-direction: column;
    }

    .track-form input {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* ============================================================
   ABOUT PAGE BANNER - WITH BACKGROUND IMAGE
   ============================================================ */

.about-banner {
    padding: 60px 0 50px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    min-height: 450px;
    /* Background Image */
    background-image: url('./images/about-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.banner-content .eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border-radius: 999px;
}

.banner-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 12px;
    color: var(--text);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
}

.banner-content p {
    color: var(--yellow-bright);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 24px;
    padding: 8px 24px;
    border-radius: 999px;
    display: inline-block;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 18px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.banner-stats span i {
    color: var(--yellow);
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .about-banner {
        min-height: 300px;
        padding: 40px 0 30px;
    }

    .banner-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .banner-stats span {
        font-size: 0.78rem;
        padding: 4px 14px;
    }

    .banner-content p {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        min-height: 250px;
        padding: 30px 0 25px;
    }

    .banner-stats {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .banner-stats span {
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .banner-content .eyebrow {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .banner-content h1 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .banner-content p {
        font-size: 0.82rem;
        padding: 4px 14px;
    }
}

/* ============================================================
   STORY SECTION - WITH IMAGE
   ============================================================ */

.story-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.story-text {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0 28px;
}

.story-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-elevated);
    padding: 6px 16px;
    border-radius: 999px;
}

.story-features span i {
    color: var(--yellow);
}

/* ============================================================
   ABOUT STAGE - CRACKER + IMAGE
   ============================================================ */

/* Story Section */
.story-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.story-text {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0 28px;
}

.story-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-elevated);
    padding: 6px 16px;
    border-radius: 999px;
}

.story-features span i {
    color: var(--yellow);
}

.about-stage {
    height: 340px !important;
}

.about-stage .cracker-visual {
    height: 260px;
}

/* ============================================================
   MISSION & VISION - WITH ROUND CRACKER TOP RIGHT
   ============================================================ */

.mission-section {
    background: var(--bg-elevated);
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 35px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-hover);
}

/* ============================================================
   VISION CARD - ROUND CRACKER TOP RIGHT CORNER
   ============================================================ */

.vision-card {
    position: relative;
    overflow: visible !important;
    /* Changed from hidden to visible */
}

/* Round Cracker Image Wrapper - Top Right Corner */
.vision-image-wrapper {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
    padding: 10px;
}

/* Glow Background */
.vision-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.vision-round-cracker {
    width: 110px;
    height: 110px;
    object-fit: contain;
    animation: spinRound 10s linear infinite;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    display: block;
    position: relative;
    z-index: 2;
}

@keyframes spinRound {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ============================================================
   SPARKLES AROUND THE IMAGE
   ============================================================ */

.vision-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #f7d774, #d4af37);
    box-shadow: 0 0 12px rgba(247, 215, 116, 0.5);
    animation: sparkleFloat 2.5s ease-in-out infinite;
    z-index: 3;
}

.s1 {
    top: 10px;
    right: 65px;
    animation-delay: 0s;
}

.s2 {
    top: 30px;
    right: 10px;
    animation-delay: 0.4s;
}

.s3 {
    top: 60px;
    right: 0px;
    animation-delay: 0.8s;
}

.s4 {
    top: 95px;
    right: 15px;
    animation-delay: 1.2s;
}

.s5 {
    top: 115px;
    right: 55px;
    animation-delay: 1.6s;
}

.s6 {
    top: 55px;
    right: 75px;
    animation-delay: 2.0s;
}

@keyframes sparkleFloat {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.5) translateY(-10px);
    }
}

/* ============================================================
   MISSION ICON
   ============================================================ */

.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.6rem;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--yellow);
    color: #fff;
    transform: scale(1.05);
}

.mission-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
}

.mission-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE - FIXED FOR ALL DEVICES
   ============================================================ */

@media (max-width: 1024px) {
    .vision-image-wrapper {
        width: 130px;
        height: 130px;
        top: -10px;
        right: -10px;
    }

    .vision-round-cracker {
        width: 95px;
        height: 95px;
    }

    .vision-image-wrapper::before {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-card {
        padding: 30px 24px;
    }

    /* Mobile - Make image visible */
    .vision-image-wrapper {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 110px !important;
        height: 110px !important;
        opacity: 1 !important;
        z-index: 10 !important;
        padding: 8px;
    }

    .vision-round-cracker {
        width: 85px !important;
        height: 85px !important;
        opacity: 1 !important;
        z-index: 11 !important;
    }

    .vision-image-wrapper::before {
        width: 95px;
        height: 95px;
    }

    .vision-sparkle {
        width: 5px;
        height: 5px;
    }

    .s1 {
        top: 8px;
        right: 48px;
    }

    .s2 {
        top: 25px;
        right: 8px;
    }

    .s3 {
        top: 50px;
        right: 0px;
    }

    .s4 {
        top: 75px;
        right: 10px;
    }

    .s5 {
        top: 90px;
        right: 42px;
    }

    .s6 {
        top: 40px;
        right: 58px;
    }

    .mission-card h3 {
        font-size: 1.2rem;
    }

    .mission-card p {
        font-size: 0.88rem;
    }

    .mission-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }

    .mission-card {
        padding: 20px 16px;
    }

    /* Small Mobile - Make image clearly visible */
    .vision-image-wrapper {
        position: absolute !important;
        top: -5px !important;
        right: -5px !important;
        width: 85px !important;
        height: 85px !important;
        opacity: 1 !important;
        z-index: 15 !important;
        padding: 5px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.10), transparent 70%);
        border-radius: 50%;
    }

    .vision-round-cracker {
        width: 65px !important;
        height: 65px !important;
        opacity: 1 !important;
        z-index: 16 !important;
        animation-duration: 8s;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }

    .vision-image-wrapper::before {
        display: none;
    }

    .vision-sparkle {
        width: 4px;
        height: 4px;
        box-shadow: 0 0 8px rgba(247, 215, 116, 0.4);
    }

    .s1 {
        top: 5px;
        right: 35px;
    }

    .s2 {
        top: 18px;
        right: 5px;
    }

    .s3 {
        top: 38px;
        right: 0px;
    }

    .s4 {
        top: 58px;
        right: 8px;
    }

    .s5 {
        top: 70px;
        right: 30px;
    }

    .s6 {
        top: 30px;
        right: 42px;
    }

    .mission-card h3 {
        font-size: 1rem;
    }

    .mission-card p {
        font-size: 0.82rem;
    }

    .mission-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
}


/* ============================================================
   VALUES SECTION - WITH BACKGROUND IMAGE
   ============================================================ */

.values-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background Image */
.values-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/valuesbg.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Light Overlay */
.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    z-index: 0;
}

/* Gold Sparkle Overlay */
.values-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(212, 175, 55, 0.15), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(212, 175, 55, 0.10), transparent),
        radial-gradient(2px 2px at 50% 30%, rgba(212, 175, 55, 0.12), transparent),
        radial-gradient(2px 2px at 70% 70%, rgba(212, 175, 55, 0.08), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(212, 175, 55, 0.15), transparent);
    background-size: 200px 200px;
    animation: sparkleBg 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkleBg {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200px);
    }
}

.values-section .container {
    position: relative;
    z-index: 1;
}

/* Section Head - Dark Text */
.values-section .section-head .eyebrow {
    color: #8b3a2a;
    font-weight: 700;
    letter-spacing: 4px;
}

.values-section .section-head .eyebrow::before {
    background: #8b3a2a;
}

.values-section .section-head h2 {
    color: #2a1a10;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.values-section .section-head h2 .accent {
    color: #b8860b;
}

.values-section .section-head p {
    color: #6b5344;
    font-weight: 400;
}

/* Values Cards - Glassmorphism */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.value-card {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #b8860b;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.10);
    border: 1px solid rgba(184, 134, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: #b8860b;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #b8860b;
    color: #ffffff;
    transform: scale(1.1);
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2a1a10;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.value-card p {
    color: #6b5344;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 20px 16px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .value-card h3 {
        font-size: 0.9rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 40px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .value-card {
        padding: 18px 14px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .value-card h3 {
        font-size: 0.85rem;
    }

    .value-card p {
        font-size: 0.78rem;
    }

    .values-section .section-head h2 {
        font-size: 1.6rem;
    }
}

/* ============================================================
   SAFETY SECTION - INNOVATIVE WITH ANIMATION
   ============================================================ */

.safety-section {
    background: var(--bg-elevated);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Safety Wrapper - Flex Layout */
.safety-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

/* ============================================================
   LEFT SIDE - ANIMATED CRACKER
   ============================================================ */

.safety-animation {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

/* Cracker Container */
.cracker-container {
    position: relative;
    width: 200px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Cracker */
.animated-cracker {
    position: relative;
    width: 120px;
    animation: floatCracker 3s ease-in-out infinite;
}

@keyframes floatCracker {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* Cracker Body */
.cracker-body {
    position: relative;
    width: 120px;
    height: 200px;
    background: linear-gradient(180deg, #d4a847 0%, #b8922f 15%, #8b3a2a 30%, #2a2410 70%, #1a0e08 100%);
    border-radius: 12px 12px 8px 8px;
    border: 2px solid #d4a847;
    box-shadow: 0 10px 40px rgba(139, 58, 42, 0.3), inset 0 2px 10px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

/* Cracker Top Cap */
.cracker-body::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -2px;
    right: -2px;
    height: 20px;
    background: linear-gradient(90deg, #d4a847, #f7d774, #d4a847);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.4);
}

/* Cracker Stripes */
.cracker-stripes {
    position: absolute;
    top: 45px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.cracker-stripes span {
    width: 20px;
    height: 6px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
    animation: stripePulse 2s ease-in-out infinite;
}

.cracker-stripes span:nth-child(2) {
    animation-delay: 0.3s;
}

.cracker-stripes span:nth-child(3) {
    animation-delay: 0.6s;
}

.cracker-stripes span:nth-child(4) {
    animation-delay: 0.9s;
}

.cracker-stripes span:nth-child(5) {
    animation-delay: 1.2s;
}

.cracker-stripes span:nth-child(6) {
    animation-delay: 1.5s;
}

@keyframes stripePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

/* Cracker Label */
.cracker-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Anton', sans-serif;
    font-size: 0.85rem;
    color: #d4a847;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(10, 10, 10, 0.6);
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Fuse */
.cracker-fuse {
    position: absolute;
    top: -18px;
    right: 15px;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #8b6b4a, #5a3d2a);
    transform: rotate(15deg);
    transform-origin: bottom;
}

.cracker-fuse::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff5a1f, #d4a847);
    box-shadow: 0 0 20px rgba(255, 90, 31, 0.4);
    animation: fuseGlow 1.5s ease-in-out infinite;
}

@keyframes fuseGlow {

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

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

/* Sparks */
.cracker-sparks {
    position: absolute;
    top: -10px;
    right: 0;
    width: 60px;
    height: 60px;
}

.cracker-sparks .spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f7d774;
    box-shadow: 0 0 10px rgba(247, 215, 116, 0.6);
    animation: sparkFly 2s ease-in-out infinite;
}

.cracker-sparks .spark.s1 {
    top: 5px;
    right: 5px;
    animation-delay: 0s;
}

.cracker-sparks .spark.s2 {
    top: 15px;
    right: -5px;
    animation-delay: 0.3s;
}

.cracker-sparks .spark.s3 {
    top: 25px;
    right: 0px;
    animation-delay: 0.6s;
}

.cracker-sparks .spark.s4 {
    top: 35px;
    right: -10px;
    animation-delay: 0.9s;
}

.cracker-sparks .spark.s5 {
    top: 45px;
    right: 5px;
    animation-delay: 1.2s;
}

.cracker-sparks .spark.s6 {
    top: 10px;
    right: 15px;
    animation-delay: 0.4s;
}

.cracker-sparks .spark.s7 {
    top: 30px;
    right: 15px;
    animation-delay: 0.8s;
}

.cracker-sparks .spark.s8 {
    top: 50px;
    right: -5px;
    animation-delay: 1.4s;
}

@keyframes sparkFly {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }

    20% {
        opacity: 1;
        transform: translate(-10px, -15px) scale(1);
    }

    40% {
        opacity: 0;
        transform: translate(-20px, -30px) scale(0.5);
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }
}

/* Cracker Shadow */
.cracker-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: radial-gradient(ellipse, rgba(139, 58, 42, 0.2), transparent);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particles .particle {
    position: absolute;
    color: rgba(212, 175, 55, 0.15);
    font-size: 1.2rem;
    animation: particleFloat 6s ease-in-out infinite;
}

.particles .particle.p1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.particles .particle.p2 {
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

.particles .particle.p3 {
    top: 60%;
    left: 0%;
    animation-delay: 2s;
}

.particles .particle.p4 {
    top: 80%;
    right: 0%;
    animation-delay: 3s;
}

.particles .particle.p5 {
    top: 45%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Safety Tagline */
.safety-tagline {
    margin-top: 20px;
    text-align: center;
}

.safety-tagline .tagline-icon {
    display: inline-block;
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 8px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

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

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

.safety-tagline p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.safety-tagline p strong {
    color: var(--text);
    font-size: 1.2rem;
    display: block;
}

/* ============================================================
   RIGHT SIDE - SAFETY CARDS
   ============================================================ */

.safety-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.safety-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--yellow), var(--ember));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.safety-card:hover::before {
    opacity: 1;
}

.safety-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-hover);
}

.safety-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.safety-card:hover .safety-card-icon {
    background: var(--yellow);
    color: #fff;
    transform: scale(1.05);
}

.safety-card-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}

.safety-card-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

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

@media (max-width: 1024px) {
    .safety-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .safety-animation {
        flex: none;
        position: relative;
        top: 0;
        width: 100%;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
        padding: 20px 0 30px;
    }

    .cracker-container {
        width: 160px;
        height: 220px;
    }

    .animated-cracker {
        width: 100px;
    }

    .cracker-body {
        width: 100px;
        height: 170px;
    }

    .safety-tagline {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .safety-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-animation {
        flex-direction: column;
        gap: 20px;
        padding: 10px 0 20px;
    }

    .cracker-container {
        width: 140px;
        height: 190px;
    }

    .animated-cracker {
        width: 85px;
    }

    .cracker-body {
        width: 85px;
        height: 150px;
    }

    .cracker-stripes span {
        width: 14px;
        height: 4px;
    }

    .cracker-label {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .safety-card {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cracker-container {
        width: 120px;
        height: 170px;
    }

    .animated-cracker {
        width: 70px;
    }

    .cracker-body {
        width: 70px;
        height: 130px;
    }

    .cracker-stripes span {
        width: 10px;
        height: 3px;
    }

    .cracker-label {
        font-size: 0.5rem;
        padding: 3px 8px;
        letter-spacing: 2px;
    }

    .cracker-fuse {
        height: 15px;
        top: -14px;
        right: 10px;
    }

    .cracker-sparks .spark {
        width: 3px;
        height: 3px;
    }

    .safety-tagline p {
        font-size: 0.8rem;
    }

    .safety-tagline p strong {
        font-size: 1rem;
    }
}

/* ============================================================
   STRIP / STATS - WITH IMAGE ON RIGHT
   ============================================================ */

.strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
    background: var(--bg-white);
}

.strip-flex {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    gap: 48px;
    align-items: center;
}

/* Left Side - Stats */
.strip .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.strip .stat {
    padding: 10px 0;
}

.strip .stat .stat-icon {
    display: block;
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 8px;
}

.strip .stat b {
    display: block;
    font-family: 'Anton';
    font-size: 2rem;
    color: var(--yellow);
    transition: all 0.3s ease;
}

/* Subtle underline effect on hover */
.strip .stat b::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--yellow);
    margin: 6px auto 0;
    transition: width 0.4s ease;
}

.strip .stat:hover b::after {
    width: 40px;
}

.strip .stat span {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

/* Right Side - Real Image */
.strip-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flowerpot-real {
    width: 100%;
    max-width: 220px;
    height: 350px;
    object-fit: contain;
    animation: floatImage 3.5s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(139, 58, 42, 0.15));
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.flowerpot-real:hover {
    transform: scale(1.03);
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

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

@media (max-width: 900px) {
    .strip-flex {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .strip-image {
        order: -1;
    }

    .flowerpot-real {
        max-width: 160px;
    }

    .strip .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .strip .stat b {
        font-size: 1.6rem;
    }
}

@media (max-width: 560px) {
    .strip .grid-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .strip .stat b {
        font-size: 1.4rem;
    }

    .flowerpot-real {
        max-width: 120px;
    }
}

/* ============================================================
   RESPONSIVE ABOUT PAGE
   ============================================================ */

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-banner {
        min-height: 280px;
        padding: 40px 0 30px;
    }

    .about-banner .banner-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .about-banner .banner-stats span {
        font-size: 0.78rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stage {
        height: 280px !important;
        order: -1;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 480px) {
    .about-banner {
        min-height: 220px;
        padding: 30px 0 25px;
    }

    .about-banner .banner-stats {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 24px 20px;
    }

    .mission-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .value-card {
        padding: 20px 16px;
    }
}
/* ============================================================
   🔥 FIX: CLIENT INFO FORM - FULLY RESPONSIVE
   ============================================================ */

/* Client Info Section - Desktop */
.client-info-section {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 22px;
}

.client-info-section h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--ember);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.client-info-section .field {
    width: 100%;
}

.client-info-section .field input,
.client-info-section .field select,
.client-info-section .field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.client-info-section .field input::placeholder,
.client-info-section .field textarea::placeholder {
    color: #aaa;
}

.client-info-section .field input:focus,
.client-info-section .field select:focus,
.client-info-section .field textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.client-info-section .field-full {
    grid-column: 1 / -1;
    margin-bottom: 6px;
}

.client-info-section textarea {
    resize: vertical;
    min-height: 56px;
}

.client-form-error {
    display: none;
    align-items: center;
    gap: 8px;
    color: #c0392b;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.82rem;
    margin-top: 4px;
}

.client-form-error.show {
    display: flex;
}

/* ============================================================
   🔥 MOBILE: CLIENT INFO - FULL WIDTH & CLEAR
   ============================================================ */

@media (max-width: 768px) {
    .client-info-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .client-info-section {
        padding: 14px 16px !important;
    }

    .client-info-section .field input,
    .client-info-section .field select,
    .client-info-section .field textarea {
        font-size: 0.9rem !important;
        padding: 11px 14px !important;
        width: 100% !important;
    }

    .client-info-section .field-full {
        grid-column: 1 !important;
    }

    .client-form-error {
        font-size: 0.78rem !important;
        padding: 8px 12px !important;
    }
}

@media (max-width: 480px) {
    .client-info-grid {
        gap: 8px !important;
    }

    .client-info-section {
        padding: 12px 12px !important;
    }

    .client-info-section .field input,
    .client-info-section .field select,
    .client-info-section .field textarea {
        font-size: 0.85rem !important;
        padding: 10px 12px !important;
    }

    .client-info-section h3 {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }

    .client-form-error {
        font-size: 0.7rem !important;
        padding: 6px 10px !important;
    }
}

/* ============================================================
   🔥 FIX: ORDER SUMMARY MODAL BODY PADDING
   ============================================================ */

#order-summary-modal .cart-modal-body {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1;
}

@media (max-width: 768px) {
    #order-summary-modal .cart-modal-body {
        padding: 12px 14px !important;
    }

    #order-summary-modal .cart-modal-header h2 {
        font-size: 0.95rem !important;
    }

    #order-summary-modal .cart-modal-footer {
        padding: 10px 14px !important;
    }

    #order-summary-modal .cart-modal-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 10px 16px !important;
        font-size: 0.82rem !important;
    }
}

@media (max-width: 480px) {
    #order-summary-modal .cart-modal-body {
        padding: 10px 10px !important;
    }

    #order-summary-modal .cart-modal-header h2 {
        font-size: 0.82rem !important;
    }

    #order-summary-modal .cart-modal-actions .btn {
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
    }
}

/* ============================================================
   🔥 FIX: ORDER SUMMARY META - RESPONSIVE
   ============================================================ */

.order-summary-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 4px 0 18px;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-summary-meta-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-summary-meta-col.align-right {
    align-items: flex-end;
    text-align: right;
}

@media (max-width: 768px) {
    .order-summary-meta {
        flex-direction: column !important;
        padding: 12px 14px !important;
        gap: 8px !important;
    }

    .order-summary-meta-col.align-right {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .order-summary-meta-col {
        font-size: 0.8rem !important;
    }

    .os-overall {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .order-summary-meta {
        padding: 10px 12px !important;
        gap: 6px !important;
    }

    .order-summary-meta-col {
        font-size: 0.75rem !important;
    }

    .os-overall {
        font-size: 0.85rem !important;
    }
}
@media (max-width: 560px) {
    .client-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Send to WhatsApp button ---- */
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    background: #21bd5c;
}

