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

:root {
    /* Colors - Pastel Wellness Palette */
    --wellness-cream: #FFF8E7;
    --wellness-milk-50: #FFFBF5;
    --wellness-milk-100: #FFF5E6;
    --wellness-milk-200: #FFE8CC;
    --wellness-blush-50: #FFE4E1;
    --wellness-blush-100: #FFD4D0;
    --wellness-sage-50: #E8F5E9;
    --wellness-sage-100: #C8E6C9;
    --wellness-lavender-50: #F3E5F5;
    --wellness-lavender-100: #E1BEE7;
    --wellness-sky-50: #E3F2FD;
    --wellness-sky-100: #BBDEFB;
    --wellness-rose-50: #FFEBEE;
    --wellness-rose-100: #FFCDD2;
    --wellness-graphite-700: #6B7280;
    --wellness-graphite-800: #4B5563;
    --wellness-graphite-900: #374151;
    --wellness-gold-500: #F5E6A3;
    --wellness-gold-600: #E8D68A;
    --wellness-olive-500: #C5D4A6;
    --wellness-olive-600: #B5C495;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--wellness-graphite-800);
    background-color: var(--wellness-milk-50);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--wellness-graphite-800);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); margin-bottom: 1.25rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

/* ==========================================
   HEADER
   ========================================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--wellness-milk-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wellness-graphite-800);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--wellness-gold-600);
}

.logo-accent {
    color: var(--wellness-gold-600);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wellness-graphite-700);
    transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--wellness-gold-600);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

#langBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: var(--wellness-graphite-700);
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem;
}

#langBtn:hover {
    background: var(--wellness-milk-200);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--wellness-graphite-800);
    font-weight: 500;
}

.lang-dropdown a:hover {
    background: var(--wellness-milk-100);
}

.lang-dropdown a:first-child {
    border-radius: 12px 12px 0 0;
}

.lang-dropdown a:last-child {
    border-radius: 0 0 12px 12px;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    background: var(--wellness-lavender-100);
    color: var(--wellness-graphite-900);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-btn:hover {
    background: var(--wellness-lavender-50);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.cta-btn.mobile-only {
    display: inline-flex;
    padding: 0.625rem;
}

.cta-btn.desktop-only {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--wellness-graphite-700);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--wellness-milk-200);
}

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

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--wellness-graphite-700);
    transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--wellness-milk-100);
    color: var(--wellness-gold-600);
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--wellness-blush-50), var(--wellness-lavender-50));
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--wellness-graphite-900);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-header p {
    color: var(--wellness-graphite-800);
    font-size: 1.125rem;
    margin: 0;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
        rgba(58, 56, 53, 0.4),
        rgba(74, 72, 67, 0.3),
        rgba(58, 56, 53, 0.5));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--wellness-milk-100);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(236, 225, 145, 0.4);
}

.btn-primary {
    background: var(--wellness-lavender-100);
    color: var(--wellness-graphite-900);
}

.btn-primary:hover {
    background: var(--wellness-lavender-50);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: white;
    color: var(--wellness-graphite-800);
    border: 2px solid var(--wellness-sage-100);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--wellness-sage-50);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */
main {
    min-height: 100vh;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.content-section ul {
    list-style: disc;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 1rem;
}

.content-section strong {
    color: var(--wellness-gold-600);
    font-weight: 600;
}

/* Image with Overlay */
.image-with-overlay {
    position: relative;
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.image-with-overlay img {
    width: 100%;
    height: auto;
}

.image-overlay-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.image-overlay-content h3 {
    margin-bottom: 0.5rem;
    color: var(--wellness-gold-600);
}

.image-overlay-content p {
    margin: 0;
    font-size: 0.875rem;
}

/* Price Table */
.price-table {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-table.featured {
    background: linear-gradient(135deg, var(--wellness-gold-500), var(--wellness-gold-600));
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(236, 225, 145, 0.4);
}

.price-table.featured h3 {
    color: var(--wellness-graphite-900);
}

.price-table.featured table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.price-table.featured th {
    background: var(--wellness-gold-500);
}

.price-table h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--wellness-gold-600);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--wellness-milk-200);
}

.price-table th {
    font-weight: 600;
    color: var(--wellness-graphite-900);
    background: var(--wellness-milk-50);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: var(--wellness-milk-50);
}

.price-table tr.highlight {
    background: var(--wellness-gold-100);
    font-weight: 600;
}

/* Info Box */
.info-box {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--wellness-gold-500);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    color: var(--wellness-gold-600);
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: var(--wellness-graphite-700);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--wellness-graphite-900);
}

.benefit-card p {
    margin: 0;
    color: var(--wellness-graphite-700);
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--wellness-blush-50), var(--wellness-sage-50));
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-section h2 {
    color: var(--wellness-graphite-900);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--wellness-graphite-800);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-section .btn {
    background: var(--wellness-lavender-100);
    color: var(--wellness-graphite-900);
}

.cta-section .btn:hover {
    background: var(--wellness-milk-50);
    transform: scale(1.05);
}

/* ==========================================
   FLOATING CONTACT BUTTON
   ========================================== */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.floating-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--wellness-sage-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wellness-graphite-900);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    background: var(--wellness-sage-50);
    transform: scale(1.1);
}

.floating-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--wellness-graphite-800);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.floating-item:hover {
    transform: scale(1.05);
}

.floating-item span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-item:hover span {
    opacity: 1;
}

.floating-item.whatsapp {
    background: #25D366;
    color: white;
}

.floating-item.viber {
    background: #7360F2;
    color: white;
}

.floating-item.phone {
    background: var(--wellness-gold-500);
    color: var(--wellness-graphite-900);
}

.floating-item.sms {
    background: var(--wellness-sky-100);
    color: var(--wellness-graphite-900);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--wellness-graphite-900);
    color: var(--wellness-milk-100);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--wellness-gold-500);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--wellness-milk-100);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--wellness-gold-500);
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }

    .cta-btn.desktop-only {
        display: inline-flex;
    }

    .cta-btn.mobile-only {
        display: none;
    }

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

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .floating-item span {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    header > .container {
        height: 70px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .desktop-nav {
        display: none;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .floating-contact {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================
   FOOTER LEGAL LINKS
   ========================================== */
.footer-legal {
    border-top: 1px solid var(--wellness-milk-200);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.footer-legal ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-legal a {
    color: var(--wellness-graphite-700);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--wellness-gold-600);
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--wellness-graphite-900);
}

.cookie-banner-text p {
    font-size: 0.875rem;
    color: var(--wellness-graphite-700);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--wellness-gold-600);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--wellness-gold-600);
    color: var(--wellness-graphite-900);
}

.cookie-btn-accept:hover {
    background: var(--wellness-gold-500);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--wellness-graphite-700);
    border: 1px solid var(--wellness-milk-200);
}

.cookie-btn-reject:hover {
    background: var(--wellness-milk-100);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--wellness-graphite-700);
    border: 1px solid var(--wellness-milk-200);
}

.cookie-btn-settings:hover {
    background: var(--wellness-milk-100);
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--wellness-graphite-700);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: var(--wellness-graphite-900);
}

/* Mobile responsive for cookie banner */
@media (max-width: 767px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal ul {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Breadcrumbs */
/* Breadcrumbs inside Hero */
.breadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    z-index: 10;
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumbs-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs-item:not(:last-child)::after {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-left: 0.25rem;
}

.breadcrumbs-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumbs-link:hover {
    color: var(--wellness-gold-300);
    text-decoration: none;
}

.breadcrumbs-current {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.breadcrumbs-separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.25rem;
}

@media (max-width: 767px) {
    .breadcrumbs {
        padding: 0.75rem 0;
    }

    .breadcrumbs-container {
        padding: 0 1rem;
    }

    .breadcrumbs-list {
        font-size: 0.813rem;
    }

    .breadcrumbs-item:not(:last-child)::after {
        font-size: 1rem;
    }
}

/* ==========================================
   DROPDOWN NAVIGATION
   ========================================== */
.desktop-nav ul li {
    position: relative;
}

.desktop-nav .has-dropdown > a {
    position: relative;
    padding-right: 1.5rem;
}

.desktop-nav .has-dropdown > a::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--wellness-graphite-700);
    transition: transform 0.3s ease;
}

.desktop-nav .has-dropdown:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.desktop-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.desktop-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .dropdown li {
    display: block;
}

.desktop-nav .dropdown li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--wellness-graphite-700);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.desktop-nav .dropdown li a:hover {
    background: var(--wellness-milk-100);
    color: var(--wellness-gold-600);
    padding-left: 2rem;
}

@media (max-width: 767px) {
    .desktop-nav .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--wellness-milk-50);
    }
    
    .desktop-nav .has-dropdown > a::after {
        display: none;
    }
}

/* Force dropdown to be hidden by default - IMPORTANT */
.desktop-nav .dropdown {
    display: none !important;
}

.desktop-nav .has-dropdown:hover .dropdown {
    display: block !important;
}

/* Ensure dropdown appears above other content */
.desktop-nav .has-dropdown {
    position: relative !important;
}

.desktop-nav .dropdown {
    position: absolute !important;
    z-index: 9999 !important;
}
