/**
 * Header Templates CSS - La Miellerie Belfortaine
 * Styles pour tous les templates de header
 *
 * Templates:
 * 1. Classic - .header-classic
 * 2. Glassmorphism - .header-glass
 * 3. Transparent - .header-transparent
 * 4. Honeycomb - .header-honeycomb
 * 5. Minimal - .header-minimal
 *
 * @version 2026.1
 */

/* ===========================================
   VARIABLES CSS DYNAMIQUES
   =========================================== */
/*
 * Les variables CSS sont injectées dynamiquement par PHP dans header.php
 * Ne PAS définir de :root ici - cela écraserait les valeurs admin
 * Variables utilisées:
 * --header-bg, --header-blur, --header-border, --header-shadow
 * --nav-text, --nav-text-hover, --nav-active
 * --cta-bg, --cta-text, --cta-hover
 * --header-accent, --cart-badge-bg, --cart-badge-text
 * --topbar-bg, --topbar-text, --topbar-accent
 */

/* ===========================================
   COMMON STYLES (All Templates)
   =========================================== */
[class^="header-"] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Sticky Shrink */
.header-sticky.scrolled {
    --header-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-sticky.scrolled.shrink {
    /* Effet shrink plus visible */
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.header-sticky.scrolled.shrink .navbar {
    padding: 0.25rem 0 !important;
}

.header-sticky.scrolled.shrink .logo,
.header-sticky.scrolled.shrink [class*="logo-"] {
    height: 40px !important;
    transition: height 0.3s ease;
}

/* ===========================================
   HOVER EFFECTS (Configurable)
   =========================================== */

/* Hover effect: Underline */
[class^="header-"].hover-underline .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nav-text-hover, var(--header-accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

[class^="header-"].hover-underline .nav-link:hover::after,
[class^="header-"].hover-underline .nav-link.active::after {
    width: 80%;
}

/* Hover effect: Highlight */
[class^="header-"].hover-highlight .nav-link {
    position: relative;
    z-index: 1;
}

[class^="header-"].hover-highlight .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--header-accent);
    opacity: 0;
    border-radius: 4px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

[class^="header-"].hover-highlight .nav-link:hover::before {
    opacity: 0.1;
}

/* Hover effect: Scale */
[class^="header-"].hover-scale .nav-link {
    transition: transform 0.2s ease;
}

[class^="header-"].hover-scale .nav-link:hover {
    transform: scale(1.05);
}

/* ===========================================
   ANIMATION ENTRANCE (Configurable)
   =========================================== */

/* Animation: Fade Down */
[class^="header-"].anim-fade-down {
    animation: headerFadeDown 0.5s ease-out;
}

@keyframes headerFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation: Slide Down */
[class^="header-"].anim-slide-down {
    animation: headerSlideDown 0.4s ease-out;
}

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

/* Animation: Fade In */
[class^="header-"].anim-fade-in {
    animation: headerFadeIn 0.6s ease-out;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Common Top Bar */
[class*="topbar"] {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
}

/* ===========================================
   1. CLASSIC TEMPLATE
   =========================================== */
.header-classic {
    background: var(--header-bg);
    backdrop-filter: blur(var(--header-blur));
    -webkit-backdrop-filter: blur(var(--header-blur));
    border-bottom: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
}

.header-classic .header-topbar {
    background: var(--topbar-bg);
    color: var(--topbar-text);
}

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

.header-classic .topbar-link {
    color: var(--topbar-text);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.header-classic .topbar-link:hover {
    color: var(--topbar-accent);
}

/* Classic Navbar */
.header-classic .navbar {
    padding: 0.75rem 0;
}

.header-classic .logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.header-classic.scrolled .logo {
    height: 50px;
}

/* ===========================================
   2. GLASSMORPHISM TEMPLATE
   =========================================== */
.header-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.header-topbar-glass {
    background: var(--topbar-bg, rgba(26, 26, 26, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--topbar-text, white);
    padding: 0.5rem 0;
}

.topbar-link-glass {
    color: var(--topbar-text, rgba(255, 255, 255, 0.8));
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.topbar-link-glass:hover {
    color: var(--topbar-accent, var(--header-accent));
}

.navbar-glass {
    padding: 1rem 0;
}

.navbar-glass-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand-glass {
    position: relative;
}

.logo-glass {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.navbar-menu-glass {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list-glass {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item-glass {
    position: relative;
}

.nav-link-glass {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link-glass:hover,
.nav-link-glass.active {
    background: rgba(212, 160, 23, 0.1);
    color: var(--header-accent);
}

.dropdown-arrow {
    font-size: 0.625rem;
    transition: transform 0.2s;
}

.nav-item-glass:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Glass Dropdown */
.dropdown-glass {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 280px;
    padding-top: 0.5rem;
}

.nav-item-glass:hover .dropdown-glass {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-glass-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.2);
    overflow: hidden;
    padding: 1rem;
}

.dropdown-glass-grid {
    display: grid;
    gap: 0.25rem;
}

.dropdown-item-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--nav-text, #1a1a1a);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-item-glass:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--header-accent);
    transform: translateX(4px);
}

.item-arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s;
}

.dropdown-item-glass:hover .item-arrow {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-glass-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-glass-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--header-accent), #b8860b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-glass-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
    color: white;
}

/* Glass Actions */
.nav-actions-glass {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-btn-glass {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 10px;
    color: var(--nav-text);
    text-decoration: none;
    position: relative;
    transition: all 0.2s;
}

.action-btn-glass:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--header-accent);
    color: var(--header-accent);
}

.action-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.cart-count-glass {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: var(--cart-badge-bg);
    color: var(--cart-badge-text);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.cart-count-glass.visible {
    display: flex;
}

.btn-glass-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--cta-bg), var(--cta-hover));
    color: var(--cta-text);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-glass-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
    color: var(--cta-text);
}

/* Glass Toggler (Mobile) */
.navbar-toggler-glass {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.toggler-bar {
    width: 24px;
    height: 2px;
    background: var(--nav-text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===========================================
   3. TRANSPARENT TEMPLATE
   =========================================== */
.header-transparent {
    background: transparent;
    transition: all 0.4s ease;
}

.header-transparent.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(var(--header-blur));
    box-shadow: var(--header-shadow);
}

.header-topbar-transparent {
    background: var(--topbar-bg, rgba(0, 0, 0, 0.3));
    color: var(--topbar-text, white);
    padding: 0.5rem 0;
}

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

.topbar-content-transparent a {
    color: var(--topbar-text, rgba(255, 255, 255, 0.9));
    text-decoration: none;
}

.topbar-content-transparent a:hover {
    color: var(--topbar-accent, var(--header-accent));
}

.navbar-transparent {
    padding: 1rem 0;
}

.navbar-transparent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand-transparent {
    position: relative;
}

.navbar-brand-transparent .logo-light {
    display: block;
    height: 60px;
}

.navbar-brand-transparent .logo-dark {
    display: none;
    height: 60px;
}

.header-transparent.scrolled .logo-light {
    display: none;
}

.header-transparent.scrolled .logo-dark {
    display: block;
}

.navbar-menu-transparent {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list-transparent {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nav-list-transparent > li > a {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.2s;
}

.header-transparent.scrolled .nav-list-transparent > li > a {
    color: var(--nav-text);
}

.nav-list-transparent > li > a:hover,
.nav-list-transparent > li > a.active {
    color: var(--header-accent);
}

.nav-list-transparent > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--header-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list-transparent > li > a:hover::after,
.nav-list-transparent > li > a.active::after {
    transform: scaleX(1);
}

/* Transparent Megamenu */
.mega-transparent {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding-top: 0.5rem;
}

.has-mega:hover .mega-transparent {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-transparent-content {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 400px;
}

.mega-categories h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nav-text, #6b7280);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.mega-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-categories li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--nav-text, #1a1a1a);
    text-decoration: none;
    transition: all 0.2s;
}

.mega-categories li a:hover {
    color: var(--header-accent);
    transform: translateX(4px);
}

.mega-featured {
    width: 180px;
    flex-shrink: 0;
}

.mega-featured a {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.mega-featured img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.mega-featured-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-weight: 600;
}

/* Transparent Actions */
.nav-actions-transparent {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-transparent {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.header-transparent.scrolled .action-transparent {
    color: var(--nav-text);
}

.action-transparent:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--header-accent);
}

.cart-count-transparent {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    background: var(--header-accent);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-transparent-cta {
    padding: 0.625rem 1.25rem;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.header-transparent.scrolled .btn-transparent-cta {
    background: var(--cta-bg);
    color: var(--cta-text);
}

.btn-transparent-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   4. HONEYCOMB TEMPLATE
   =========================================== */
.header-honeycomb {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border-bottom: 3px solid transparent;
    border-image: repeating-linear-gradient(90deg, var(--header-accent) 0, var(--header-accent) 20px, transparent 20px, transparent 40px) 1;
}

.header-topbar-honeycomb {
    background: var(--topbar-bg, linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%));
    color: var(--topbar-text, white);
    padding: 0.5rem 0;
    position: relative;
}

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

.hex-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--header-accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-right: 0.75rem;
}

.hex-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.hex-link:hover {
    color: var(--header-accent);
}

.honeycomb-border {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
        var(--header-accent) 0, var(--header-accent) 20px,
        transparent 20px, transparent 40px
    );
}

.navbar-honeycomb {
    padding: 1rem 0;
    position: relative;
}

.navbar-honeycomb-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.03;
    pointer-events: none;
}

.hex-pattern {
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23D4A017' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z'/%3E%3C/svg%3E");
    background-size: 28px 50px;
}

.navbar-honeycomb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand-honeycomb {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.flying-bee {
    width: 30px;
    height: 30px;
    animation: beeFly 3s ease-in-out infinite;
}

.bee-svg {
    width: 100%;
    height: 100%;
}

.bee-wing {
    animation: beeWing 0.1s linear infinite;
    transform-origin: center;
}

@keyframes beeFly {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    25% { transform: translate(5px, -8px) rotate(5deg); }
    50% { transform: translate(10px, -3px) rotate(-3deg); }
    75% { transform: translate(5px, 5px) rotate(3deg); }
}

@keyframes beeWing {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.logo-honeycomb {
    height: 55px;
}

/* Hexagonal Navigation */
.nav-list-honeycomb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-hex {
    position: relative;
}

.hex-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.2s;
}

.hex-nav-link .hex-shape {
    position: absolute;
    inset: 0;
    background: transparent;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.hex-nav-link:hover .hex-shape,
.hex-nav-link.active .hex-shape {
    background: rgba(212, 160, 23, 0.15);
}

.hex-nav-link:hover,
.hex-nav-link.active {
    color: var(--header-accent);
}

/* Honeycomb Dropdown */
.dropdown-honeycomb {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 1rem;
    z-index: 100;
}

.nav-hex:hover .dropdown-honeycomb {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-honeycomb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 320px;
}

.hex-category {
    text-decoration: none;
    animation: hexFadeIn 0.3s ease forwards;
    opacity: 0;
}

.hex-cat-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f9f5eb;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.hex-category:hover .hex-cat-shape {
    background: var(--header-accent);
    color: white;
}

@keyframes hexFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.view-all-hex {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: var(--header-accent);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.view-all-hex:hover {
    background: #b8860b;
    color: white;
}

/* Honeycomb Actions */
.nav-actions-honeycomb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hex-action {
    text-decoration: none;
}

.hex-action-shape {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f5eb;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    color: var(--nav-text);
    position: relative;
    transition: all 0.2s;
}

.hex-action:hover .hex-action-shape {
    background: var(--header-accent);
    color: white;
}

.hex-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: #dc2626;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-honeycomb-cta {
    position: relative;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    overflow: hidden;
}

.btn-hex-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--header-accent), #b8860b);
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    transition: all 0.3s;
}

.btn-hex-text {
    position: relative;
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-honeycomb-cta:hover .btn-hex-bg {
    transform: scale(1.05);
}

/* Honey Drips */
.honey-drips {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none;
    overflow: hidden;
}

.drip {
    position: absolute;
    width: 8px;
    height: 0;
    background: linear-gradient(180deg, var(--header-accent) 0%, #8B6914 100%);
    border-radius: 0 0 4px 4px;
    animation: dripAnim 4s ease-in-out infinite;
}

@keyframes dripAnim {
    0%, 100% { height: 0; }
    50% { height: 15px; }
}

/* ===========================================
   5. MINIMAL TEMPLATE
   =========================================== */
.header-minimal {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.header-topbar-minimal {
    background: var(--topbar-bg, #f9fafb);
    border-bottom: 1px solid var(--header-border, #e5e7eb);
    padding: 0.375rem 0;
    text-align: center;
}

.topbar-minimal-text {
    font-size: 0.8125rem;
    color: var(--topbar-text, #6b7280);
}

.navbar-minimal {
    padding: 1rem 0;
}

.navbar-minimal-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-minimal-brand {
    flex-shrink: 0;
}

.navbar-minimal-brand.centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-minimal-brand img {
    height: 45px;
}

.navbar-menu-minimal {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-minimal-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-minimal-link {
    color: var(--nav-text, #374151);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
}

.nav-minimal-link:hover,
.nav-minimal-link.active {
    color: var(--header-accent);
}

.nav-minimal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--header-accent);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-minimal-link:hover::after,
.nav-minimal-link.active::after {
    transform: scaleX(1);
}

/* Minimal Submenu */
.has-sub {
    position: relative;
}

.sub-minimal {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
}

.has-sub:hover .sub-minimal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-minimal li a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: var(--nav-text, #374151);
    text-decoration: none;
    transition: all 0.2s;
}

.sub-minimal li a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--nav-text-hover);
}

/* Minimal Actions */
.nav-actions-minimal {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.action-minimal {
    color: var(--nav-text, #374151);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.action-minimal:hover {
    color: var(--header-accent);
}

.count-minimal {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    background: var(--header-accent);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Minimal Toggler */
.navbar-toggler-minimal {
    display: none;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.navbar-toggler-minimal .line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #374151;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-minimal .line::before,
.navbar-toggler-minimal .line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #374151;
}

.navbar-toggler-minimal .line::before {
    top: -8px;
}

.navbar-toggler-minimal .line::after {
    top: 8px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    /* Show togglers */
    .navbar-toggler-glass,
    .navbar-toggler-transparent,
    .navbar-toggler-honeycomb,
    .navbar-toggler-minimal {
        display: flex;
    }

    /* Hide menus by default */
    .navbar-menu-glass,
    .navbar-menu-transparent,
    .navbar-menu-honeycomb,
    .nav-minimal-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu-glass.show,
    .navbar-menu-transparent.show,
    .navbar-menu-honeycomb.show {
        display: block;
    }

    .nav-list-glass,
    .nav-list-transparent,
    .nav-list-honeycomb,
    .nav-minimal-list {
        flex-direction: column;
        gap: 0;
    }

    .dropdown-glass,
    .mega-transparent,
    .dropdown-honeycomb,
    .sub-minimal {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 0 1rem;
        min-width: auto;
    }
}

/* ===========================================
   PARTICLES (Optional Effect)
   =========================================== */
.header-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--header-accent);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}
