:root {
    --bg-dark: #000000;
    --accent-gold: #E6B431;
    --accent-cyan: #5EC9CC;
    --text-light: #F5F5F5;
    --text-dark: #1A1A1A;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: transparent;
    transition: var(--transition-slow);
}

nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(230, 180, 49, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

#hero-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    filter: none;
}

.hero-intro {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5%;
    background: #000;
}

.hero-content-static {
    max-width: 900px;
}

.hero-content-static h1 {
    font-size: clamp(3.5rem, 12vw, 9rem);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content-static p {
    font-size: 1.3rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

/* Premium Buttons */
.btn-premium {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    border-radius: 0;
    opacity: 0;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn-premium:hover {
    color: var(--bg-dark);
}

.btn-premium:hover::before {
    left: 0;
}

/* Sections */
section {
    padding: 10rem 5%;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title span {
    color: var(--accent-gold);
}

/* Featured Sections */
.grid-scent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.scent-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.scent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scent-image:hover img {
    transform: scale(1.1);
}

.scent-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.scent-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

/* Business Scents with Cyan */
.business-scents {
    background: #050505;
}

.business-scents .section-title span {
    color: var(--accent-cyan);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.business-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(94, 201, 204, 0.2);
    text-align: center;
    transition: 0.5s;
}

.business-card:hover {
    background: rgba(94, 201, 204, 0.05);
    transform: translateY(-10px);
}

.business-card i {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to top, #000, #0a0a0a);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form .full-width {
    grid-column: span 2;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    color: white;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-bottom-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    padding: 5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Aromas Collection & Carousel */
.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0 0 2rem 0;
    margin-top: 1rem;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-carousel 40s linear infinite;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-group {
    display: flex;
    gap: 3rem;
    padding-right: 3rem; /* The gap size */
}

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.aroma-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-slow);
    width: 288px;
    flex-shrink: 0;
}

.aroma-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.aroma-img-wrapper {
    width: 100%;
    height: 340px;
    background: radial-gradient(circle, rgba(230, 180, 49, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aroma-img-wrapper img {
    height: 85%;
    object-fit: contain;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(1.1) contrast(1.05);
}

.aroma-card:hover .aroma-img-wrapper img {
    transform: scale(1.1);
}

.aroma-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.aroma-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.aroma-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.btn-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    cursor: pointer;
    transition: 0.3s;
}

.btn-sm:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .grid-scent {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .full-width {
        grid-column: span 1;
    }

    .nav-links {
        display: none;
    }
}

/* Center Connection Line */
.content-wrapper {
    position: relative;
    z-index: 1;
}

.center-line-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.spray-particle {
    position: absolute;
    left: 50%;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    opacity: 0.8;
}

.section-node {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: transparent;
    border-radius: 50%;
    transition: 0.8s ease;
}

.section-node.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(230, 180, 49, 0.4);
}

.section-node.active::after {
    background: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan);
}

/* Scent Text Box Animation */
.scent-text-box {
    position: relative;
    margin-bottom: 2.5rem;
}

.box-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.scent-info .box-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.scent-info .box-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0;
}

.box-line {
    position: absolute;
    background: var(--accent-cyan);
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.box-line-top {
    top: 0; left: 0;
    height: 1px; width: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
}
.box-line-right {
    top: 0; right: 0;
    width: 1px; height: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}
.box-line-bottom {
    bottom: 0; right: 0;
    height: 1px; width: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.box-line-left {
    bottom: 0; left: 0;
    width: 1px; height: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.scent-text-box.active .box-line-top {
    width: 100%;
    transition-delay: 0s;
}
.scent-text-box.active .box-line-right {
    height: 100%;
    transition-delay: 0.3s;
}
.scent-text-box.active .box-line-bottom {
    width: 100%;
    transition-delay: 0.6s;
}
.scent-text-box.active .box-line-left {
    height: 100%;
    transition-delay: 0.9s;
}

@media (max-width: 768px) {
    .center-line-container {
        left: 20px;
    }
    .section-node {
        left: 20px;
    }
}

/* Premium Modal Styling */
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-modal.active {
    opacity: 1;
    visibility: visible;
}

.premium-modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(230, 180, 49, 0.3);
    border-radius: 8px;
    padding: 3rem;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-modal.active .premium-modal-content {
    transform: translateY(0);
}

.premium-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.premium-modal-close:hover {
    color: var(--accent-gold);
}

.modal-body {
    display: flex;
    gap: 3rem;
}

.modal-image-side {
    flex: 0 0 40%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
}

.modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

#modal-title {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.category-tag {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.2rem 1rem;
    font-size: 0.6rem;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

#modal-secondary-header {
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.modal-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-ideal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.modal-ideal i {
    color: var(--accent-gold);
}

.modal-family {
    margin-bottom: 2rem;
}

.modal-family p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.family-tags {
    display: flex;
    gap: 1rem;
}

.family-tags span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1.2rem;
    font-size: 0.7rem;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

/* Costs Section */
.modal-costs {
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.costs-header {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f0f0f;
    padding: 0 1rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
}

.costs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cost-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cost-type {
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.3rem;
}

.cost-item span {
    color: rgba(255, 255, 255, 0.5);
}

.cost-item strong {
    color: var(--accent-gold);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-outline-gold {
    flex: 1;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: rgba(230, 180, 49, 0.1);
}

.btn-solid-gold {
    flex: 1;
    background: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    color: black;
    padding: 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-solid-gold:hover {
    background: #cf9f2a;
}

@media (max-width: 900px) {
    .modal-body {
        flex-direction: column;
    }
    .modal-image-side {
        height: 300px;
    }
    .costs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    #modal-title {
        font-size: 2.5rem;
    }
    .modal-actions {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════
   DIFUSORES SECTION
═══════════════════════════════════════════════════════════ */

.difusores-section {
    padding: 10rem 5% 8rem;
    position: relative;
}

/* ── Header ── */
.difusores-header {
    max-width: 680px;
    margin: 0 auto 6rem;
    text-align: center;
}

.difusores-title-box {
    margin-bottom: 0;
}

.difusores-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.2rem !important;
}

.difusores-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* ── Grid ── */
.difusores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .difusores-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .difusores-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
    .difusores-grid { grid-template-columns: 1fr; }
}

/* ── Card ── */
.difusor-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    opacity: 0; /* animated in by GSAP */
}

.difusor-card:hover {
    border-color: rgba(230,180,49,0.5);
    transform: translateY(-6px);
}

.difusor-card:hover .difusor-card-glow {
    opacity: 1;
}

.difusor-card:hover .difusor-explore-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Image wrapper */
.difusor-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 60%, rgba(230,180,49,0.06) 0%, #000 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.difusor-img-wrap img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
    filter: brightness(1.05);
}

.difusor-card:hover .difusor-img-wrap img {
    transform: scale(1.07);
}

.difusor-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(230,180,49,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Placeholder when image fails */
.difusor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: rgba(230,180,49,0.3);
    letter-spacing: 4px;
}

/* Card info */
.difusor-card-info {
    padding: 1.4rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.difusor-model-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
}

.difusor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.1;
}

.difusor-divider {
    width: 28px;
    height: 1px;
    background: var(--accent-gold);
    margin: 0.6rem 0;
    box-shadow: 0 0 8px rgba(230,180,49,0.5);
}

.difusor-price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
}

.difusor-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--accent-gold);
    line-height: 1.2;
}

.difusor-price span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(230,180,49,0.6);
    font-family: 'Inter', sans-serif;
}

/* Explore arrow button */
.difusor-explore-btn {
    position: absolute;
    bottom: 1.4rem;
    right: 1.4rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.difusor-explore-btn:hover {
    background: var(--accent-gold);
    color: #000;
}

/* ── CTA ── */
.difusores-cta {
    text-align: center;
    margin-top: 5rem;
}

/* ════════════════════════════════════════════
   DIFUSORES MODAL
════════════════════════════════════════════ */

.difusor-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
                visibility 0.5s cubic-bezier(0.16,1,0.3,1);
}

.difusor-modal.active {
    opacity: 1;
    visibility: visible;
}

.difusor-modal-content {
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(230,180,49,0.25);
    width: min(960px, 96vw);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.difusor-modal.active .difusor-modal-content {
    transform: translateY(0) scale(1);
}

.difusor-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s;
}

.difusor-modal-close:hover {
    color: var(--accent-gold);
}

/* Modal layout */
.dmodal-body {
    display: flex;
    min-height: 460px;
}

.dmodal-img-side {
    flex: 0 0 42%;
    position: relative;
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmodal-img-side img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.difusor-modal.active .dmodal-img-side img {
    transform: scale(1.03);
}

.dmodal-img-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(230,180,49,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Info side */
.dmodal-info-side {
    flex: 1;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.dmodal-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 0.8rem;
}

.dmodal-info-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0;
}

.dmodal-gold-line {
    width: 48px;
    height: 1px;
    background: var(--accent-gold);
    box-shadow: 0 0 12px rgba(230,180,49,0.6);
    margin: 1.6rem 0;
}

/* Spec items */
.dmodal-specs {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.8rem;
}

.dmodal-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.dmodal-spec-item i {
    color: var(--accent-cyan);
    font-size: 1rem;
    margin-top: 0.1rem;
}

.dmodal-spec-item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.spec-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
}

.spec-val {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.dmodal-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Price box */
.dmodal-price-box {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dmodal-price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
}

.dmodal-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--accent-gold);
    line-height: 1;
}

.dmodal-price em {
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(230,180,49,0.5);
    letter-spacing: 2px;
    margin-left: 0.4rem;
}

/* Actions */
.dmodal-actions {
    display: flex;
    gap: 1rem;
}

.dmodal-btn-outline {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    padding: 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.dmodal-btn-outline:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.85);
}

.dmodal-actions .btn-premium {
    flex: 1;
}

/* Mobile Toggle Styles Default (Hidden on Desktop) */
.nav-toggle {
    display: none;
}
.mobile-menu-btn {
    display: none;
}

/* ==========================================================================
   OPTIMIZACIONES PREMIUM PARA MÓVILES (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* ── Contención de Desborde y Ancho Global ── */
    html, body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* Forzar box-sizing global en móviles para paddings */
    *, *::before, *::after {
        box-sizing: border-box !important;
    }

    .content-wrapper {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    /* Asegurar que las secciones y contenedores no tengan anchos estáticos grandes */
    section, 
    .container, 
    .catalog-header, 
    .residential-banner, 
    .difusores-section, 
    .contact-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ── Disposición Vertical Global ── */
    .grid-scent {
        display: flex !important;
        flex-direction: column !important;
        direction: ltr !important; /* Normalizar orden visual */
        gap: 3rem !important;
        text-align: center !important;
        padding-left: 20px !important; /* Respeta la línea de scrollytelling en móviles */
        padding-right: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .grid-scent * {
        direction: ltr !important; /* Asegurar que el contenido interno de RTL se lea ltr */
    }
    
    .grid-scent .scent-image {
        order: 1 !important; /* Siempre mostrar la imagen primero en móvil */
        width: 100% !important;
        max-width: 100% !important;
        height: 280px !important; /* Altura ideal en celulares */
        border-radius: 12px !important;
    }
    
    .grid-scent .scent-info {
        order: 2 !important; /* Mostrar la información debajo */
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* ── Navegación Móvil Adaptable (Contención del Menú) ── */
    nav {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding: 1rem 5% !important;
        background: rgba(0, 0, 0, 0.95) !important;
        border-bottom: 1px solid rgba(230, 180, 49, 0.15) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    nav .logo svg {
        width: 120px !important;
        height: 40px !important;
    }
    
    /* ── Menú Toggle y Drawer Móvil ── */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 28px !important;
        height: 18px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 2000 !important;
        padding: 0 !important;
        margin: 0 !important; /* Evitar cualquier desalineación lateral */
    }
    
    .mobile-menu-btn span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: var(--accent-gold) !important;
        border-radius: 2px !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Escondido a la derecha */
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-left: 1px solid rgba(230, 180, 49, 0.15) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2.5rem !important;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 1500 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
    }
    
    .nav-links a {
        font-size: 1.15rem !important;
        letter-spacing: 2px !important;
        color: rgba(255,255,255,0.85) !important;
        text-transform: uppercase !important;
        font-weight: 400 !important;
    }

    /* ── Checkbox Hack para Interactividad del Menú ── */
    .nav-toggle:checked ~ .nav-links {
        right: 0 !important;
    }
    
    .nav-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }
    
    .nav-toggle:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .nav-toggle:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
    
    nav .btn-premium {
        display: none !important; /* Evita colapso visual en móviles */
    }

    /* ── Categorías con Desplazamiento Horizontal en Aromas ── */
    .category-sticky-nav {
        top: 60px !important;
        padding: 0.8rem 1rem !important;
        gap: 0.8rem !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-sticky-nav::-webkit-scrollbar {
        display: none;
    }

    /* ── Tipografía Sutil y Elegante ── */
    .hero-content-static h1 {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-content-static p {
        font-size: 0.9rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 2.5rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .scent-info h3, 
    .scent-info .box-content h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important; /* Prevenir desborde de textos largos */
        overflow-wrap: break-word !important;
    }
    
    .scent-info p, 
    .scent-info .box-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* ── Márgenes, Padding y Contenedores ── */
    section {
        padding: 4rem 1rem !important;
    }
    
    .scent-text-box {
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .box-content {
        padding: 1.8rem 1.2rem !important;
        border-radius: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* ── Formulario de Contacto (Normalizar flexboxes y grid) ── */
    .contact-form {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-form .full-width {
        grid-column: span 1 !important;
    }

    /* Stacking side-by-side flex input fields on mobile */
    .contact-inputs-row,
    .contact-form > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        width: 100% !important;
    }
    
    .contact-form input, 
    .contact-form textarea, 
    .contact-form button {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* ── Footer Responsivo ── */
    footer {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 3rem 5% !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ── Modales Premium en Celular ── */
    .premium-modal-content {
        padding: 1.5rem !important;
        width: 92% !important;
        max-height: 85vh !important;
        box-sizing: border-box !important;
    }
    
    .modal-body {
        flex-direction: column !important;
        gap: 1.2rem !important;
    }
    
    .modal-image-side {
        flex: none !important;
        width: 100% !important;
        height: 180px !important;
    }
    
    #modal-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }
    
    .dmodal-body {
        flex-direction: column !important;
    }
    
    .dmodal-img-side {
        min-height: 200px !important;
        flex: none !important;
        width: 100% !important;
    }
    
    .dmodal-info-side {
        padding: 1.5rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .dmodal-specs {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dmodal-actions {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .difusores-header {
        margin-bottom: 3.5rem !important;
    }
}