/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
------------------------------------------------------------- */
:root {
    --bg-darker: #080808;
    --bg-dark: #121212;
    --bg-card: rgba(22, 22, 22, 0.75);
    --gold-primary: #C5A880;
    --gold-hover: #e0cca9;
    --gold-dark: #91754f;
    --gold-gradient: linear-gradient(135deg, #C5A880 0%, #aa8758 100%);
    --gold-glow: 0 0 15px rgba(197, 168, 128, 0.3);
    --text-light: #FFFFFF;
    --text-muted: #a3a3a3;
    --text-dark: #121212;
    --border-color: rgba(197, 168, 128, 0.15);
    --border-glow: rgba(197, 168, 128, 0.3);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.highlight {
    color: var(--gold-primary);
    background: linear-gradient(to right, #C5A880, #f6e6cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

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

/* Glassmorphism card utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    background: var(--gold-hover);
    box-shadow: 0 0 25px rgba(197, 168, 128, 0.5);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: rgba(197, 168, 128, 0.1);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--gold-primary);
    text-transform: none;
    font-weight: 500;
    padding: 8px 16px;
    font-size: 0.95rem;
}

.btn-text:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 0.85rem;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition-fast);
}

.btn-whatsapp:hover {
    background-color: #20ba56;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Shine Effect Animation for Buttons */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
}

.btn-shine:hover::after {
    left: 120%;
    transition: all 0.8s ease-in-out;
}

/* Badge tags */
.badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--gold-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Section Tags and Headers */
.section-tag {
    display: block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold-primary);
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

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

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

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

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-fast);
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.4) 0%, rgba(8, 8, 8, 0.95) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* -------------------------------------------------------------
   VALUES SECTION
------------------------------------------------------------- */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    margin-top: -50px;
    z-index: 5;
    border-radius: 40px 40px 0 0;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(197, 168, 128, 0.05);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.value-icon {
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
    padding: 16px;
    background: rgba(197, 168, 128, 0.08);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--gold-gradient);
    color: var(--text-dark);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* -------------------------------------------------------------
   ABOUT SECTION
------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    background: rgba(10,10,10,0.4);
    border: 1px solid var(--border-color);
    max-height: 480px;
    width: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
   QUIZ SECTION
------------------------------------------------------------- */
.quiz-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quiz-step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quiz-step.active {
    display: block;
    opacity: 1;
}

.quiz-step h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--gold-primary);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quiz-opt-btn {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.quiz-opt-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(197, 168, 128, 0.05);
    transform: translateY(-5px);
}

.quiz-opt-btn.selected {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    color: var(--text-dark);
}

.opt-icon {
    font-size: 2.2rem;
}

.opt-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.quiz-prev-btn {
    margin-top: 15px;
    font-size: 0.85rem;
}

/* Results Step */
.results-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.results-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* -------------------------------------------------------------
   CATALOG SECTION
------------------------------------------------------------- */
.catalog-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.filter-wrapper {
    padding: 30px;
    margin-bottom: 50px;
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
}

.filter-buttons {
    display: flex;
    gap: 8px;
}

.btn-filter {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition-fast);
}

.btn-filter:hover, .btn-filter.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background-color: rgba(197, 168, 128, 0.05);
}

.select-filter {
    background: #0f0f0f;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    min-width: 200px;
    cursor: pointer;
}

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

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

/* Product Card - 3D Effect */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 420px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(197, 168, 128, 0.15);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.product-img-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transform: translateZ(30px); /* 3D pop effect */
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08) translateZ(50px);
}

.product-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.price-old {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.no-results {
    text-align: center;
    padding: 60px 0;
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* -------------------------------------------------------------
   CONTACT SECTION
------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.contact-form-card {
    padding: 48px;
    border-radius: 16px;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--gold-primary);
    text-align: center;
}

.city-channel h5 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.channel-buttons {
    display: grid;
    gap: 10px;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-darker);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.footer-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--text-dark);
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------------------------------
   PRODUCT MODAL
------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    max-width: 800px;
    width: 90%;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--gold-primary);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.modal-image-wrapper {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
    padding: 20px;
}

.modal-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.modal-info .product-brand {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.modal-info .product-name {
    font-size: 2rem;
    margin-bottom: 16px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.modal-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.notes-container {
    margin-bottom: 24px;
    background: rgba(0,0,0,0.2);
    padding: 16px;
    border-radius: 8px;
    border-left: 2px solid var(--gold-primary);
}

.notes-container h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.notes-container p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.modal-info .price-container {
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 24px;
}

.modal-info .price-current {
    font-size: 2rem;
}

.whatsapp-selector, .presentation-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.whatsapp-selector label, .presentation-selector label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.whatsapp-selector select, .presentation-selector select {
    width: 100%;
}

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

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 22px;
        opacity: 0;
    }
}

/* Fade In Scroll Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modal-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        border-left: 1px solid rgba(197, 168, 128, 0.1);
        padding: 100px 40px;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 999;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .recommended-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 24px;
    }
}

/* -------------------------------------------------------------
   BADGE DECANT
------------------------------------------------------------- */
.badge-decant {
    background: rgba(197, 168, 128, 0.18);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    margin-left: 4px;
}

.card-decant-hint {
    font-size: 0.78rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   DECANT TOGGLE FILTER
------------------------------------------------------------- */
.decant-filter-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border-color);
    border-radius: 26px;
    transition: var(--transition-fast);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 4px;
    bottom: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
    background: rgba(197, 168, 128, 0.2);
    border-color: var(--gold-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
    background: var(--gold-primary);
}

/* -------------------------------------------------------------
   DECANTS SECTION
------------------------------------------------------------- */
.decants-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(197, 168, 128, 0.08);
}

.decant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.decant-card {
    padding: 24px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.decant-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
}

.decant-img-wrapper {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,10,0.3);
    border-radius: 8px;
    padding: 16px;
}

.decant-img-wrapper img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

.decant-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.decant-notes {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.decant-prices {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.decant-price-pill {
    flex: 1;
    background: rgba(197, 168, 128, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
    transition: var(--transition-fast);
}

.decant-price-pill:hover {
    border-color: var(--gold-primary);
    background: rgba(197, 168, 128, 0.12);
}

.decant-ml {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.decant-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* -------------------------------------------------------------
   MODAL DECANT BOX
------------------------------------------------------------- */
.modal-decant-box {
    background: rgba(197, 168, 128, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.modal-decant-box h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-decant-prices {
    display: flex;
    gap: 12px;
}

.modal-decant-prices .decant-price-pill {
    flex: 1;
}

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

    .decant-filter-group {
        flex-direction: row;
        align-items: center;
    }
}

