/* ==========================================
   DOPSEN CAFÉ - DESIGN SYSTEM
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #2D1810;
    --color-secondary: #C9A86C;
    --color-accent: #8B4513;
    --color-background: #0F0A07;
    --color-surface: #1A120D;
    --color-surface-light: #2A1F18;
    --color-text: #F5F0EB;
    --color-text-muted: #A89888;
    --color-gold: #C9A86C;
    --color-gold-light: #D4B87A;
    --color-success: #4CAF50;
    --color-error: #FF5252;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C9A86C 0%, #D4B87A 50%, #C9A86C 100%);
    --gradient-dark: linear-gradient(180deg, rgba(15, 10, 7, 0) 0%, rgba(15, 10, 7, 1) 100%);
    --gradient-surface: linear-gradient(135deg, #1A120D 0%, #2A1F18 100%);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

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

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 168, 108, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

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

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

/* ==========================================
   UTILITIES
   ========================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.text-gold {
    color: var(--color-gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-primary);
    font-weight: 600;
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   LOADER
   ========================================== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-bean {
    width: 80px;
    height: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

.bean-svg {
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite;
}

.loader-text {
    margin-top: var(--spacing-lg);
    color: var(--color-text-muted);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-lg) 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 10, 7, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

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

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: var(--spacing-sm) 0;
}

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

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

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

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

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    transition: all var(--transition-base);
}

.cart-btn:hover {
    background: var(--color-surface-light);
    transform: scale(1.1);
}

.cart-icon {
    width: 22px;
    height: 22px;
    color: var(--color-text);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transform: scale(0);
    transition: transform var(--transition-bounce);
}

.cart-count.show {
    transform: scale(1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-background);
    z-index: 999;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.mobile-menu.active {
    transform: translateX(0);
}

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

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
}

/* ==========================================
   HERO SECTION
   ========================================== */

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero.loaded .hero-bg-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 10, 7, 0.9) 0%,
            rgba(15, 10, 7, 0.7) 50%,
            rgba(15, 10, 7, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-lg);
}

.hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

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

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {

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

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

/* ==========================================
   ANIMATIONS
   ========================================== */

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   SECTIONS
   ========================================== */

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

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
}

/* Categories */
.categories {
    padding: var(--spacing-3xl) 0;
    background: var(--color-surface);
}

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

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-img {
    position: relative;
    aspect-ratio: 4/3;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-xl);
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.category-content p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

/* Featured Products */
.featured {
    padding: var(--spacing-3xl) 0;
}

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

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-gold);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    z-index: 1;
}

.product-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.product-actions {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    display: flex;
    gap: var(--spacing-sm);
    transition: all var(--transition-base);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-full);
    color: var(--color-text);
    transition: all var(--transition-base);
}

.product-action-btn:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.product-action-btn svg {
    width: 20px;
    height: 20px;
}

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

.product-category {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

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

.product-weight {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-left: var(--spacing-sm);
}

/* About Preview */
.about-preview {
    padding: var(--spacing-3xl) 0;
    background: var(--color-surface);
}

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

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.about-content .btn {
    margin-top: var(--spacing-lg);
}

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

.stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-background);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

/* ==========================================
   PAGES
   ========================================== */

.page {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
}

.page.active {
    display: block;
}

.page-header {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    background: var(--gradient-surface);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* Products Page */
.products-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    border: 2px solid var(--color-surface-light);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.filter-btn.active {
    background: var(--color-gold);
    color: var(--color-primary);
}

/* About Page */
.about-full {
    padding: var(--spacing-2xl) 0;
}

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

.about-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-gold);
}

.about-section p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.value-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    padding: var(--spacing-2xl) 0;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    color: var(--color-gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    color: var(--color-text-muted);
}

.contact-form {
    background: var(--color-surface);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--color-background);
    border: 2px solid var(--color-surface-light);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* ==========================================
   SHIPPING ESTIMATOR
   ========================================== */

.shipping-estimator {
    background: var(--color-background);
    border: 1px solid var(--color-surface-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.shipping-estimator-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.shipping-estimator h4 {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.shipping-status {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.shipping-estimate {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--spacing-md);
    background: var(--color-surface);
    border: 1px solid var(--color-surface-light);
    border-radius: var(--radius-md);
}

.shipping-estimate strong {
    font-size: 1rem;
    color: var(--color-gold);
}

.shipping-estimate small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.shipping-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

.shipping-estimator select {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--color-background);
    border: 2px solid var(--color-surface-light);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: border-color var(--transition-base);
}

.shipping-estimator select:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* ==========================================
   CART SIDEBAR
   ========================================== */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    transition: all var(--transition-base);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--color-surface);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--color-surface-light);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

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

.cart-close svg {
    width: 24px;
    height: 24px;
}

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

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

.cart-empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-background);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.cart-item-price {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: auto;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.qty-btn:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.cart-item-qty {
    min-width: 24px;
    text-align: center;
    font-weight: 500;
}

.cart-item-remove {
    margin-left: auto;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

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

.cart-item-remove svg {
    width: 18px;
    height: 18px;
}

.cart-footer {
    padding: var(--spacing-xl);
    border-top: 1px solid var(--color-surface-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

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

/* ==========================================
   MODALS
   ========================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: var(--spacing-lg);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    z-index: 1;
    transition: color var(--transition-base);
}

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

.modal-close svg {
    width: 24px;
    height: 24px;
}

/* Checkout Modal */
.checkout-modal {
    max-width: 600px;
    padding: var(--spacing-2xl);
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-surface-light);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.step.active,
.step.completed {
    opacity: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
}

.step.active .step-num,
.step.completed .step-num {
    background: var(--color-gold);
    color: var(--color-primary);
}

.step-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.checkout-step-content {
    display: none;
}

.checkout-step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.checkout-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

/* Order Summary */
.order-summary {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.order-summary h4 {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.summary-items {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: var(--spacing-md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
}

.summary-item-name {
    color: var(--color-text-muted);
}

.summary-totals {
    border-top: 1px solid var(--color-surface-light);
    padding-top: var(--spacing-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.summary-row.total {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--spacing-sm);
}

.summary-row.total span:last-child {
    color: var(--color-gold);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: #009ee3;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    transition: all var(--transition-base);
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.payment-btn img {
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Confirmation */
.confirmation {
    text-align: center;
    padding: var(--spacing-2xl);
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    border-radius: var(--radius-full);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.confirmation-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.confirmation h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.confirmation p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
}

.order-number {
    display: inline-flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-lg);
    background: var(--color-background);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
}

.order-number span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.order-number strong {
    font-size: 1.25rem;
    color: var(--color-gold);
}

/* Product Modal */
.product-modal {
    max-width: 800px;
    padding: 0;
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-modal-img {
    aspect-ratio: 1;
}

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

.product-modal-info {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
}

.product-modal-category {
    font-size: 0.875rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.product-modal-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.product-modal-description {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.product-modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xl);
}

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

.product-modal-qty span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--color-background);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.qty-selector button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.25rem;
    transition: color var(--transition-base);
}

.qty-selector button:hover {
    color: var(--color-gold);
}

.qty-selector input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-weight: 600;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */

.toast-container {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 3000;
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.3s ease forwards;
    min-width: 280px;
}

.toast.removing {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

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

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast-icon {
    width: 24px;
    height: 24px;
    color: var(--color-success);
}

.toast-message {
    flex: 1;
    font-size: 0.875rem;
}

.toast-close {
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

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

.toast-close svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--color-surface);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

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

.footer-logo {
    height: 40px;
    margin-bottom: var(--spacing-lg);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gold);
}

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

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

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

.footer-newsletter p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

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

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-md);
    background: var(--color-background);
    border: 2px solid var(--color-surface-light);
    border-radius: var(--radius-md);
    color: var(--color-text);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.newsletter-form .btn {
    padding: var(--spacing-md);
}

.newsletter-form .btn svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-surface-light);
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

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

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .product-modal-img {
        max-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-steps {
        gap: var(--spacing-lg);
    }

    .step-text {
        display: none;
    }

    .toast-container {
        left: var(--spacing-md);
        right: var(--spacing-md);
        bottom: var(--spacing-md);
    }

    .toast {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--spacing-lg);
    }

    .hero-btns .btn {
        width: 100%;
    }

    .stat-item {
        padding: var(--spacing-lg);
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ==========================================
   CREDIT CARD & PAYMENT GATEWAY
   ========================================== */

/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.payment-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-background);
    border: 2px solid var(--color-surface-light);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all var(--transition-base);
}

.payment-tab:hover {
    border-color: var(--color-gold);
}

.payment-tab.active {
    border-color: var(--color-gold);
    background: rgba(201, 168, 108, 0.1);
    color: var(--color-gold);
}

.payment-tab svg {
    width: 20px;
    height: 20px;
}

.payment-content {
    display: none;
}

.payment-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Credit Card Preview */
.credit-card-preview {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1.586/1;
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.credit-card-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #C9A86C 0%, #D4B87A 50%, #a08050 100%);
    border-radius: 6px;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: white;
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-details {
    display: flex;
    justify-content: space-between;
    color: white;
}

.card-holder span,
.card-expiry span {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 2px;
}

.card-holder div,
.card-expiry div {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-brand {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    opacity: 0.9;
}

/* Card Form */
.card-form {
    margin-top: var(--spacing-lg);
}

.card-form .form-group select {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--color-background);
    border: 2px solid var(--color-surface-light);
    border-radius: var(--radius-md);
    color: var(--color-text);
    cursor: pointer;
}

.card-form .form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(76, 175, 80, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-success);
    font-size: 0.75rem;
}

.security-note svg {
    width: 16px;
    height: 16px;
}

/* Mercado Pago Section */
.mercadopago-info {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.mp-logo {
    height: 40px;
    margin: 0 auto var(--spacing-lg);
}

.mercadopago-info p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.mp-benefits {
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.mp-benefits li {
    padding: var(--spacing-xs) 0;
    color: var(--color-success);
    font-size: 0.875rem;
}

/* Processing Animation */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.processing-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--color-surface-light);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--spacing-lg);
}

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

.processing-text {
    color: var(--color-text);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.processing-subtext {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Order Tracking Badge */
.tracking-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.tracking-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.tracking-badge.processing {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.tracking-badge.shipped {
    background: rgba(156, 39, 176, 0.2);
    color: #9C27B0;
}

.tracking-badge.delivered {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.tracking-badge.cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

/* ==========================================
   ULTRA PRO UI + MOTION (DOPSEN)
   ========================================== */

/* Motion easing + extra tokens */
:root {
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --color-border: rgba(245, 240, 235, 0.08);
    --color-border-strong: rgba(201, 168, 108, 0.22);

    --shadow-xl: 0 18px 50px rgba(0, 0, 0, .55);
    --shadow-glow: 0 0 0 1px rgba(201, 168, 108, .10), 0 20px 60px rgba(0, 0, 0, .55);
}

body {
    position: relative;
    background:
        radial-gradient(900px circle at 18% 12%, rgba(201, 168, 108, 0.16), transparent 45%),
        radial-gradient(700px circle at 80% -10%, rgba(201, 168, 108, 0.10), transparent 55%),
        radial-gradient(700px circle at 70% 85%, rgba(201, 168, 108, 0.06), transparent 55%),
        var(--color-background);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("/assets/img/noise.png");
    background-repeat: repeat;
    background-size: 220px 220px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

body>* {
    position: relative;
    z-index: 1;
}

/* Better focus states (pro accessibility) */
:focus-visible {
    outline: 2px solid rgba(201, 168, 108, .85);
    outline-offset: 3px;
    border-radius: 10px;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform-origin: 0 0;
    transform: scaleX(0);
    z-index: 5000;
    box-shadow: 0 10px 30px rgba(201, 168, 108, .20);
}

/* Back to top button */
.to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    background: rgba(26, 18, 13, 0.78);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    color: var(--color-text);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(10px) scale(.98);
    pointer-events: none;
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), border-color .25s var(--ease-out);
}

.to-top svg {
    width: 20px;
    height: 20px;
}

.to-top.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.to-top:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-gold);
}

/* Page transition (SPA navigation) */
.page.active {
    display: block;
    animation: pageIn .55s var(--ease-out) both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(10px);
    }

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

/* Upgraded reveal animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
    transition:
        opacity .85s var(--ease-out),
        transform .85s var(--ease-out),
        filter 1.1s var(--ease-out);
    will-change: opacity, transform, filter;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Hero fade up (add blur) */
.animate-fade-up {
    animation: fadeUp 0.9s var(--ease-out) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(12px);
    }

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

/* Interactive cards: spotlight + subtle 3D tilt */
.interactive-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    --mx: 50%;
    --my: 50%;
    --rx: 0deg;
    --ry: 0deg;
    --lift: 0px;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}

.interactive-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(560px circle at var(--mx) var(--my), rgba(201, 168, 108, .16), transparent 40%);
    opacity: 0;
    transition: opacity .35s var(--ease-out);
    pointer-events: none;
}

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

.interactive-card:hover {
    transform: translateY(var(--lift)) rotateX(var(--rx)) rotateY(var(--ry));
    box-shadow: var(--shadow-xl);
    border-color: var(--color-border-strong);
}

/* Apply a tasteful border upgrade to common cards */
.product-card,
.category-card,
.value-card,
.stat-item,
.contact-form,
.highlight-card,
.process-step,
.media-card,
.pillar {
    border: 1px solid var(--color-border);
}

/* Product cards: keep existing behavior but compatible with tilt */
.product-card {
    background: linear-gradient(135deg, rgba(26, 18, 13, .96) 0%, rgba(42, 31, 24, .92) 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .0);
    --lift: -8px;
}

.product-card:hover {
    box-shadow: var(--shadow-glow);
}

/* Category cards: make more premium */
.category-card {
    background: linear-gradient(135deg, rgba(26, 18, 13, .92) 0%, rgba(42, 31, 24, .92) 100%);
    --lift: -10px;
}

.category-content .btn {
    backdrop-filter: blur(6px);
}

/* Header polish */
.header.scrolled {
    background: rgba(15, 10, 7, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(245, 240, 235, .06);
}

/* Buttons: smoother and more "product" */
.btn {
    transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.btn:active {
    transform: translateY(0);
}

/* Mobile menu: stagger animation for links */
.mobile-menu {
    backdrop-filter: blur(18px);
    background: rgba(15, 10, 7, .92);
}

.mobile-nav-list li {
    opacity: 0;
    transform: translateY(10px);
    transition: all .45s var(--ease-out);
}

.mobile-menu.active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) {
    transition-delay: .06s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(2) {
    transition-delay: .12s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(3) {
    transition-delay: .18s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(4) {
    transition-delay: .24s;
}

/* About: new premium layout */
.about-hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.about-hero-media {
    position: absolute;
    inset: 0;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px circle at 20% 25%, rgba(201, 168, 108, .14), transparent 50%),
        linear-gradient(180deg, rgba(15, 10, 7, .40) 0%, rgba(15, 10, 7, .88) 78%);
}

.about-hero-content {
    position: relative;
    padding: calc(var(--spacing-3xl) + 60px) 0 var(--spacing-3xl);
    text-align: left;
    width: 100%;
}

.about-hero-highlights {
    margin-top: var(--spacing-2xl);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: rgba(26, 18, 13, .72);
    backdrop-filter: blur(14px);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(201, 168, 108, .12);
    color: var(--color-gold);
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    font-size: .95rem;
}

.highlight-text span {
    display: block;
    font-size: .875rem;
    color: var(--color-text-muted);
}

/* About story section */
.about-story {
    padding: var(--spacing-3xl) 0;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.about-story-content p {
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-top: var(--spacing-md);
}

.pillars {
    margin-top: var(--spacing-xl);
    display: grid;
    gap: var(--spacing-md);
}

.pillar {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: rgba(26, 18, 13, .70);
    backdrop-filter: blur(12px);
}

.pillar p {
    margin-top: var(--spacing-xs);
    color: var(--color-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(201, 168, 108, .12);
    color: var(--color-gold);
}

.media-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(26, 18, 13, .72);
}

.media-card img {
    width: 100%;
    height: auto;
    display: block;
}

.media-caption {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: .875rem;
    color: var(--color-text-muted);
}

/* Process section */
.about-process {
    padding: 0 0 var(--spacing-3xl);
}

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

.process-step {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: rgba(26, 18, 13, .72);
    backdrop-filter: blur(12px);
}

.process-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(201, 168, 108, .12);
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--color-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* Values grid in about */
.about-values-pro {
    padding: 0 0 var(--spacing-3xl);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-xl);
}

.value-card {
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    background: rgba(26, 18, 13, .72);
    backdrop-filter: blur(12px);
}

.value-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(201, 168, 108, .12);
    color: var(--color-gold);
    margin: 0 auto var(--spacing-md);
}

/* Icon sizing */
.icon-svg {
    width: 22px;
    height: 22px;
}

/* Contact icons */
.contact-icon.icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(201, 168, 108, .12);
    color: var(--color-gold);
    border: 1px solid rgba(201, 168, 108, .14);
}

/* Responsive improvements for new layouts */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .about-hero-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }

    .about-hero-content {
        text-align: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        grid-template-columns: 44px 1fr;
        text-align: left;
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .animate-fade-up,
    .animate-on-scroll,
    .page.active {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }

    .interactive-card {
        transition: none !important;
    }

    .interactive-card::before {
        display: none !important;
    }
}


/* Lift values for premium hover */
.value-card,
.stat-item,
.process-step,
.highlight-card,
.pillar,
.media-card,
.contact-form {
    --lift: -6px;
}

/* ==========================================
   WHATSAPP CHECKOUT
   ========================================== */

.whatsapp-checkout {
    margin-top: var(--spacing-xl);
}

.whatsapp-info {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin-bottom: var(--spacing-lg);
}

.whatsapp-icon-large {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.whatsapp-text h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #25D366;
    margin-bottom: var(--spacing-xs);
}

.whatsapp-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.whatsapp-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    padding-left: var(--spacing-md);
}

.whatsapp-benefits li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.whatsapp-benefits li::before {
    color: #25D366;
}

.btn-whatsapp-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-checkout:active {
    transform: translateY(-1px);
}

.btn-whatsapp-checkout svg {
    width: 28px;
    height: 28px;
}

.whatsapp-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}

.whatsapp-note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-full);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--color-surface);
    color: var(--color-text);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float-tooltip {
        display: none;
    }

    .whatsapp-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Input Error State */
.input-error {
    border-color: #FF5252 !important;
    background-color: rgba(255, 82, 82, 0.05) !important;
    animation: shake 0.5s ease;
}

@keyframes shake {

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

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

/* ==========================================
   WHATSAPP PRODUCT BUTTON
   ========================================== */

.btn-whatsapp-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    margin-top: var(--spacing-md);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #2EE370 0%, #14A085 100%);
}

.btn-whatsapp-product:active {
    transform: translateY(0);
}

.btn-whatsapp-product svg {
    width: 18px;
    height: 18px;
}

.btn-whatsapp-product span {
    white-space: nowrap;
}
/* Exotic Admin & Video Styles */
.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-video:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}
.purchase-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.purchase-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}


/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

/* Premium Card Animations */
.product-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.product-card .btn-buy-now {
    transition: background 0.3s ease, transform 0.2s ease;
}

.product-card .btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}


/* ==========================================
   ENHANCEMENTS: PRODUCT DESCRIPTION + MAPS
   (2026-01-28)
   ========================================== */

/* Product meta row (category + weight) */
.product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: var(--spacing-xs);
}

.product-meta .product-weight {
    margin-left: 0; /* usamos gap en vez de margin */
}

/* Product description (full visible) */
.product-description {
    margin: 0 0 var(--spacing-md);
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    display: block;
    overflow: visible;
}

/* Discount price styling */
.original-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 0.9em;
    margin-right: 8px;
}

.discount-price {
    color: var(--color-gold);
    font-weight: 700;
}

/* Product actions improvements */
.product-action-btn.video-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-action-btn.buy-now {
    width: auto;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.product-action-btn.buy-now:hover {
    background: linear-gradient(135deg, #2EE370 0%, #14A085 100%);
    color: #fff;
}

.product-action-btn.buy-now svg {
    width: 18px;
    height: 18px;
}

/* En pantallas táctiles, no hay hover: mostrar acciones siempre */
@media (hover: none) {
    .product-actions {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Shared Map Card styles (Contacto + Nosotros) */
.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(26, 18, 13, .72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-card-header {
    padding: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.map-card-header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
}

.map-card-header .muted {
    margin: 0.35rem 0 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.map-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* About / Nosotros: ubicación */
.about-location {
    padding: 0 0 var(--spacing-3xl);
}

.about-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: var(--spacing-xl);
    align-items: stretch;
}

.location-card {
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    background: rgba(26, 18, 13, .72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-card p {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-top: var(--spacing-md);
}

@media (max-width: 1024px) {
    .about-location-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ENHANCED CONTACT SECTION
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    padding: var(--spacing-2xl) 0;
}

.contact-info-card {
    background: var(--gradient-surface);
    border: 1px solid rgba(201, 168, 108, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
}

.contact-info-card > p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: background var(--transition-base);
}

.contact-item-enhanced:hover {
    background: rgba(201, 168, 108, 0.05);
}

.contact-icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.contact-item-enhanced:hover .contact-icon-circle {
    background: var(--color-gold);
    color: var(--color-primary);
}

.contact-icon-circle svg {
    width: 20px;
    height: 20px;
}

.contact-item-enhanced strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-item-enhanced a,
.contact-item-enhanced p {
    color: var(--color-text);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-item-enhanced a:hover {
    color: var(--color-gold);
}

.contact-schedule {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-schedule h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.schedule-row span:last-child {
    color: var(--color-text);
}

/* Enhanced Contact Form */
.contact-form-enhanced {
    background: var(--color-surface);
    padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.contact-form-enhanced h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.contact-form-enhanced > p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xl);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group-enhanced {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.form-group-enhanced label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-muted);
}

.form-group-enhanced input,
.form-group-enhanced textarea,
.form-group-enhanced select {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-background);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.form-group-enhanced input::placeholder,
.form-group-enhanced textarea::placeholder {
    color: rgba(168, 152, 136, 0.5);
}

.form-group-enhanced input:focus,
.form-group-enhanced textarea:focus,
.form-group-enhanced select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.form-group-enhanced textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-enhanced select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A89888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-gold);
    color: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

/* Form messages */
.form-message {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.3s ease;
}

.form-message.show {
    display: flex;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81C784;
}

.form-message.error {
    background: rgba(255, 82, 82, 0.1);
    border: 1px solid rgba(255, 82, 82, 0.3);
    color: #FF8A80;
}

.form-message svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
}

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

/* Spinner for loading state */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Responsive contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .contact-info-card,
    .contact-form-enhanced {
        padding: var(--spacing-xl);
    }
}

/* ==========================================
   ENHANCED PRODUCT CARDS
   ========================================== */

.product-info {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.product-weight {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.product-bottom {
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

/* Enhanced WhatsApp buy button (inside product card) */
.buy-now {
    width: auto !important;
    padding: 8px 16px !important;
    gap: 6px;
    background: #25D366 !important;
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full) !important;
}

.buy-now span {
    font-size: 0.8rem;
}

.buy-now:hover {
    background: #1da851 !important;
    color: #fff !important;
}

/* ==========================================
   PREMIUM REDESIGN (2026-02)
   ========================================== */

:root {
    --font-display: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;
    --color-background: #080503;
    --color-surface: #15100d;
    --color-surface-light: #241a14;
    --color-text: #f7f2eb;
    --color-text-muted: #baac9c;
    --color-gold: #d4af74;
    --color-gold-light: #ecd1a4;
}

body {
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 116, 0.14), transparent 46%),
        radial-gradient(circle at 85% 0%, rgba(128, 83, 36, 0.16), transparent 40%),
        linear-gradient(145deg, #080503 0%, #120b08 45%, #080503 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("/assets/img/noise.png");
    opacity: 0.075;
    pointer-events: none;
    z-index: 0;
}

.main,
.header,
.footer,
.mobile-menu,
.modal,
.to-top,
.whatsapp-float,
.maps-float {
    position: relative;
    z-index: 1;
}

.header {
    background: linear-gradient(180deg, rgba(7, 5, 4, 0.92) 0%, rgba(7, 5, 4, 0.25) 100%);
    border-bottom: 1px solid rgba(212, 175, 116, 0.18);
}

.header.scrolled {
    background: rgba(8, 5, 3, 0.92);
    border-bottom: 1px solid rgba(212, 175, 116, 0.28);
    backdrop-filter: blur(14px);
}

.nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.interactive-card,
.product-card,
.process-step,
.highlight-card,
.value-card,
.map-card,
.contact-info-card,
.contact-form-enhanced {
    background: linear-gradient(145deg, rgba(36, 26, 20, 0.86), rgba(21, 16, 13, 0.92));
    border: 1px solid rgba(236, 209, 164, 0.14);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.35);
}

.interactive-card:hover,
.product-card:hover,
.process-step:hover,
.highlight-card:hover,
.value-card:hover,
.map-card:hover,
.contact-info-card:hover,
.contact-form-enhanced:hover {
    border-color: rgba(236, 209, 164, 0.3);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.01em;
}

/* Hero */
.premium-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(110px, 12vw, 150px) 0 clamp(48px, 6vw, 72px);
    overflow: hidden;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 5vw, 5rem);
    align-items: center;
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(22px);
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
    width: 380px;
    height: 380px;
    top: -90px;
    left: -80px;
    background: rgba(212, 175, 116, 0.2);
}

.orb-2 {
    width: 280px;
    height: 280px;
    right: 8%;
    top: 12%;
    background: rgba(143, 83, 44, 0.24);
    animation-delay: -3.5s;
}

.orb-3 {
    width: 240px;
    height: 240px;
    left: 40%;
    bottom: -90px;
    background: rgba(236, 209, 164, 0.14);
    animation-delay: -6s;
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -18px, 0) scale(1.08);
    }
}

.premium-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 680px;
    padding: 0;
}

.premium-hero .hero-tag {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
}

.premium-hero .hero-title {
    font-size: clamp(2.7rem, 7vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: 0.005em;
    margin-bottom: 1.15rem;
}

.premium-hero .hero-subtitle {
    margin: 0 0 1.6rem;
    max-width: 560px;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    color: #d0c2b3;
}

.premium-hero .hero-btns {
    justify-content: flex-start;
    margin-bottom: 1.35rem;
}

.hero-kpis {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero-kpi {
    min-width: 100px;
    border-radius: 14px;
    border: 1px solid rgba(236, 209, 164, 0.2);
    background: rgba(15, 11, 9, 0.66);
    padding: 0.62rem 0.9rem 0.5rem;
}

.hero-kpi strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1;
    color: var(--color-gold-light);
}

.hero-kpi span {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(247, 242, 235, 0.74);
}

.hero-showcase {
    position: relative;
    z-index: 2;
    justify-self: center;
    width: min(100%, 480px);
}

.hero-product-frame {
    border-radius: 26px;
    padding: 14px;
    background:
        linear-gradient(145deg, rgba(241, 217, 176, 0.22), rgba(130, 84, 46, 0.17)),
        rgba(20, 14, 10, 0.84);
    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(236, 209, 164, 0.18);
    transform: perspective(1100px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-product-frame:hover {
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.hero-product-img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.hero-showcase-card {
    margin-top: -38px;
    margin-left: auto;
    width: min(88%, 360px);
    border: 1px solid rgba(236, 209, 164, 0.26);
    border-radius: 15px;
    background: rgba(8, 6, 4, 0.88);
    backdrop-filter: blur(8px);
    padding: 0.95rem 1.15rem;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.hero-showcase-card p {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-showcase-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.hero-showcase-card span {
    color: var(--color-text-muted);
    font-size: 0.86rem;
}

/* Bean Lab */
.bean-lab {
    padding: clamp(3.2rem, 7vw, 5.4rem) 0;
}

.bean-lab-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1.1rem, 3vw, 2.2rem);
    align-items: stretch;
}

.bean-stage {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(236, 209, 164, 0.22);
    background:
        radial-gradient(circle at 22% 18%, rgba(237, 201, 141, 0.24), transparent 45%),
        radial-gradient(circle at 84% 12%, rgba(119, 71, 39, 0.2), transparent 32%),
        radial-gradient(circle at 50% 82%, rgba(53, 30, 16, 0.44), transparent 55%),
        linear-gradient(165deg, rgba(18, 13, 10, 0.985), rgba(7, 5, 4, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(255, 232, 196, 0.06),
        0 22px 55px rgba(0, 0, 0, 0.45);
    isolation: isolate;
}

.bean-stage::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 235, 198, 0.16), transparent 30%),
        radial-gradient(circle at 85% 90%, rgba(104, 60, 32, 0.25), transparent 40%);
    z-index: 1;
}

.bean-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 4, 3, 0.02) 0%, rgba(6, 4, 3, 0.65) 100%);
    z-index: 1;
}

.bean-3d-canvas {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    cursor: grab;
    position: relative;
    z-index: 0;
}

.bean-3d-canvas:active {
    cursor: grabbing;
}

.bean-stage-overlay {
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: 1.05rem;
    border-radius: 14px;
    background: linear-gradient(170deg, rgba(10, 8, 6, 0.82), rgba(8, 6, 4, 0.73));
    border: 1px solid rgba(236, 209, 164, 0.28);
    backdrop-filter: blur(8px);
    padding: 0.72rem 0.86rem 0.78rem;
    z-index: 3;
}

.bean-stage-overlay > span {
    display: block;
    font-size: 0.84rem;
    color: #e3d5c3;
    line-height: 1.55;
}

.bean-progress {
    margin-top: 0.58rem;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 227, 178, 0.12);
    overflow: hidden;
}

.bean-progress span {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #d8a564 0%, #f2cf94 52%, #d7a35d 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.18s linear;
}

.bean-controls {
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 6%, rgba(236, 209, 164, 0.13), transparent 44%),
        linear-gradient(160deg, rgba(26, 19, 14, 0.94), rgba(10, 7, 5, 0.95));
    border: 1px solid rgba(236, 209, 164, 0.22);
    padding: clamp(1.3rem, 2.6vw, 2.05rem);
    box-shadow:
        inset 0 0 0 1px rgba(255, 235, 198, 0.05),
        0 18px 44px rgba(0, 0, 0, 0.34);
}

.bean-controls h3 {
    font-family: var(--font-display);
    font-size: clamp(1.72rem, 2.2vw, 2.25rem);
    margin: 0.1rem 0 0.58rem;
    line-height: 1.05;
}

.bean-controls p {
    color: #d1c0ac;
    margin: 0 0 1.2rem;
    line-height: 1.78;
}

.bean-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.68rem;
    margin-bottom: 1.1rem;
}

.bean-actions .btn {
    min-width: 142px;
    padding: 0.78rem 1.15rem;
}

.bean-specs {
    display: grid;
    gap: 0.55rem;
}

.bean-specs li {
    border: 1px solid rgba(236, 209, 164, 0.2);
    border-radius: 11px;
    background: rgba(9, 6, 4, 0.66);
    padding: 0.6rem 0.75rem;
    color: #deceb9;
    font-size: 0.9rem;
}

.bean-specs strong {
    color: var(--color-gold-light);
    margin-right: 0.35rem;
}

/* Roast Studio */
.roast-studio {
    padding: clamp(2.5rem, 6vw, 4.8rem) 0 clamp(3.2rem, 7vw, 5.4rem);
}

.roast-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1rem, 3vw, 2rem);
}

.roast-control,
.roast-details {
    border-radius: 22px;
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.roast-control {
    background:
        radial-gradient(circle at 50% 10%, rgba(233, 200, 146, 0.2), transparent 46%),
        linear-gradient(165deg, rgba(20, 14, 10, 0.96), rgba(10, 7, 5, 0.95));
}

.roast-preview-wrap {
    text-align: center;
    margin-bottom: 1rem;
}

.roast-preview-bean {
    width: 138px;
    height: 170px;
    margin: 0 auto;
    border-radius: 48% 52% 46% 54% / 56% 56% 44% 44%;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 219, 162, 0.27), transparent 34%),
        linear-gradient(160deg, #6a472f 0%, #4d3322 55%, #2f1f15 100%);
    position: relative;
    box-shadow:
        inset -15px -18px 18px rgba(0, 0, 0, 0.3),
        0 18px 26px rgba(0, 0, 0, 0.45);
    transition: background 0.35s ease, transform 0.35s ease;
}

.roast-preview-bean span {
    position: absolute;
    top: 12%;
    bottom: 12%;
    left: calc(50% - 3px);
    width: 6px;
    border-radius: 10px;
    background: rgba(14, 9, 6, 0.7);
    box-shadow: inset 1px 0 1px rgba(255, 221, 176, 0.3);
}

.roast-temp {
    margin: 0.85rem 0 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--color-gold-light);
}

.roast-slider-label {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.55rem;
    color: #d8c5a6;
}

.roast-slider {
    width: 100%;
    accent-color: var(--color-gold);
}

.roast-scale {
    margin-top: 0.78rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
}

.roast-scale span {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(229, 213, 191, 0.75);
    text-align: center;
}

.roast-details {
    background: linear-gradient(165deg, rgba(26, 19, 14, 0.96), rgba(12, 8, 6, 0.96));
    border: 1px solid rgba(236, 209, 164, 0.16);
}

.roast-chip {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.36rem 0.68rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(212, 175, 116, 0.16);
    color: var(--color-gold-light);
    border: 1px solid rgba(236, 209, 164, 0.32);
}

.roast-details h3 {
    margin: 0.68rem 0 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.3rem);
}

.roast-details p {
    margin: 0;
    color: #dacbb7;
    line-height: 1.75;
}

.roast-data {
    margin: 1rem 0 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.roast-data div {
    border: 1px solid rgba(236, 209, 164, 0.14);
    background: rgba(8, 6, 4, 0.56);
    border-radius: 11px;
    padding: 0.58rem 0.65rem;
}

.roast-data strong {
    display: block;
    color: #f5e6d0;
    font-size: 0.89rem;
}

.roast-data span {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-gold);
}

.roast-notes-block h4 {
    margin: 0 0 0.55rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold-light);
}

.roast-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
    margin-bottom: 0.7rem;
}

.roast-notes li {
    border-radius: 999px;
    border: 1px solid rgba(236, 209, 164, 0.2);
    background: rgba(8, 6, 4, 0.62);
    padding: 0.3rem 0.72rem;
    font-size: 0.76rem;
    color: #e8d8c1;
}

.roast-method {
    font-size: 0.9rem;
    color: #cbb9a1;
}

/* Product and page polish */
.categories,
.featured,
.about-preview,
.page-header {
    background: transparent;
}

.category-card .category-content h3 {
    font-size: 1.7rem;
}

.product-card {
    border-radius: 18px;
    overflow: hidden;
}

.product-info {
    background: linear-gradient(180deg, rgba(24, 17, 13, 0.62), rgba(11, 8, 6, 0.85));
}

.footer {
    border-top: 1px solid rgba(236, 209, 164, 0.13);
    background: linear-gradient(180deg, rgba(10, 7, 5, 0.9), rgba(5, 3, 2, 0.97));
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-shell,
    .bean-lab-grid,
    .roast-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero {
        padding-top: 110px;
    }

    .hero-showcase {
        width: min(100%, 420px);
    }

    .hero-product-frame {
        transform: none;
    }
}

@media (max-width: 768px) {
    .premium-hero .hero-content {
        text-align: center;
    }

    .premium-hero .hero-btns {
        justify-content: center;
    }

    .hero-kpis {
        justify-content: center;
    }

    .hero-showcase-card {
        margin: 0.6rem auto 0;
        width: 100%;
    }

    .bean-stage,
    .bean-3d-canvas {
        min-height: 400px;
    }

    .bean-stage-overlay {
        left: 0.75rem;
        right: 0.75rem;
    }

    .roast-data {
        grid-template-columns: 1fr;
    }

    .roast-scale span {
        font-size: 0.62rem;
    }
}
