/* Gudsmith — Premium D2C Furniture UI */
:root {
    --color-bg: #f8f6f2;
    --color-surface: #ffffff;
    --color-text: #141414;
    --color-text-muted: #5c5c5c;
    --color-primary: #1a1209;
    --color-primary-soft: #3d2e1f;
    --color-accent: #b87333;
    --color-accent-light: #e8c9a8;
    --color-border: #e8e4dc;
    --color-dark: #0d0d0d;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.1);
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --header-h: 76px;
    --container: min(1320px, 94vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }
.container { width: var(--container); margin: 0 auto; }

/* Notices */
.db-notice {
    background: #fff8e6;
    color: #7a5c00;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #f0d78c;
}
.db-notice a { font-weight: 700; text-decoration: underline; color: var(--color-primary-soft); }
.announcement-bar {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.announcement-bar a { color: var(--color-accent-light); text-decoration: underline; margin-left: 0.35rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}
.page-home .site-header:not(.scrolled) {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}
.page-home .site-header:not(.scrolled) .header-main { color: #fff; }
.page-home .site-header:not(.scrolled) .logo-text { color: #fff; }
.page-home .site-header:not(.scrolled) .nav-menu a { color: rgba(255, 255, 255, 0.92); }
.page-home .site-header:not(.scrolled) .icon-btn { color: #fff; }
.page-home .site-header:not(.scrolled) .nav-toggle span { background: #fff; }

.header-top {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
}
.header-top a:hover { color: var(--color-accent-light); }
.header-top .divider { opacity: 0.35; margin: 0 0.5rem; }

.header-main {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1rem 0;
    min-height: var(--header-h);
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-accent), #8b5a2b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--color-accent); }
.page-home .site-header:not(.scrolled) .nav-menu a:hover,
.page-home .site-header:not(.scrolled) .nav-menu a.active { color: var(--color-accent-light); }

.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all var(--transition);
}
.dropdown a {
    display: block;
    padding: 0.55rem 1.25rem;
    font-weight: 400;
    color: var(--color-text) !important;
}
.dropdown a:hover { background: var(--color-bg); color: var(--color-accent) !important; }

.header-actions { display: flex; gap: 0.35rem; align-items: center; }
.icon-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    transition: background var(--transition);
}
.icon-btn:hover { background: rgba(0, 0, 0, 0.06); }
.cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

.search-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-surface);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.search-overlay.open { transform: translateY(0); opacity: 1; visibility: visible; }
.search-form { display: flex; gap: 0.75rem; align-items: center; }
.search-form input {
    flex: 1;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--color-bg);
}
.search-form input:focus { outline: 2px solid var(--color-accent-light); border-color: var(--color-accent); }
.search-close { border: none; background: none; font-size: 1.75rem; cursor: pointer; line-height: 1; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.85rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-primary-soft);
    border-color: var(--color-primary-soft);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(26, 18, 9, 0.2);
}
.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-text-muted); border: none; }
.btn-ghost:hover { color: var(--color-accent); }
.btn-light {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}
.btn-light:hover { background: var(--color-accent-light); border-color: var(--color-accent-light); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }
.btn-block { width: 100%; }

/* Hero — premium split */
.hero-premium {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    min-height: calc(100vh - 120px);
    max-height: 900px;
    background: var(--color-primary);
    overflow: hidden;
}
.hero-premium-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 5rem);
    color: #fff;
    position: relative;
    z-index: 1;
}
.hero-premium-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(184, 115, 51, 0.25), transparent 60%);
    pointer-events: none;
}
.hero-premium-content > * { position: relative; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--color-accent);
}
.hero-premium h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.hero-premium .hero-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 420px;
    margin-bottom: 2rem;
}
.hero-premium-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-premium-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.hero-premium-actions .btn-outline:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}
.hero-premium-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-premium-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}
.hero-premium-stats span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.25rem;
    display: block;
}
.hero-premium-visual {
    position: relative;
    min-height: 400px;
}
.hero-premium-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-premium-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 35%);
}

/* Legacy hero fallback */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.3)),
        url('https://images.unsplash.com/photo-1618221195710-e326020b8463?w=1920&q=80') center/cover;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 600px;
    padding: 4rem 0;
}
.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }

/* Sections */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.section--alt { background: var(--color-surface); }
.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem;
}
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}
.section-header p { color: var(--color-text-muted); font-size: 1.0625rem; }

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-sm);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    color: #fff;
}
.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}
.category-card span {
    font-size: 0.8125rem;
    opacity: 0;
    margin-top: 0.35rem;
    transform: translateY(6px);
    transition: all var(--transition);
}
.category-card:hover span { opacity: 1; transform: translateY(0); }

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}
.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-card-image {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0ebe3;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 0.35rem 0.7rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}
.badge-sale { background: #c0392b; color: #fff; }
.badge-hot { background: var(--color-primary); color: #fff; left: auto; right: 14px; }
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border: 1.5px solid #fff;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.product-card-body { padding: 1.35rem 1.35rem 1.5rem; }
.product-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    font-weight: 600;
}
.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.4rem 0 0.65rem;
    line-height: 1.3;
}
.product-card h3 a:hover { color: var(--color-accent); }
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.price-current {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-primary);
}
.price-old {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}
.product-card-actions {
    display: flex;
    gap: 0.5rem;
}
.product-card-actions .btn { flex: 1; }

/* Promo */
.promo-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-primary);
    color: #fff;
    min-height: 360px;
    box-shadow: var(--shadow-lg);
}
.promo-banner-content {
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}
.promo-banner-content p { opacity: 0.85; margin-bottom: 1.5rem; max-width: 380px; }
.promo-banner-image {
    background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=900&q=80') center/cover;
    min-height: 280px;
}

/* Trust & conversion */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}
.trust-item {
    text-align: center;
    padding: 0.5rem;
}
.trust-item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: var(--color-bg);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--color-accent);
}
.trust-item span { font-size: 0.875rem; color: var(--color-text-muted); }

.conversion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.conversion-card {
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.conversion-card:hover { box-shadow: var(--shadow); }
.conversion-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}
.conversion-card p { color: var(--color-text-muted); font-size: 0.9375rem; }

/* Shop */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    padding: 2rem 0 5rem;
}
.shop-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}
.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    cursor: pointer;
    font-size: 0.9rem;
}
.shop-sidebar input[type="number"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.shop-toolbar select {
    padding: 0.6rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    background: var(--color-surface);
}

/* PDP */
.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    padding: 2rem 0 5rem;
}
.product-gallery {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    align-self: start;
}
.product-gallery-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    background: #f0ebe3;
    border: 1px solid var(--color-border);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.product-meta { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.product-info .price-current { font-size: 1.75rem; }
.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}
.product-specs dt { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.product-specs dd { font-weight: 600; margin-top: 0.15rem; }
.pdp-trust { color: var(--color-text-muted); font-size: 0.875rem; }
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 1.25rem;
}
.qty-selector button {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color-bg);
    cursor: pointer;
    font-size: 1.1rem;
}
.qty-selector input {
    width: 52px;
    text-align: center;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}
.product-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Cart & checkout */
.page-hero { padding: 2.5rem 0 1.5rem; text-align: center; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
}
.cart-table {
    width: 100%;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.cart-table th, .cart-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.cart-item-product { display: flex; align-items: center; gap: 1rem; }
.cart-item-product img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius);
}
.cart-summary {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 120px;
}
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    padding-bottom: 5rem;
}
.checkout-form .form-group { margin-bottom: 1.25rem; }
.checkout-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-primary);
}
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--color-bg);
}
.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-step { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.step-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.step-title span {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
}
.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--color-surface);
}
.payment-option:has(input:checked) {
    border-color: var(--color-accent);
    background: rgba(184, 115, 51, 0.06);
}
.otp-status { font-size: 0.875rem; color: var(--color-accent); }

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}
.alert-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.alert-error { background: #ffebee; color: #b71c1c; border: 1px solid #ffcdd2; }

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 5rem;
}
.contact-card {
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
}
.footer-cta {
    background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary));
    padding: 4rem 0;
    text-align: center;
}
.footer-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.footer-cta p { margin-bottom: 1.5rem; opacity: 0.9; max-width: 480px; margin-left: auto; margin-right: auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}
.footer-grid h4 {
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.footer-grid a:hover { color: var(--color-accent-light); }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin: 1rem 0; font-size: 0.9rem; opacity: 0.75; line-height: 1.6; }
.social-links { display: flex; gap: 0.65rem; margin-top: 1rem; }
.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}
.social-links a:hover { border-color: var(--color-accent); color: var(--color-accent-light); }
.social-links a svg { display: block; }
/* Contact page — dark icons on light card */
.contact-card .social-links a {
    border-color: #ddd;
    color: #444;
}
.contact-card .social-links a:hover {
    border-color: var(--mp-orange, var(--color-accent));
    color: var(--mp-orange, var(--color-accent));
}
.footer-address { font-size: 0.875rem; opacity: 0.65; margin-top: 1rem; line-height: 1.55; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    opacity: 0.55;
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}
.empty-state h2 { font-family: var(--font-display); font-weight: 600; margin-bottom: 1rem; }

/* Admin */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 250px;
    background: var(--color-dark);
    color: #fff;
    padding: 1.5rem 0;
}
.admin-sidebar a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}
.admin-sidebar a:hover { background: rgba(255, 255, 255, 0.08); color: var(--color-accent-light); }
.admin-content { flex: 1; padding: 2rem; background: var(--color-bg); }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.admin-table th, .admin-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.status-badge { padding: 0.25rem 0.65rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }

/* Responsive */
@media (max-width: 1100px) {
    .hero-premium { grid-template-columns: 1fr; max-height: none; }
    .hero-premium-visual { min-height: 50vh; order: -1; }
    .hero-premium-visual::after {
        background: linear-gradient(180deg, transparent 40%, var(--color-primary) 100%);
    }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .shop-layout, .product-detail, .cart-layout, .contact-grid, .split-section, .promo-banner { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .product-gallery { position: static; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .conversion-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 88vw);
        height: 100vh;
        background: var(--color-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 1001;
    }
    .nav-menu.open { right: 0; }
    .page-home .site-header .nav-menu a { color: var(--color-text) !important; }
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 0.5rem;
    }
    .hero-premium-stats { flex-wrap: wrap; gap: 1.5rem; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .cart-table .hide-mobile { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
