/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--anthracite-darkest);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-logo {
    animation: logoFade 2s ease-in-out infinite;
}

.loading-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
}

.loading-spinner {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.spinner-circle {
    width: 12px;
    height: 12px;
    background: var(--secondary-color, #f8e0c4);
    border-radius: 50%;
    animation: spinnerBounce 1.4s ease-in-out infinite;
}

.spinner-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-circle:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-text {
    color: var(--secondary-color, #f8e0c4);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes logoFade {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes spinnerBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

:root {
    /* Anthracite palette — header & topbar */
    --anthracite-darkest: #1a1a1a;
    --anthracite-dark: #252525;
    --anthracite: #2f2f2f;
    --anthracite-medium: #3d3d3d;
    --anthracite-light: #525252;
    --anthracite-muted: #8a8a8a;

    /* Accent */
    --primary-color: var(--anthracite);
    --secondary-color: #d4a574;
    --primary-light: var(--anthracite-light);
    --primary-dark: var(--anthracite-dark);
    --primary-darker: var(--anthracite-darkest);

    /* Light theme — content areas */
    --text-dark: #1a1a1a;
    --text-light: #5c5c5c;
    --text-muted: #888888;
    --white: #ffffff;
    --bg-page: #f8f8f8;
    --bg-section: #ffffff;
    --bg-section-alt: #f2f2f2;
    --bg-card: #ffffff;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.12);

    /* Legacy aliases */
    --bg-dark: var(--bg-page);
    --bg-dark-secondary: var(--bg-section-alt);
    --bg-light: var(--bg-card);

    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Saira', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-page);
}

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

/* ===== TOP BAR ===== */
.topbar {
    background: var(--anthracite-darkest);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 2rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--anthracite-muted);
    text-decoration: none;
    transition: var(--transition);
}

.topbar-item:hover {
    color: var(--secondary-color);
}

.topbar-item i {
    font-size: 1rem;
}

.topbar-right {
    display: flex;
    gap: 1rem;
}

.topbar-social {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--anthracite-muted);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.topbar-social:hover {
    background: var(--anthracite-medium);
    color: var(--secondary-color);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--anthracite);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 46px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.navbar .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-link.active {
    color: var(--secondary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO SECTION (Light) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 126px;
    background: var(--bg-section);
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-section-alt) 0%, #e8e8e8 100%);
    opacity: 1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--anthracite);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--anthracite-medium);
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--anthracite);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--anthracite-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--anthracite);
    border: 2px solid var(--anthracite);
}

.btn-secondary:hover {
    background: var(--anthracite);
    color: var(--white);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-outline:hover {
    background: var(--anthracite);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--anthracite);
}

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

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
}

.smoke-container {
    position: absolute;
    bottom: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    z-index: 10;
    pointer-events: none;
}

.smoke {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.4) 0%, rgba(212, 165, 116, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: smokeRise 6s ease-out infinite;
}

.smoke-1 {
    animation-delay: 0s;
    left: calc(50% - 30px);
}

.smoke-2 {
    animation-delay: 1.2s;
    left: calc(50% + 20px);
}

.smoke-3 {
    animation-delay: 2.4s;
    left: calc(50% - 10px);
}

.smoke-4 {
    animation-delay: 3.6s;
    left: calc(50% + 30px);
}

.smoke-5 {
    animation-delay: 4.8s;
    left: calc(50% - 20px);
}

.product-placeholder {
    position: relative;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.product-placeholder svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.product-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float-element 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 1;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--anthracite-light);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--anthracite-light);
    border-radius: 2px;
    animation: scroll-down 1.5s ease-in-out infinite;
}

/* ===== FEATURES SECTION (Light) ===== */
.features {
    padding: 6rem 0;
    background: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--anthracite);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--anthracite);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-icon i {
    font-size: 32px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== PRODUCT SECTION (Light) ===== */
.product-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-gallery {
    position: relative;
}

.main-product-image {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.product-image-wrapper svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* ===== FRAGRANCE SECTION (Light) ===== */
.fragrance-section {
    padding: 6rem 0;
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
}

.fragrance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fragrance-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fragrance-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.fragrance-bottle {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

.fragrance-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.fragrance-info {
    padding: 2rem 0;
}

.fragrance-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.fragrance-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.fragrance-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.fragrance-feature-item:hover {
    border-color: var(--border-medium);
    transform: translateX(10px);
}

.fragrance-feature-item i {
    font-size: 2rem;
    color: var(--anthracite);
    flex-shrink: 0;
}

.fragrance-feature-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.fragrance-feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.fragrance-scents {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.fragrance-scents h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1.5rem;
}

.scent-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.scent-item {
    padding: 1rem;
    background: var(--bg-section-alt);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.scent-item:hover {
    background: var(--anthracite);
    color: var(--white);
    border-color: var(--anthracite);
    transform: translateY(-3px);
}

.product-info {
    padding: 0;
}

.product-info-block {
    margin-bottom: 1.25rem;
}

.product-info-block-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--anthracite-darkest);
    margin-bottom: 0.65rem;
}

.product-detail-section .product-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-detail-section .product-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.product-detail-section .product-highlights {
    margin-bottom: 0;
}

.product-detail-section .product-highlights li {
    padding: 0.45rem 0;
    font-size: 0.92rem;
}

.product-detail-section .product-capacity {
    margin-bottom: 1rem;
}

.product-detail-section .hero-buttons {
    margin-top: 1.25rem;
}

.product-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--anthracite);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.stars {
    color: #ffa500;
    font-size: 1.2rem;
}

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

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--anthracite);
}

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

.price-discount {
    padding: 0.3rem 0.8rem;
    background: #e74c3c;
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.product-highlights li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.product-highlights li:last-child {
    border-bottom: none;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-features-mini {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-feature .icon {
    font-size: 1.5rem;
}

.mini-feature .text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== TESTIMONIALS SECTION (Light) ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.testimonial-stars {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--anthracite);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CONTACT SECTION (Light) ===== */
.contact {
    padding: 6rem 0;
    background: var(--bg-section-alt);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-icon i {
    font-size: 2rem;
    color: var(--anthracite);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--anthracite);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--anthracite-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-medium);
    border-radius: 10px;
    font-family: 'Saira', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-section);
    color: var(--text-dark);
}

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

.form-group textarea {
    resize: vertical;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-error {
    color: #c0392b;
    font-size: 0.85rem;
    min-height: 1.1rem;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

#contactSubmitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== FOOTER (Anthracite) ===== */
.footer {
    background: var(--anthracite-darkest);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--anthracite);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: bottom 0.3s ease;
    z-index: 9999;
}

.toast.show {
    bottom: 30px;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes scroll-down {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) translateX(-50%) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
        transform: translateY(-150px) translateX(-50%) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translateY(-300px) translateX(calc(-50% + 40px)) scale(2);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .topbar {
        display: none;
    }

    .navbar {
        margin-top: 0;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--anthracite-dark);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .navbar .logo-img {
        height: 42px;
    }

    .hero-content,
    .product-content,
    .fragrance-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

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

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

    .hero-image {
        order: -1;
        padding: 2rem 0;
    }

    .product-showcase {
        max-width: 350px;
        margin: 0 auto;
    }

    .product-image {
        max-width: 300px;
    }

    .smoke-container {
        height: 300px;
        bottom: 50%;
    }

    .hero-stats {
        gap: 2rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-features-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 90px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-name {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .navbar .logo-img {
        height: 36px;
    }

    .product-showcase {
        max-width: 280px;
    }

    .product-image {
        max-width: 250px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .scent-list {
        grid-template-columns: 1fr;
    }

    .hero-slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-slide-image {
        order: -1;
    }

    .hero-slider-controls {
        bottom: 20px;
    }

    .slider-arrow {
        display: none;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .scent-panel-content {
        grid-template-columns: 1fr;
    }

    .scent-tabs {
        flex-wrap: wrap;
    }
}

/* ===== MULTIPAGE COMPONENTS ===== */

.page-hero {
    padding: 140px 0 3rem;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-light);
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.page-hero-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.breadcrumb-current {
    color: var(--anthracite);
    font-weight: 600;
}

.hero-slider-section {
    position: relative;
    min-height: 85vh;
    padding-top: 126px;
    background: var(--bg-section);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: calc(85vh - 126px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slide-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--anthracite-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--anthracite);
    border-color: var(--anthracite);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--anthracite);
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--anthracite);
    color: var(--white);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.product-preview-section {
    padding: 6rem 0;
    background: var(--bg-section-alt);
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.product-card-large .product-card-image {
    height: 280px;
}

.product-card-image {
    height: 220px;
    overflow: hidden;
    background: var(--bg-section-alt);
}

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

.product-card-body {
    padding: 2rem;
}

.product-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.75rem 0;
}

.product-card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-highlights-compact li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.fragrance-teaser {
    padding: 6rem 0;
}

.product-detail-section {
    padding: 3rem 0 6rem;
    background: var(--bg-section);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.product-detail-main {
    background: var(--bg-section-alt);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.product-detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-detail-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: var(--bg-section-alt);
    transition: var(--transition);
}

.product-detail-thumb.active,
.product-detail-thumb:hover {
    border-color: var(--anthracite);
}

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

.product-grid-section {
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.product-capacity {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.product-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-grid-item {
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-section-alt);
    border: 1px solid var(--border-light);
    aspect-ratio: 4/3;
}

.product-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-grid-item:hover img {
    transform: scale(1.05);
}

.bottle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bottle-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    aspect-ratio: 3/4;
}

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

.scent-pyramid-section {
    padding: 6rem 0;
    background: var(--bg-section-alt);
}

.scent-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.scent-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-medium);
    border-radius: 50px;
    background: var(--bg-card);
    color: var(--text-dark);
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.scent-tab:hover,
.scent-tab.active {
    background: var(--anthracite);
    color: var(--white);
    border-color: var(--anthracite);
}

.scent-panel {
    display: none;
}

.scent-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.scent-panel-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.scent-panel-image img {
    width: 100%;
    border-radius: 15px;
}

.scent-panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.scent-notes {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.scent-note-item {
    padding: 1rem 1.25rem;
    background: var(--bg-section-alt);
    border-radius: 12px;
    border-left: 4px solid var(--anthracite);
}

.scent-note-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--anthracite);
    margin-bottom: 0.35rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

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

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.contact {
    padding: 3rem 0 6rem;
}

@media (max-width: 968px) {
    .page-hero {
        padding-top: 100px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-hero-title {
        font-size: 1.8rem;
    }

    .hero-slider-section {
        padding-top: 90px;
        min-height: auto;
    }

    .hero-slide-image img {
        max-height: 280px;
    }
}

