/* Malerbosch Shop - Apple-Inspired Liquid Glass Design */

/* ========== Variables ========== */
:root {
    /* Malerbosch Farbpalette */
    --color-primary: #a2926a;
    --color-primary-dark: #8a7c58;
    --color-primary-light: #c4b68a;
    --color-accent: #15779b;

    /* Neutrale Farben - Apple Style */
    --color-text: #1d1d1f;
    --color-text-secondary: #86868b;
    --color-text-light: #6e6e73;
    --color-background: #ffffff;
    --color-background-secondary: #f5f5f7;
    --color-background-tertiary: #fbfbfd;
    --color-border: #d2d2d7;
    --color-border-light: #e8e8ed;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-heavy: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-dark: rgba(0, 0, 0, 0.06);
    --glass-blur: blur(20px);
    --glass-saturate: saturate(180%);

    /* Status */
    --color-success: #30d158;
    --color-error: #ff453a;
    --color-warning: #ff9f0a;

    /* Typografie - Apple System Fonts */
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1.0625rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.75rem;
    --font-size-4xl: 3.5rem;
    --font-size-5xl: 5rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 5rem;
    --spacing-4xl: 7rem;

    /* Border Radius */
    --border-radius-sm: 10px;
    --border-radius: 14px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --border-radius-full: 980px;

    /* Shadows - Apple Depth */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.14), 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* Transitions - Apple Easing */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --container-width: 1120px;
    --container-wide: 1440px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--color-text);
    background-color: var(--color-background);
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

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

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

ul, ol {
    list-style: none;
}

/* ========== Container ========== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.container-wide {
    max-width: var(--container-wide);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--color-text);
}

.text-headline {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.text-title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
}

.text-body {
    font-size: var(--font-size-base);
    line-height: 1.5;
}

.text-caption {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

/* ========== Utility Classes - Glassmorphism ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.glass-dark {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #a2926a 0%, #c4b68a 50%, #a2926a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: #111;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: #f5f5f7;
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: #e8e8ed;
    transform: scale(1.04);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: #fff;
    transform: scale(1.04);
}

.btn-text {
    background: transparent;
    color: var(--color-primary-dark);
    padding: 8px 0;
    font-weight: 500;
}

.btn-text:hover {
    color: var(--color-primary);
}

.btn-text::after {
    content: ' >';
    transition: transform var(--transition-fast);
    display: inline-block;
}

.btn-text:hover::after {
    transform: translateX(4px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 18px 36px;
    font-size: var(--font-size-lg);
}

.btn-block {
    width: 100%;
}

/* ========== Announcement Bar ========== */
.announcement-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ========== Header ========== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: saturate(200%) blur(30px);
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.logo {
    font-size: var(--font-size-lg);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text);
    display: flex;
    align-items: baseline;
}

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

.logo-tm {
    font-size: 9px;
    margin-left: 1px;
    vertical-align: super;
}

.main-nav {
    display: none;
}

@media (min-width: 834px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
    list-style: none;
}

.nav-list a {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text);
    transition: color var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-saturate) var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-saturate) var(--glass-blur);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 0.6rem 1.4rem;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    display: block;
    white-space: nowrap;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all var(--transition-fast);
    border-radius: 50%;
}

.header-icon-btn:hover {
    color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.04);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 834px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ========== Search Overlay ========== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    z-index: 200;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 680px;
    padding: var(--spacing-xl);
    position: relative;
}

.search-form {
    display: flex;
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-saturate) var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-saturate) var(--glass-blur);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-input {
    flex: 1;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--font-size-lg);
    border: none;
    outline: none;
    background: transparent;
    color: var(--color-text);
}

.search-submit {
    padding: var(--spacing-lg) var(--spacing-xl);
    background: #111;
    color: white;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-submit:hover {
    background: #333;
}

.search-close {
    position: absolute;
    top: 0;
    right: var(--spacing-xl);
    color: white;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ========== Cart Drawer ========== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-saturate) blur(40px);
    -webkit-backdrop-filter: var(--glass-saturate) blur(40px);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-drawer-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.cart-drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-text-secondary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.cart-drawer-close:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text);
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.cart-empty {
    text-align: center;
    color: var(--color-text-secondary);
    padding: var(--spacing-3xl);
}

.cart-drawer-footer {
    padding: var(--spacing-lg) var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(245, 245, 247, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 250;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* ========== Hero ========== */
.hero {
    background: linear-gradient(180deg, var(--color-background-secondary) 0%, var(--color-background) 100%);
    padding: var(--spacing-4xl) 0;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    line-height: 1.06;
}

@media (min-width: 834px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (min-width: 834px) {
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
}

/* ========== Sections ========== */
.section {
    padding: var(--spacing-3xl) 0;
}

@media (min-width: 834px) {
    .section {
        padding: var(--spacing-4xl) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    letter-spacing: -0.03em;
}

@media (min-width: 834px) {
    .section-title {
        font-size: var(--font-size-3xl);
    }
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ========== Products Grid ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--spacing-xl);
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 0, 0, 0.1);
}

.product-card-link {
    display: block;
    color: inherit;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-background-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: 6px 14px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    background: #111;
    color: white;
    letter-spacing: 0.02em;
}

.product-card-content {
    padding: var(--spacing-lg);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.product-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.price-current {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text);
}

.price-original {
    color: var(--color-text-light);
    text-decoration: line-through;
    font-size: var(--font-size-sm);
}

.product-card .btn {
    margin-top: auto;
}

/* ========== Features ========== */
.features-section {
    background: var(--color-background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--spacing-lg);
}

@media (min-width: 834px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--color-background-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-xl);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--color-background);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(162, 146, 106, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* ========== Newsletter ========== */
.newsletter-section {
    background: #111;
    color: white;
}

.newsletter-box {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

@media (min-width: 640px) {
    .newsletter-box {
        padding: 3.5rem 4rem;
    }
}

.newsletter-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.03em;
}

.newsletter-text {
    opacity: 0.7;
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-base);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-base);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn-primary {
    background: white;
    color: #111;
    font-weight: 600;
}

.newsletter-form .btn-primary:hover {
    background: #f5f5f7;
    transform: scale(1.04);
}

/* ========== Footer ========== */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.56);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    font-size: var(--font-size-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 834px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.01em;
}

.footer-text {
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.56);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.92);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.56);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--font-size-sm);
}

.payment-icons {
    display: flex;
    gap: var(--spacing-sm);
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.36);
}

/* ========== Forms ========== */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--color-background);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(162, 146, 106, 0.15);
}

.form-group input.error {
    border-color: var(--color-error);
}

.error-text {
    color: var(--color-error);
    font-size: var(--font-size-xs);
    margin-top: var(--spacing-xs);
    display: block;
}

.help-text {
    color: var(--color-text-light);
    font-size: var(--font-size-xs);
    margin-top: var(--spacing-xs);
    display: block;
}

.form-row {
    display: flex;
    gap: var(--spacing-md);
}

.form-row .form-group {
    flex: 1;
}

.form-row .flex-1 { flex: 1; }
.form-row .flex-3 { flex: 3; }

/* ========== Auth Pages ========== */
.auth-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--color-background-secondary);
}

.auth-box {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-saturate) var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-saturate) var(--glass-blur);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-title {
    font-size: var(--font-size-2xl);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.auth-divider {
    text-align: center;
    margin: var(--spacing-xl) 0;
    color: var(--color-text-light);
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--color-border);
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-switch {
    text-align: center;
    color: var(--color-text-secondary);
}

.auth-switch a {
    color: var(--color-primary-dark);
    font-weight: 500;
}

.auth-legal {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    text-align: center;
    margin-top: var(--spacing-lg);
    line-height: 1.5;
}

.auth-legal a {
    text-decoration: underline;
}

.auth-link {
    font-size: var(--font-size-sm);
    color: var(--color-primary-dark);
}

/* ========== Cart Page ========== */
.cart-layout {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr 380px;
    }
}

.cart-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--color-background-secondary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    background: white;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    border-color: var(--color-text);
    background: var(--color-background-secondary);
}

.quantity-value {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs);
    font-size: var(--font-size-base);
}

.cart-item-total {
    font-weight: 700;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    color: var(--color-text-light);
    padding: var(--spacing-sm);
    transition: color var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--color-error);
}

.cart-summary {
    background: var(--color-background-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.cart-summary h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-base);
}

.summary-row.total {
    font-size: var(--font-size-xl);
    font-weight: 700;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.summary-tax-note {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.free-shipping-notice {
    background: rgba(162, 146, 106, 0.1);
    color: var(--color-primary-dark);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    text-align: center;
    margin: var(--spacing-md) 0;
    border: 1px solid rgba(162, 146, 106, 0.15);
}

/* ========== Checkout ========== */
.checkout-layout {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr 420px;
    }
}

.checkout-section {
    margin-bottom: var(--spacing-2xl);
}

.checkout-section-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.payment-option {
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-background);
}

.payment-option:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.payment-option input:checked + .payment-label {
    color: var(--color-primary-dark);
}

.payment-option input {
    margin-right: var(--spacing-md);
    accent-color: var(--color-primary);
}

.payment-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.checkout-summary {
    background: var(--color-background-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.checkout-items {
    margin-bottom: var(--spacing-lg);
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.checkout-item-image {
    position: relative;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-text-secondary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-size: var(--font-size-sm);
}

.checkout-item-price {
    font-weight: 600;
}

.checkout-totals {
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-lg);
}

.checkout-legal {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    text-align: center;
    margin-top: var(--spacing-lg);
    line-height: 1.5;
}

/* ========== Alerts ========== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-error {
    background: rgba(255, 69, 58, 0.08);
    color: #cc2d25;
    border-color: rgba(255, 69, 58, 0.15);
}

.alert-success {
    background: rgba(48, 209, 88, 0.08);
    color: #1a7a31;
    border-color: rgba(48, 209, 88, 0.15);
}

/* ========== Empty State ========== */
.empty-state {
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
}

.empty-state svg {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    opacity: 0.4;
}

.empty-state h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.empty-state p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.breadcrumb a {
    color: var(--color-text-secondary);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

/* ========== Product Detail ========== */
.product-detail-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
}

.product-gallery {
    position: sticky;
    top: 80px;
}

.product-gallery-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.product-thumbnails-vert {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 540px;
    overflow-y: auto;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.product-thumbnails-vert::-webkit-scrollbar {
    width: 4px;
}
.product-thumbnails-vert::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

.product-main-image {
    flex: 1;
    aspect-ratio: 1;
    background: var(--color-background-secondary);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.15s ease;
}

.product-main-image:hover img {
    transform: scale(1.02);
    transition: opacity 0.15s ease, transform 0.3s ease;
}

.gallery-zoom-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: #111;
}

.product-main-image:hover .gallery-zoom-btn {
    opacity: 1;
}

.gallery-zoom-btn:hover {
    transform: scale(1.1);
}

.product-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-background-secondary);
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: var(--color-primary-light);
}

.thumbnail.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .product-gallery-inner { flex-direction: column-reverse; }
    .product-thumbnails-vert {
        flex-direction: row;
        max-height: none;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .thumbnail { width: 68px; height: 68px; }
}

.product-info {
    padding: var(--spacing-lg) 0;
}

.product-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
}

@media (min-width: 834px) {
    .product-title {
        font-size: var(--font-size-3xl);
    }
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.price-current-large {
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.price-original-large {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    text-decoration: line-through;
}

.price-discount {
    background: #111;
    color: white;
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.product-description {
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-selector .quantity-btn {
    border: none;
    border-radius: 0;
    width: 44px;
    height: 44px;
}

.quantity-selector .quantity-input {
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-radius: 0;
    width: 56px;
    height: 44px;
}

.product-actions .btn-primary {
    flex: 1;
    min-width: 200px;
}

.product-stock {
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-sm);
}

.stock-available {
    color: var(--color-success);
}

.stock-low {
    color: var(--color-warning);
}

.stock-out {
    color: var(--color-error);
}

.product-features {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.feature-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ========== Filter ========== */
.products-filter {
    margin-bottom: var(--spacing-xl);
}

.filter-categories {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    background: white;
    color: var(--color-text);
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--color-text);
    background: var(--color-background-secondary);
}

.filter-btn.active {
    background: #111;
    color: white;
    border-color: #111;
}

/* ========== Pagination ========== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.pagination-btn {
    padding: 10px 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    background: white;
    font-weight: 500;
}

.pagination-btn:hover {
    border-color: var(--color-text);
    background: var(--color-background-secondary);
}

.pagination-info {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

/* ========== Account ========== */
.account-layout {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 834px) {
    .account-layout {
        grid-template-columns: 220px 1fr;
    }
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-nav-item {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.account-nav-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text);
}

.account-nav-item.active {
    background: rgba(162, 146, 106, 0.12);
    color: var(--color-primary-dark);
}

.account-welcome {
    margin-bottom: var(--spacing-2xl);
}

.account-welcome h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.account-welcome p {
    color: var(--color-text-secondary);
}

.account-cards {
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 834px) {
    .account-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.account-card {
    background: var(--color-background-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    transition: all var(--transition);
}

.account-card:hover {
    box-shadow: var(--shadow-sm);
}

.account-card h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.account-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.text-muted {
    color: var(--color-text-light);
}

/* ========== Page Header ========== */
.page-header {
    background: var(--color-background-secondary);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.page-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.03em;
}

.page-subtitle {
    color: var(--color-text-secondary);
}

/* ========== Checkbox ========== */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: var(--font-size-sm);
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
    accent-color: var(--color-primary);
}

/* ========== Mobile Navigation ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-saturate) blur(40px);
    -webkit-backdrop-filter: var(--glass-saturate) blur(40px);
    z-index: 300;
    transition: left var(--transition);
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-close {
    font-size: 28px;
    color: var(--color-text-secondary);
}

.mobile-nav-list {
    padding: var(--spacing-lg);
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-list a {
    display: block;
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-base);
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.mobile-nav-list a:hover {
    color: var(--color-primary);
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: var(--spacing-md) 0;
    border: none;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 250;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

/* ========== Problem Section ========== */
.problem-section {
    padding: 80px 0 0;
    background: var(--color-background);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: var(--color-background-secondary);
    padding: 30px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--color-background);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

.problem-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.problem-text {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.solution-banner {
    text-align: center;
    background: #111;
    color: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
}

.solution-banner h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.solution-banner p {
    opacity: 0.7;
    font-size: var(--font-size-base);
}

.solution-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.solution-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.solution-text p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========== Hero Compact ========== */
.hero-compact {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

/* ========== Hero Logo & Product ========== */
.hero-logo {
    width: 70px;
    height: auto;
    margin: 0 auto var(--spacing-sm);
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

@media (min-width: 834px) {
    .hero-logo {
        width: 80px;
    }
}

h2.top-seller-title {
    display: none !important;
}

.hero-product {
    text-align: center;
    margin-top: var(--spacing-md);
}

.hero-product-card {
    display: inline-block;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    max-width: 200px;
    margin-bottom: var(--spacing-md);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 834px) {
    .hero-product-card {
        max-width: 240px;
    }
}

.hero-product-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hero-product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-background-secondary);
}

.hero-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product-info {
    padding: var(--spacing-md);
    background: white;
}

.hero-product-info h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.hero-product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

/* ========== Hero Banner ========== */
.hero-banner {
    width: 100%;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Lifestyle Section ========== */
.lifestyle-section {
    padding: 0;
    background: none;
}

.lifestyle-split-section {
    padding: 2rem;
    background: var(--color-background);
}
.lifestyle-split-inner {
    display: flex;
    align-items: stretch;
    background: #111;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}
.lifestyle-split-text {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
}
.lifestyle-split-image {
    width: 40%;
    background-image: url('/assets/images/home-banner.png');
    background-size: 160%;
    background-position: center 80%;
    border-radius: var(--border-radius);
    margin: 1rem 1rem 1rem 0;
}
.lifestyle-split-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}
.lifestyle-split-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}
.lifestyle-split-text p {
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.8;
    font-size: 0.97rem;
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .lifestyle-split-inner { flex-direction: column; }
    .lifestyle-split-image { width: calc(100% - 2rem); min-height: 260px; margin: 0 1rem 1rem; }
    .lifestyle-split-text { padding: 2rem 1.5rem; }
}

/* ========== Problem Icons als Bilder ========== */
.problem-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Varianten-Auswahl */
.product-variants {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.variant-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-btn {
    padding: 10px 20px;
    border: 1.5px solid var(--color-border);
    background: #fff;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.variant-btn:hover {
    border-color: var(--color-text);
}

.variant-btn.active {
    border-color: #111;
    background: #111;
    color: #fff;
}

.variant-aufpreis {
    font-size: 12px;
    opacity: 0.7;
}

.variant-btn.active .variant-aufpreis {
    opacity: 1;
}

/* Varianten mit Bild */
.variant-btn .variant-thumb {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.variant-btn.active .variant-thumb {
    border-color: rgba(255, 255, 255, 0.3);
}

.variant-name {
    flex: 1;
}

/* Variante im Warenkorb */
.cart-item-variant {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 4px 0;
}

/* ========== Produktdetail Erweiterungen ========== */

/* Pfeile aus Mengenauswahl entfernen */
.quantity-input {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Features Section */
.product-features-section {
    background: var(--color-background-secondary);
    padding: 80px 0;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid-large {
        grid-template-columns: 1fr;
    }
}

.feature-card-large {
    background: var(--color-background);
    padding: 40px 30px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.feature-card-large:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(162, 146, 106, 0.1);
    border-radius: var(--border-radius-lg);
    color: var(--color-primary-dark);
    transition: all var(--transition);
}

.feature-card-large:hover .feature-icon-large {
    background: var(--color-primary);
    color: white;
    transform: scale(1.08);
}

.feature-card-large h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-card-large p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--color-background-secondary);
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--color-background);
    padding: 28px 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.benefit-check {
    width: 36px;
    height: 36px;
    background: #111;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Specs Section */
.specs-section {
    padding: 80px 0;
    background: var(--color-background);
}

.specs-grid {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--color-text);
}

.spec-value {
    color: var(--color-text-secondary);
}

/* ========== Social Proof - Trust Stats ========== */
.trust-stats-section {
    padding: 60px 0 0;
    background: none;
}
.trust-stats-section + .lifestyle-section {
    display: block;
    font-size: 0;
    line-height: 0;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

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

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.04em;
}

.trust-stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ========== Testimonials ========== */
.testimonials-section {
    padding: 80px 0;
    background: var(--color-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--color-background-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: #111;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.testimonial-product {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.testimonial-verified {
    font-size: 0.8rem;
    color: var(--color-success);
    font-weight: 500;
}

/* ========== Product Card Social Proof ========== */
.product-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-card-stars {
    color: #f5a623;
    letter-spacing: 1px;
}

.product-card-reviews {
    color: var(--color-text-secondary);
}

.product-badge.bestseller {
    background: #111;
    color: white;
}

.product-badge.neu {
    background: var(--color-success);
    color: white;
}

/* ========== Product Detail Social Proof ========== */
.product-rating-large {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.product-rating-stars {
    font-size: 1.2rem;
    color: #f5a623;
    letter-spacing: 2px;
}

.product-rating-score {
    font-weight: 700;
    color: var(--color-text);
}

.product-rating-count {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.product-rating-count a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.product-sold-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-sold-count svg {
    color: var(--color-success);
}

/* ========== Reviews Section ========== */
.reviews-section {
    padding: 60px 0;
    background: var(--color-background-secondary);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--color-background);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-average {
    text-align: center;
}

.reviews-average-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.04em;
}

.reviews-average-stars {
    font-size: 1.3rem;
    color: #f5a623;
    margin: 8px 0;
    letter-spacing: 2px;
}

.reviews-average-count {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.reviews-bars {
    flex: 1;
    max-width: 300px;
}

.review-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-bar-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    width: 50px;
}

.review-bar-track {
    flex: 1;
    height: 8px;
    background: var(--color-border-light);
    border-radius: 4px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background: var(--color-background);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: rgba(162, 146, 106, 0.12);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-author-name {
    font-weight: 600;
    color: var(--color-text);
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.review-stars {
    color: #f5a623;
    letter-spacing: 1px;
}

.review-text {
    color: var(--color-text);
    line-height: 1.6;
}

.review-verified {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--color-success);
}

/* ========== Footer Trust Badges ========== */
.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

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

.trust-badge svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* ========== Top Seller Section ========== */
.hero-product-wrapper {
    position: static;
    display: block;
}

.top-seller-btn {
    position: static;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background-color: #111;
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 999px;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-bottom: 1.5rem;
}

.top-seller-btn:hover {
    background-color: #333;
    transform: scale(1.05);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (min-width: 834px) {
    .top-seller-btn {
        font-size: 2.2rem;
        padding: 18px 60px;
    }
}

/* ========== Support Page ========== */

/* Support Info Cards */
.support-info-section {
    padding: 60px 0;
}

.support-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.support-info-card {
    background: var(--color-background-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    text-align: center;
    transition: all var(--transition);
}

.support-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.support-info-icon {
    width: 64px;
    height: 64px;
    background: #111;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: all var(--transition);
}

.support-info-card:hover .support-info-icon {
    background: var(--color-primary);
    transform: scale(1.08);
}

.support-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.support-info-card p {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.support-info-note {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: var(--color-background-secondary);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-background);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.contact-form-header p {
    color: var(--color-text-secondary);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-form .form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(162, 146, 106, 0.15);
}

.contact-form .form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 22px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========== Community Section ========== */
.community-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('/assets/images/community-banner.png');
    background-size: cover;
    background-position: center 40%;
}
.community-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}
.community-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 620px;
    padding: 2rem;
}
.community-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}
.community-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}
.community-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ========== Product Spotlight Section ========== */
.product-spotlight-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.spotlight-card {
    background: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

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

.spotlight-card-featured {
    border-color: #111;
    box-shadow: var(--shadow-md);
}

.spotlight-img-wrap {
    background: var(--color-background-secondary);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.spotlight-card:hover .spotlight-img-wrap img {
    transform: scale(1.05);
}

.spotlight-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.spotlight-badge {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--border-radius-full);
    align-self: flex-start;
}

.spotlight-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.spotlight-features li {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.spotlight-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 900px) {
    .spotlight-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 601px) and (max-width: 900px) {
    .spotlight-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .spotlight-card-featured { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ========== How It Works Section ========== */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--color-background-secondary);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--color-background);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: #111;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: #fff;
    transition: all var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.08);
    background: var(--color-primary-dark);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}

.step-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.step-arrow {
    color: var(--color-primary);
    padding: 0 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .steps-grid { flex-direction: column; gap: 1rem; }
    .step-arrow { transform: rotate(90deg); }
    .step-card { max-width: 100%; width: 100%; }
}

/* ========== Lifestyle Photo Banner ========== */
.lifestyle-photo-banner {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.lifestyle-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.lifestyle-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
    display: flex;
    align-items: center;
}

.lifestyle-photo-text {
    padding: 2rem 4rem;
    color: #fff;
    max-width: 520px;
}

.lifestyle-photo-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
    margin-bottom: 1rem;
}

.lifestyle-photo-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.8rem;
    letter-spacing: -0.04em;
}

@media (max-width: 768px) {
    .lifestyle-photo-banner { height: 380px; }
    .lifestyle-photo-text { padding: 2rem; }
    .lifestyle-photo-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
        align-items: flex-end;
    }
}
