/**
 * Enhanced Header & Footer Styles
 * Monetization-optimized navigation
 * 
 * @package WifeLifeSovereign
 */

/* ============================================
   HEADER STYLES
   ============================================ */

/* Intel Bar */
.intel-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.intel-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intel-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intel-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #c9a96e;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #c9a96e;
    border-radius: 50%;
}

.status-dot.pulse {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.intel-bar-right .intel-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c9a96e;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.intel-bar-right .intel-highlight:hover {
    opacity: 0.8;
}

/* Header */
.luxury-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.luxury-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.luxury-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Compact nav bar once the big logo has slid away */
.luxury-header.scrolled .luxury-header-inner {
    height: 60px;
}

/* ============================================
   WEAR TICKER — below the nav bar
   ============================================ */
.wear-ticker {
    display: flex;
    align-items: stretch;
    height: 34px;
    background: #1a1a1a;
    border-top: 1px solid #333;
    overflow: hidden;
    position: relative;
}

/* "New In" label pill on the left */
.wear-ticker-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px 0 18px;
    border-right: 1px solid #333;
    flex-shrink: 0;
    background: #1a1a1a;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    z-index: 2;
}

/* Scrolling track */
.wear-ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.wear-ticker-track::before,
.wear-ticker-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    z-index: 2;
    pointer-events: none;
}

.wear-ticker-track::before {
    left: 0;
    background: linear-gradient(to right, #fafafa 40%, transparent);
}

.wear-ticker-track::after {
    right: 0;
    background: linear-gradient(to left, #fafafa 40%, transparent);
}

/* Inner strip — doubled content for seamless loop */
.wear-ticker-inner {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    animation: wear-ticker-scroll 50s linear infinite;
}

.wear-ticker-inner:hover {
    animation-play-state: paused;
}

@keyframes wear-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Individual product links */
.wear-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.ticker-product {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 12px;
    color: #fff;
    transition: color 0.2s;
}

.ticker-by {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 10.5px;
    color: #888;
    transition: color 0.2s;
}

.wear-ticker-item:hover .ticker-product { color: #c9a96e; }
.wear-ticker-item:hover .ticker-by      { color: #c9a96e; }

/* Separator glyph between items */
.ticker-sep {
    font-size: 8px;
    color: #555;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

/* Hide ticker on mobile (nav is hidden anyway, but be explicit) */
@media (max-width: 992px) {
    .wear-ticker { display: none; }
}

/* Logo showcase — standalone element above the sticky nav, scrolls away naturally */
#logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

/* Compact logo (inside the nav bar) — hidden until scroll */
#logo-compact {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#logo-compact.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Logo */
.luxury-branding {
    flex-shrink: 0;
}

.luxury-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-icon {
    color: #c9a96e;
}

.logo-primary {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-tagline {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

/* Navigation */
.luxury-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.luxury-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.luxury-menu > li {
    position: relative;
}

.luxury-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: all 0.2s;
}

.luxury-menu > li:hover > a,
.luxury-menu > li.current-menu-item > a {
    background: #f5f5f5;
    color: #c9a96e;
}

.menu-arrow {
    opacity: 0.5;
    transition: transform 0.2s;
}

.luxury-menu > li:hover .menu-arrow {
    transform: rotate(180deg);
}

/* Shop Link with Badge */
.shop-link .menu-badge {
    background: #c9a96e;
    color: #fff;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 2px;
    margin-left: 4px;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #c9a96e;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 24px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
}

.luxury-menu > li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shop-mega .mega-menu-inner {
    grid-template-columns: repeat(4, 1fr);
}

.mega-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.mega-list li {
    margin-bottom: 8px;
}

.mega-list a {
    color: #444;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    transition: color 0.2s;
}

.mega-list a:hover {
    color: #c9a96e;
}

.mega-icon {
    margin-right: 6px;
}

.mega-count {
    background: #f5f5f5;
    color: #666;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Mega Menu Featured Section */
.mega-featured {
    background: #f9f9f9;
    margin: -24px;
    margin-left: 0;
    padding: 24px;
}

.featured-wife-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.featured-wife-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.featured-wife-info {
    display: flex;
    flex-direction: column;
}

.featured-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c9a96e;
    margin-bottom: 4px;
}

.featured-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.featured-cta {
    font-size: 12px;
    color: #c9a96e;
    font-weight: 500;
}

/* Shop Section in Mega Menu */
.shop-section .mega-desc {
    font-size: 12px;
    color: #666;
    margin: -8px 0 12px;
}

.shop-promo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    margin: -24px;
    margin-left: 0;
    padding: 24px;
    display: flex;
    align-items: center;
}

.shop-promo-card {
    text-align: center;
}

.promo-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c9a96e;
    margin-bottom: 8px;
}

.shop-promo-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 0 0 8px;
}

.shop-promo-card p {
    font-size: 12px;
    color: #aaa;
    margin: 0 0 16px;
}

.promo-cta {
    color: #c9a96e;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

/* Sub Menu (non-mega) */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #c9a96e;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1001;
}

.luxury-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 16px;
    color: #444;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.sub-menu li a:hover {
    background: #f5f5f5;
    color: #c9a96e;
}

/* Header Actions */
.luxury-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.luxury-search-toggle,
.header-wishlist,
.header-account {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
}

.luxury-search-toggle:hover,
.header-wishlist:hover,
.header-account:hover {
    background: #f5f5f5;
    color: #c9a96e;
}

.wishlist-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #c9a96e;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-left: 8px;
    transition: all 0.2s;
}

.header-cta:hover {
    background: #c9a96e;
    color: #fff;
}

.cta-arrow {
    transition: transform 0.2s;
}

.header-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Search Overlay */
.luxury-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 24px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.search-overlay-content form {
    position: relative;
}

.search-overlay-content input {
    width: 100%;
    padding: 20px 60px 20px 24px;
    font-size: 18px;
    border: none;
    border-bottom: 2px solid #c9a96e;
    background: transparent;
    color: #fff;
    outline: none;
}

.search-overlay-content input::placeholder {
    color: #666;
}

.search-overlay-content button[type="submit"] {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #c9a96e;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
}

.search-suggestions {
    margin-top: 24px;
    color: #666;
    font-size: 14px;
}

.suggestion-label {
    margin-right: 12px;
}

.search-suggestions a {
    color: #c9a96e;
    text-decoration: none;
    margin-right: 16px;
}

.search-suggestions a:hover {
    text-decoration: underline;
}

/* Mobile Navigation */
.luxury-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    background: #fff;
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu > li > a {
    display: block;
    padding: 16px 24px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.mobile-has-children {
    position: relative;
}

.mobile-has-children > a {
    padding-right: 60px;
}

.mobile-toggle {
    position: absolute;
    right: 24px;
    top: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-toggle.active {
    transform: rotate(90deg);
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 24px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-nav-footer {
    padding: 24px;
    border-top: 1px solid #e5e5e5;
}

.mobile-cta {
    display: block;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
}

.mobile-social {
    text-align: center;
}

.social-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    color: #666;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #c9a96e;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    z-index: 999;
    justify-content: space-around;
    padding: 8px 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: #c9a96e;
}

.shop-icon-wrap {
    background: #1a1a1a;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 24px;
}

.newsletter-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 0 0 12px;
}

.newsletter-content p {
    color: #aaa;
    margin: 0 0 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #444;
    background: transparent;
    color: #fff;
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: #666;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c9a96e;
    color: #fff;
    padding: 14px 28px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #b89860;
}

/* Main Footer */
.enhanced-footer {
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

/* Footer Column */
.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-subheading {
    margin-top: 32px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #c9a96e;
}

.footer-link-featured {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-link-featured span:first-child {
    font-weight: 500;
    color: #1a1a1a;
}

.footer-link-featured small {
    font-size: 12px;
    color: #999;
}

/* Brand Column */
.footer-brand .footer-logo {
    margin-bottom: 16px;
}

.footer-site-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0 0 16px;
}

.footer-tagline {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #666;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #c9a96e;
    border-color: #c9a96e;
    color: #fff;
}

.footer-app-promo {
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.app-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c9a96e;
    margin-bottom: 4px;
}

.footer-app-promo p {
    font-weight: 500;
    margin: 0 0 4px;
}

.footer-app-promo small {
    color: #999;
    font-size: 12px;
}

/* Latest Posts in Footer */
.footer-latest-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-post-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.footer-post-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-title {
    font-size: 13px;
    color: #444;
    flex: 1;
    margin-right: 12px;
}

.post-date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

/* Affiliate Disclosure Bar */
.footer-disclosure-bar {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 20px 24px;
}

.disclosure-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 13px;
    text-align: center;
}

.disclosure-inner svg {
    flex-shrink: 0;
    color: #c9a96e;
}

.disclosure-inner a {
    color: #c9a96e;
    text-decoration: none;
}

.disclosure-inner a:hover {
    text-decoration: underline;
}

/* Copyright Bar */
.footer-copyright {
    background: #1a1a1a;
    color: #666;
    padding: 24px;
}

.copyright-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-left p {
    margin: 0;
    font-size: 13px;
}

.copyright-disclaimer {
    font-size: 11px;
    margin-top: 4px;
}

.copyright-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-label {
    font-size: 12px;
}

.payment-methods {
    display: flex;
    gap: 8px;
}

.payment-methods img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.2s;
}

.payment-methods img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .luxury-menu > li > a {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .luxury-nav {
        display: none;
    }

    .luxury-menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .mega-menu {
        display: none;
    }

    /* Hide the compact (scroll) logo on mobile — large showcase logo is used instead */
    .luxury-logo-compact {
        display: none !important;
    }

    /* Center the large showcase logo on mobile */
    .luxury-branding {
        text-align: center;
        padding: 14px 16px 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .luxury-logo-large,
    .luxury-logo-text-large {
        display: inline-flex;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .copyright-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .intel-bar-center {
        display: none;
    }
    
    .luxury-header-inner {
        height: 75px;
    }

    .logo-primary {
        font-size: 20px;
    }

    .logo-tagline {
        display: none;
    }
    
    .header-wishlist span {
        display: none;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .footer-newsletter {
        padding: 40px 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        padding: 40px 24px;
    }
    
    .disclosure-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .luxury-actions {
        gap: 4px;
    }

    .luxury-search-toggle,
    .header-wishlist,
    .header-account {
        width: 36px;
        height: 36px;
    }

    .mobile-nav-panel {
        width: 280px;
    }
}

/* ============================================
   ARCHETYPES MEGA-MENU — Registry Style
   ============================================ */

.archetypes-mega {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #c9a96e;
    /* Wider for 4-column archetype layout */
    min-width: 900px;
    max-width: 1000px;
    padding: 0;
    overflow: hidden;
    /* left-align to nav item instead of centering, avoids left-edge overflow */
    left: 0;
    transform: translateY(10px);
}

.luxury-menu > li:hover .archetypes-mega {
    transform: translateY(0);
}

/* Header strip */
.arch-mega-top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 13px 20px 11px;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
}

.arch-mega-top .mega-title {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

.arch-mega-top-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.arch-mega-top-links a {
    font-size: 12px;
    color: #c9a96e;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
}

.arch-mega-top-links a:hover {
    color: #a07d40;
}

.arch-top-sep {
    color: #ddd;
    font-size: 16px;
    line-height: 1;
}

.arch-mega-top-note {
    font-size: 11px;
    color: #bbb;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 4-column grid of archetype links - 5 per column */
.arch-names-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ebebeb; /* hairline grid lines via gap colour */
    max-width: 960px;
    margin: 0 auto;
}

.arch-name-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-style: italic;
    text-align: left;
    line-height: 1.3;
    min-height: 42px;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    transition: background 0.15s ease, color 0.15s ease;
}

/* Remove the bottom border on the last row (items 19-20) */
.arch-name-link:nth-child(n+19) {
    border-bottom: none;
}

/* Remove right border on even items (2nd column) */
.arch-name-link:nth-child(2n) {
    border-right: none;
}

.arch-name-link:hover {
    background: #fffaf2;
    color: #c9a96e;
}

/* ============================================
   FIND ARCHETYPE — Gold Button
   ============================================ */

.menu-item-quiz .quiz-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #c9a96e 0%, #b8963b 50%, #c9a96e 100%);
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: 4px;
    border: 1px solid #b8963b;
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.menu-item-quiz .quiz-button:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    color: #ffffff !important;
    border-color: #1a1a1a;
}

.menu-item-quiz .quiz-button .menu-label {
    position: relative;
}

.menu-item-quiz .quiz-button::after {
    display: none !important;
}

/* Mobile adjustment */
@media (max-width: 1024px) {
    .menu-item-quiz .quiz-button {
        padding: 0.4rem 1rem;
        font-size: 0.65rem;
    }
}
