/* ============================================================
   STRAIGHT FACE OFFICIAL — DESIGN SYSTEM
   Theme: Raw Editorial / Urban Luxury
   Colors: Pure Black & White with grain texture
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700;900&family=Barlow:wght@300;400;500&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #000000;
    --white:   #ffffff;
    --off-white: #f0f0f0;
    --grey-90: #1a1a1a;
    --grey-80: #222222;
    --grey-70: #333333;
    --grey-50: #555555;
    --grey-30: #888888;
    --grey-10: #cccccc;
    --accent:  #ffffff;
    --danger:  #e53e3e;
    --success: #38a169;
    --warning: #d69e2e;

    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --radius-sm: 2px;
    --radius:    4px;
    --radius-lg: 8px;

    --nav-h: 72px;
    --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0,0,0,0.6);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.8);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--grey-10);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

a { color: var(--white); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--grey-30); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

input, textarea, select {
    font-family: var(--font-body);
    font-size: 14px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--white);
}

.display-text {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.9;
}

.label-text {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--grey-30);
}

/* --- LAYOUT --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: 600px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 16px; }
.flex-col { display: flex; flex-direction: column; }

/* --- NAVBAR --- */
.sf-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-80);
    z-index: 1000;
    transition: var(--transition);
}

.sf-navbar.scrolled {
    background: rgba(0,0,0,0.99);
    border-bottom-color: var(--grey-70);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1);
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey-10);
    padding: 8px 14px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    border-bottom-color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-10);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    background: none;
}

.nav-icon-btn:hover {
    color: var(--white);
    border-color: var(--grey-70);
    background: var(--grey-90);
}

.nav-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--white);
    color: var(--black);
    font-size: 9px;
    font-weight: 900;
    font-family: var(--font-heading);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    padding: 100px 32px 40px;
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay a {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    letter-spacing: 0.05em;
    padding: 8px 0;
    border-bottom: 1px solid var(--grey-80);
}

.nav-mobile-overlay a:last-child { border-bottom: none; }

/* Currency switcher */
.currency-toggle {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-30);
    border: 1px solid var(--grey-70);
    background: none;
    padding: 6px 10px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.currency-toggle:hover, .currency-toggle.active {
    color: var(--white);
    border-color: var(--white);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 14px 28px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-ghost {
    background: transparent;
    color: var(--grey-10);
    border-color: var(--grey-70);
}

.btn-ghost:hover {
    color: var(--white);
    border-color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-sm { padding: 9px 18px; font-size: 11px; }
.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn-full { width: 100%; }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- PRODUCT CARDS --- */
.product-card {
    position: relative;
    background: var(--grey-90);
    border: 1px solid var(--grey-80);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--grey-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--grey-80);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-img .img-alt {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .img-alt { opacity: 1; }

.product-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
}

.badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 8px;
}

.badge-new { background: var(--white); color: var(--black); }
.badge-sale { background: var(--success); color: var(--white); }
.badge-sold { background: var(--grey-70); color: var(--grey-10); }

.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    gap: 1px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-actions {
    transform: translateY(0);
}

.product-card-actions button {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.product-card-actions button:hover { background: var(--grey-90); }
.product-card-actions .btn-add-cart { background: var(--white); color: var(--black); }
.product-card-actions .btn-add-cart:hover { background: var(--off-white); }

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--grey-70);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--grey-30);
    z-index: 1;
}

.wishlist-btn:hover, .wishlist-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
@media (max-width: 768px) {
    .wishlist-btn {
    position: initial;
    }
}

.product-card-body {
    padding: 14px 16px 16px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-cat {
    font-size: 11px;
    color: var(--grey-30);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.price-old {
    font-size: 13px;
    color: var(--grey-50);
    text-decoration: line-through;
}

.price-badge {
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    background: var(--danger);
    color: var(--white);
    padding: 2px 6px;
    letter-spacing: 0.1em;
}

/* Product Rating Stars */
.stars {
    display: flex;
    gap: 2px;
    color: var(--grey-50);
    font-size: 12px;
}

.stars .filled { color: var(--white); }

/* --- SECTION HEADERS --- */
.section-header {
    margin-bottom: 48px;
}

.section-header .eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--grey-30);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.9;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--grey-30);
    font-size: 15px;
    max-width: 560px;
}

/* --- FORMS --- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--grey-30);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: var(--grey-90);
    border: 1px solid var(--grey-70);
    color: var(--white);
    padding: 13px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: var(--transition);
    border-radius: var(--radius-sm);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--white);
}

.form-control::placeholder { color: var(--grey-50); }

.form-control.error { border-color: var(--danger); }

.form-error {
    font-size: 12px;
    color: var(--danger);
    margin-top: 6px;
    letter-spacing: 0.05em;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

textarea.form-control { resize: vertical; min-height: 120px; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.form-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid #999;
    border-radius: 4px;
    background: #fff;
    margin: 2px 0 0 0;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.form-check input[type="checkbox"]:checked {
    background: #000;
    border-color: #000;
}

.form-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check label {
    font-size: 13px;
    color: var(--grey-10);
    cursor: pointer;
    line-height: 1.5;
}
/* --- ALERTS --- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
    border-left: 3px solid;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.alert-success { background: rgba(56,161,105,0.15); border-color: var(--success); color: #68d391; }
.alert-danger  { background: rgba(229,62,62,0.15);  border-color: var(--danger);  color: #fc8181; }
.alert-warning { background: rgba(214,158,46,0.15); border-color: var(--warning); color: #f6c90e; }
.alert-info    { background: rgba(255,255,255,0.08); border-color: var(--grey-50); color: var(--grey-10); }

/* --- BREADCRUMB --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 12px;
    color: var(--grey-50);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.breadcrumb a { color: var(--grey-30); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--grey-70); }
.breadcrumb .current { color: var(--grey-10); }

/* --- PAGINATION --- */
.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 48px;
}

.pagination a, .pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--grey-70);
    color: var(--grey-10);
    transition: var(--transition);
}

.pagination a:hover, .pagination .current {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* --- CART SIDEBAR --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: var(--grey-90);
    border-left: 1px solid var(--grey-80);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--grey-80);
}

.cart-sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 0.15em;
}

.cart-close-btn {
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--grey-70);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close-btn:hover {
    background: var(--white);
    color: var(--black);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-80);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    background: var(--grey-80);
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-variant {
    font-size: 12px;
    color: var(--grey-50);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: none;
    border: 1px solid var(--grey-70);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    line-height: 1;
}

.qty-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.qty-display {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    width: 24px;
    text-align: center;
    color: var(--white);
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-left: auto;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--grey-50);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: var(--transition);
    padding: 0;
    margin-left: 4px;
}

.remove-item-btn:hover { color: var(--danger); }

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--grey-80);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-total-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey-30);
}

.cart-total-amount {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
}

/* --- FOOTER --- */
.sf-footer {
    background: var(--grey-90);
    border-top: 1px solid var(--grey-80);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--grey-80);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img { width: 40px; }

.footer-brand .footer-logo span {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.1em;
}

.footer-brand p {
    color: var(--grey-50);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--grey-70);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-30);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--grey-50);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: var(--grey-50);
    font-size: 13px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    background: var(--grey-80);
    border: 1px solid var(--grey-70);
    border-right: none;
    color: var(--white);
    padding: 12px 16px;
    font-size: 13px;
    outline: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.newsletter-form button {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.newsletter-form button:hover { background: var(--off-white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--grey-70);
    font-size: 12px;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--grey-70);
    font-size: 12px;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--white); }

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

/* --- HERO --- */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: var(--nav-h);
}
.sf-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.4s ease;
}

.sf-slide-active{
    opacity:1;
    z-index:2;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--grey-30);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--grey-50);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 160px);
    line-height: 0.88;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--grey-30);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll ticker */
.ticker-bar {
    background: var(--white);
    color: var(--black);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 40px;
}

.ticker-item .sep {
    margin: 0 16px;
    opacity: 0.4;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- STATUS BADGES --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-pending  { background: rgba(214,158,46,0.15); color: #f6c90e; }
.status-confirmed, .status-processing { background: rgba(49,130,206,0.15); color: #63b3ed; }
.status-shipped, .status-delivery    { background: rgba(128,90,213,0.15); color: #b794f4; }
.status-delivered { background: rgba(56,161,105,0.15); color: #68d391; }
.status-cancelled, .status-returned  { background: rgba(229,62,62,0.15); color: #fc8181; }

/* --- LOADING SPINNER --- */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--grey-70);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--white);
    color: var(--black);
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
    pointer-events: all;
    max-width: 400px;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.toast-error {
    background: var(--danger);
    color: var(--white);
}

/* --- TABS --- */
.tabs {
    display: flex;
    border-bottom: 1px solid var(--grey-80);
    margin-bottom: 32px;
    gap: 0;
}

.tab-btn {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 14px 24px;
    background: none;
    border: none;
    color: var(--grey-50);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- PAGE TITLE BANNER --- */
.page-banner {
    background: var(--grey-90);
    border-bottom: 1px solid var(--grey-80);
    padding: calc(var(--nav-h) + 40px) 0 40px;
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.9;
    margin-bottom: 12px;
}

/* --- MODALS --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 11200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sf-modal {
    background: var(--grey-90);
    border: 1px solid var(--grey-80);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.modal-overlay.open .sf-modal { transform: scale(1); }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--grey-80);
}

.modal-header h3 {
    font-size: 16px;
    letter-spacing: 0.15em;
}

.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px 24px; display: flex; gap: 12px; justify-content: flex-end; }

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-white { color: var(--white); }
.text-muted { color: var(--grey-50); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.d-none { display: none; }
.d-block { display: block; }
.w-100 { width: 100%; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.divider { border: none; border-top: 1px solid var(--grey-80); margin: 24px 0; }
.sticky-top { position: sticky; top: calc(var(--nav-h) + 16px); }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 80px 32px;
    color: var(--grey-50);
}

.empty-state .empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state h3 {
    color: var(--grey-30);
    font-size: 18px;
    margin-bottom: 10px;
}

.empty-state p { font-size: 14px; margin-bottom: 24px; }
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .grid-5 { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
.product-card-actions {
    transform: translateY(0);
}
.hero-content {
        padding-bottom: 20px;
        padding-top: 30vh;
    }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    .section { padding: 56px 0; }
    .section-lg { padding: 80px 0; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-title { font-size: 64px; }
    .cart-sidebar { width: 100%; }
    .section-header h2 { font-size: 48px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
}
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-title { font-size: 52px; }
    .btn-quick-view { display: none; }
}
