/* ===================================
   MINAMIYAMA - Premium Wagyu D2C
   Dark Luxury Theme
   =================================== */

:root {
    /* Colors - Dark Luxury Palette */
    --color-bg: #0a0a0a;
    --color-bg-elevated: #121212;
    --color-bg-card: #1a1a1a;
    --color-surface: #222222;
    --color-border: #2a2a2a;
    --color-border-light: #333333;
    
    /* Text Colors */
    --color-text: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    
    /* Accent Colors - Wagyu Red & Gold */
    --color-accent: #c41e3a;
    --color-accent-light: #e63946;
    --color-accent-dark: #9b1b30;
    --color-gold: #d4af37;
    --color-gold-light: #f0d78c;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-zh: 'Noto Sans SC', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.lang-ja {
    font-family: var(--font-jp), var(--font-body);
}

body.lang-zh {
    font-family: var(--font-zh), var(--font-body);
}

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

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

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ===================================
   GEO SELECTOR MODAL
   =================================== */
.geo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: var(--transition-base);
}

.geo-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.geo-modal-content {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 500px;
    width: 90%;
    animation: modalSlideUp 0.5s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.geo-modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.geo-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-md);
    border: 2px solid var(--color-gold);
}

.geo-modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.geo-modal-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.geo-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.geo-group h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.geo-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition-base);
    margin-bottom: var(--space-xs);
}

.geo-btn:hover {
    background: var(--color-surface);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.geo-flag {
    font-size: 1.5rem;
}

.geo-badge {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    color: white;
}

.geo-btn-outline {
    background: transparent;
    border-style: dashed;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.logo-jp {
    font-family: var(--font-jp);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
}

.logo-en {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text);
}

.nav {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

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

.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 2px;
}

@media (max-width: 900px) {
    .header .lang-switcher {
        display: none;
    }
    
    .lang-switcher-mobile {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 998;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        gap: 2px;
        background: var(--color-bg-card);
        border-radius: var(--radius-md);
        padding: 2px;
    }
}

@media (min-width: 901px) {
    .lang-switcher-mobile {
        display: none;
    }
}

.lang-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

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

.lang-btn.active {
    background: var(--color-accent);
    color: white;
}

.cart-btn {
    position: relative;
    color: var(--color-text);
    padding: var(--space-xs);
}

.cart-btn:hover {
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
    animation: heroFadeIn 1s ease 0.3s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    margin-bottom: var(--space-lg);
}

.hero-badge span {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: heroScrollPulse 2s ease infinite;
}

@keyframes heroScrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   TRUST BADGES SECTION
   =================================== */
.trust-section {
    padding: var(--space-2xl) 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-badge span {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

/* ===================================
   SECTIONS COMMON
   =================================== */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-tag-light {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: var(--space-sm) auto 0;
}

/* ===================================
   BEST SELLERS SECTION
   =================================== */
.bestsellers {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

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

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
}

.product-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-5px);
}

.product-card-featured {
    border-color: var(--color-gold);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.4rem 0.8rem;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.product-badge-new {
    background: var(--color-gold);
    color: var(--color-bg);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

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

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.price-current {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===================================
   EXPERIENCES SECTION
   =================================== */
.experiences {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-elevated);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-md);
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
}

@media (max-width: 600px) {
    .experience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
}

.experience-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.experience-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 600px) {
    .experience-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

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

.experience-card:hover img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.experience-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    display: block;
}

.experience-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.experience-card-large .experience-overlay h3 {
    font-size: 1.75rem;
}

.experience-overlay p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.experience-card-accent {
    border: 1px solid var(--color-gold);
}

/* ===================================
   STORY SECTION
   =================================== */
.story {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.story-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--space-md);
}

.story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.story-image-1 {
    grid-row: span 2;
}

.story-content {
    padding: 0 var(--space-lg);
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--space-lg);
}

.story-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.story-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.story-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.story-feature-icon svg {
    width: 100%;
    height: 100%;
}

.story-feature h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

/* ===================================
   ACADEMY SECTION
   =================================== */
.academy {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-elevated);
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

.academy-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-base);
}

.academy-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.academy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    color: var(--color-gold);
}

.academy-icon svg {
    width: 100%;
    height: 100%;
}

.academy-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.academy-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.academy-link {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500;
}

.academy-link:hover {
    color: var(--color-gold-light);
}

/* ===================================
   SUBSCRIPTION SECTION
   =================================== */
.subscription {
    position: relative;
    padding: var(--space-3xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.subscription-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.subscription-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.8));
}

.subscription-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
}

.subscription-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.subscription-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.subscription-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .subscription-tiers {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

.tier {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
}

.tier-featured {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
}

.tier h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.tier-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.tier-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.tier p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ===================================
   WHOLESALE SECTION
   =================================== */
.wholesale {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.wholesale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 900px) {
    .wholesale-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.wholesale-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.wholesale-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.wholesale-benefits {
    margin-bottom: var(--space-xl);
}

.wholesale-benefits li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
}

.wholesale-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.wholesale-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.logo-footer {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

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

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

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

.footer-column h4 {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.legal-info h5 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

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

.legal-links {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.legal-links a {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.legal-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.payment-icons {
    display: flex;
    gap: var(--space-sm);
}

.payment-icons span {
    padding: 0.25rem 0.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

::selection {
    background: var(--color-accent);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: var(--space-lg);
    }
    
    .trust-badge {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .trust-badge {
        flex: 0 0 100%;
    }
}

@media print {
    .header,
    .geo-modal,
    .hero-video-container,
    .footer-social {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
