:root {
    /* ADAME Premium Palette */
    --primary-color: #f8f6f0;
    /* Off-white / Cream background as in PDF */
    --secondary-color: #1a1a1a;
    /* Dark charcoal text */
    --accent-color: #c4a47c;
    /* Subtle gold/caramel accent */
    --text-main: #2d2d2d;
    --text-muted: #666666;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

/* Typography */
h1,
h2,
h3,
h4,
.logo span {
    font-family: var(--font-heading);
    font-weight: 400;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

nav.scrolled {
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 5%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

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

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

.nav-btn {
    background: none;
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    color: var(--secondary-color);
}

.nav-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-nav-sidebar .mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
}

.mobile-nav-sidebar .mobile-nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 10% 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 500px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    font-style: italic;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--secondary-color);
}

.cta-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.hero-bottle {
    max-height: 80%;
    max-width: 500px;
    /* Constrain width to prevent pixelation */
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 164, 124, 0.3) 0%, rgba(248, 246, 240, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 8rem 10%;
    background-color: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.target-market {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 4px;
}

.target-market h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.target-market ul {
    list-style: none;
}

.target-market li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
}

.target-market li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Product Section */
.product-section {
    padding: 8rem 10%;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 500px;
    /* Constrain width to prevent pixelation */
    width: 100%;
    /* Make responsive up to 500px */
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.product-details {
    flex: 1;
}

.product-details .subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.product-details h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.scent-profile {
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.scent-profile strong {
    font-family: var(--font-heading);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.product-details .description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.price {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.add-to-cart-btn:hover {
    background-color: var(--accent-color);
}

/* Future Section */
.future-section {
    padding: 8rem 10%;
    background-color: #111;
    color: var(--primary-color);
    text-align: center;
}

.future-section .section-title {
    color: var(--primary-color);
}

.future-content>p {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #aaa;
}

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

.cap-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    cursor: default;
}

.cap-item:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
    background: rgba(196, 164, 124, 0.05);
}

/* Upcoming / The Vault Section */
.upcoming-section {
    padding: 8rem 10%;
    background: linear-gradient(175deg, #0a0a0a 0%, #111 40%, #0d0b08 100%);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.upcoming-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 164, 124, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(196, 164, 124, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.upcoming-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.upcoming-eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.upcoming-section .section-title {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.upcoming-subtitle {
    max-width: 550px;
    margin: 0 auto;
    color: #777;
    font-size: 1.1rem;
    line-height: 1.8;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.slider-btn {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 2;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.slider-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.upcoming-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
    width: 100%;
    scrollbar-width: none;
}

.upcoming-grid::-webkit-scrollbar {
    display: none;
}

.upcoming-card {
    flex: 0 0 calc(25% - 1.5rem);
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 164, 124, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.upcoming-card:hover {
    border-color: rgba(196, 164, 124, 0.35);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(196, 164, 124, 0.06);
}

.card-visual {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(196, 164, 124, 0.03) 0%, transparent 100%);
    overflow: hidden;
}

.card-silhouette svg {
    width: 80px;
    height: 120px;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.upcoming-card:hover .card-silhouette svg {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Shimmer animation across the card */
.shimmer-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(196, 164, 124, 0.06) 50%,
            transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Stagger shimmer for each card */
.upcoming-card:nth-child(2) .shimmer-overlay {
    animation-delay: 0.6s;
}

.upcoming-card:nth-child(3) .shimmer-overlay {
    animation-delay: 1.2s;
}

.upcoming-card:nth-child(4) .shimmer-overlay {
    animation-delay: 1.8s;
}

.upcoming-card:nth-child(5) .shimmer-overlay {
    animation-delay: 2.4s;
}

.upcoming-card:nth-child(6) .shimmer-overlay {
    animation-delay: 3.0s;
}

.upcoming-card:nth-child(7) .shimmer-overlay {
    animation-delay: 3.6s;
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Blurred scent hints — the secret ingredient tease */
.scent-hint {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.scent-hint span {
    font-size: 0.75rem;
    color: rgba(196, 164, 124, 0.7);
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(196, 164, 124, 0.15);
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 300;
}

.scent-hint.blurred span {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    user-select: none;
}

.upcoming-card:hover .scent-hint.blurred span {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
.team-section {
    padding: 8rem 10%;
    background-color: #fff;
    text-align: center;
}

.team-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 6rem 10% 2rem;
}

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

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.footer-brand p {
    color: #999;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-newsletter p {
    margin-bottom: 1rem;
    color: #999;
}

.input-group {
    display: flex;
    border-bottom: 1px solid #555;
    padding-bottom: 0.5rem;
}

.input-group input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    flex: 1;
    font-family: var(--font-body);
}

.input-group button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

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

/* Animations & Toast */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    z-index: 9999;
}

.toast.show {
    bottom: 30px;
}

/* Intro Animations */
.reveal-text,
.fade-in,
.fade-in-delay,
.fade-in-image {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-text.visible,
.fade-in.visible,
.fade-in-delay.visible,
.fade-in-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    transition: all 1s ease 0.2s;
}

.fade-in {
    transition: all 1s ease 0.4s;
}

.fade-in-delay {
    transition: all 1s ease 0.6s;
}

.fade-in-image {
    transition: all 1.5s ease 0.8s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .about-container,
    .product-showcase {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
        /* simple mobile fix */
    }

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

    .upcoming-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .upcoming-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .animal-caps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .upcoming-card {
        flex: 0 0 85%;
    }

    .card-visual {
        height: 180px;
    }

    .upcoming-section {
        padding: 5rem 6%;
    }
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1002;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.cart-item-details p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.checkout-btn:hover {
    background: var(--accent-color);
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Star Constellation Background */
#star-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Scent Accordion */
.scent-accordion {
    display: flex;
    height: 520px;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.scent-panel {
    flex: 1;
    border: 1px solid rgba(196, 164, 124, 0.15);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, background 0.4s;
    cursor: pointer;
    position: relative;
}

.scent-panel:hover {
    flex: 7;
    border-color: rgba(196, 164, 124, 0.4);
    background: rgba(255,255,255,0.05);
}

/* Collapsed state — vertical label */
.panel-collapsed-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scent-panel:hover .panel-collapsed-label {
    opacity: 0;
    pointer-events: none;
}

.panel-collapsed-label svg {
    width: 28px;
    height: auto;
    flex-shrink: 0;
}

.panel-name-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(196, 164, 124, 0.7);
    white-space: nowrap;
}

/* Expanded state */
.panel-expanded-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
    pointer-events: none;
}

.scent-panel:hover .panel-expanded-content {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.panel-bottle {
    flex-shrink: 0;
    width: 120px;
    filter: drop-shadow(0 0 30px rgba(196, 164, 124, 0.2));
}

.panel-bottle svg {
    width: 100%;
    height: auto;
}

.panel-details {
    color: var(--primary-color);
    min-width: 0;
}

.panel-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.panel-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.panel-notes span {
    background: rgba(196, 164, 124, 0.1);
    border: 1px solid rgba(196, 164, 124, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(196, 164, 124, 0.9);
    letter-spacing: 1px;
    white-space: nowrap;
}

.panel-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.6rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.panel-btn:hover {
    background: var(--accent-color);
    color: #111;
}

@media (max-width: 768px) {
    .scent-accordion {
        flex-direction: column;
        height: auto;
    }
    .scent-panel {
        min-height: 80px;
        flex: none;
    }
    .scent-panel:hover {
        flex: none;
        min-height: 320px;
    }
    .panel-collapsed-label {
        flex-direction: row;
        padding: 0 1rem;
    }
    .panel-name-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.85rem;
    }
    .panel-expanded-content {
        flex-direction: column;
        text-align: center;
    }
    .panel-details h3 {
        white-space: normal;
    }
}