/*
Theme Name: GHFugu
Theme URI: https://ghfugu.com
Author: GHFugu
Author URI: https://ghfugu.com
Description: Ghana Fugu Smock — A premium WooCommerce-ready parent theme for handwoven heritage apparel. Features custom header & footer, Elementor support, custom post types, widget areas, and full theme customizer options.
Version: 1.5.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ghfugu
Tags: e-commerce, woocommerce, custom-header, custom-footer, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, elementor
WC requires at least: 7.0
WC tested up to: 9.0
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
    --gold: #C9A227;
    --gold-light: #E8D48A;
    --indigo: #1A1B4B;
    --indigo-deep: #0D0E2B;
    --cream: #F5F0E6;
    --cream-dark: #E8E0D0;
    --charcoal: #1C1C1C;
    --emerald: #1B4D3E;
    --coral: #C4583B;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 1440px;
    --section-padding: 8rem 4rem;
    --section-padding-sm: 4rem 2rem;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--indigo);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* ==========================================================================
   Geometric Pattern Background
   ========================================================================== */
.pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, var(--indigo) 0px, var(--indigo) 1px, transparent 1px, transparent 20px);
    z-index: 1;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 4rem;
}

.site-wrapper {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--indigo-deep);
}

/* Desktop base sizes */
h1 { font-size: 3.5rem;  font-weight: 600; }
h2 { font-size: 2.8rem;  font-weight: 600; }
h3 { font-size: 1.6rem;  font-weight: 500; }
h4 { font-size: 1.1rem;  font-weight: 600; }
h5 { font-size: 1rem;    font-weight: 600; }
h6 { font-size: 0.9rem;  font-weight: 600; }

p { line-height: 1.7; }

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--indigo-deep);
    font-weight: 600;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-slow);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--indigo);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before { left: 0; }
.btn-primary:hover { color: var(--indigo); }

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

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

.btn-gold {
    background: var(--gold);
    color: var(--indigo);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--indigo);
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(245, 240, 230, 0.98), rgba(245, 240, 230, 0));
    transition: var(--transition-slow);
}

.site-header.scrolled {
    background: rgba(245, 240, 230, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.08);
    padding: 1rem 4rem;
}

/* Logo */
.site-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--indigo);
    letter-spacing: -0.02em;
    text-decoration: none;
}

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

/* Primary Nav */
.primary-navigation {
    display: flex;
    align-items: center;
}

.primary-navigation ul {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.primary-navigation ul li a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.primary-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.primary-navigation ul li a:hover::after,
.primary-navigation ul li.current-menu-item a::after {
    width: 100%;
}

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

.header-contact-links {
    display: flex;
    gap: 1.5rem;
}

.header-contact-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.header-contact-links a:hover { opacity: 1; }

/* Cart Button */
.cart-btn,
.header-cart {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--indigo);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    color: white;
    text-decoration: none;
}

.cart-btn:hover,
.header-cart:hover {
    transform: scale(1.1);
    background: var(--gold);
    color: var(--indigo);
}

.cart-btn svg,
.header-cart svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--coral);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--indigo);
    transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 6rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--indigo);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.05;
    color: var(--indigo-deep);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s 0.1s ease forwards;
    opacity: 0;
}

.hero-content h1 .italic-gold {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 480px;
    margin-bottom: 3rem;
    animation: fadeSlideUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.3s ease forwards;
    opacity: 0;
}

.hero-visual {
    position: relative;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background:
        radial-gradient(circle at 30% 70%, rgba(201,162,39,0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(201,162,39,0.2) 0%, transparent 40%);
    animation: gradientShift 10s ease infinite;
}

.hero-image-container {
    position: relative;
    width: 80%;
    height: 70%;
    animation: floatIn 1s 0.5s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 50%, #8B6914 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    position: relative;
    min-height: 500px;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
}

.hero-image-placeholder-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--indigo);
    text-align: center;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Floating Price Badge - updated with your new floating style */
.gh-price-badge {
    position: absolute;
    top: 50px;           /* default – clear of torso */
    right: 50px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy);  /* theme-safe replacement for --indigo */
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(201,162,39,0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.gh-price-badge .price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.gh-price-badge .price-value {
    font-size: 1.5rem;
    line-height: 1;
}
/* ==========================================================================
   Features Bar
   ========================================================================== */
.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--indigo);
    padding: 3rem 4rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(201,162,39,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.feature-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    color: white;
}

.feature-text p {
    font-size: 0.85rem;
    opacity: 0.7;
    color: white;
}

/* ==========================================================================
   Section Base
   ========================================================================== */
.site-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.product-image-wrap {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--coral);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.product-badge.sale { background: var(--coral); }
.product-badge.new { background: var(--emerald); }
.product-badge.exclusive { background: var(--indigo); }

.quick-view-btn {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: var(--indigo);
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    z-index: 3;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--indigo);
    font-weight: 600;
}

.product-price del {
    font-size: 1rem;
    color: #999;
    margin-right: 0.5rem;
    font-weight: 400;
}

.product-price ins {
    text-decoration: none;
    color: var(--coral);
}

.view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* ==========================================================================
   Best Sellers Section
   ========================================================================== */
.best-sellers-section {
    background: var(--indigo-deep);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.best-sellers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,162,39,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.best-sellers-section .section-title { color: white; }

.presidential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, #DAB12B 100%);
    color: var(--indigo);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.presidential-badge svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.best-seller-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.featured-product-card {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--gold) 0%, #8B6914 100%);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.featured-product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.featured-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    border-radius: 24px;
}

.featured-product-content {
    position: relative;
    z-index: 2;
    color: white;
}

.featured-product-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.featured-product-content .product-price {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.featured-product-content .btn {
    background: white;
    color: var(--indigo);
}

.featured-product-content .btn:hover {
    background: var(--indigo);
    color: white;
}

.seller-item-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.seller-item-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.seller-item-image {
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
}

.seller-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-item-info { color: white; }

.seller-item-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: white;
}

.seller-item-info .product-price {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ==========================================================================
   Collections Section
   ========================================================================== */
.collections-section {
    background: linear-gradient(180deg, var(--cream) 0%, white 100%);
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
}

.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.collection-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--cream-dark);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
}

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

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

/* ==========================================================================
   Overlord Banner
   ========================================================================== */
.overlord-banner {
    background: linear-gradient(135deg, var(--emerald) 0%, #0F2E24 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.overlord-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 100px,
        rgba(255,255,255,0.02) 100px,
        rgba(255,255,255,0.02) 101px
    );
}

.overlord-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    position: relative;
    z-index: 2;
}

.overlord-content .section-label { color: var(--gold-light); }

.overlord-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: white;
    margin-bottom: 1rem;
}

.overlord-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.overlord-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.overlord-image-wrap {
    width: 70%;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    position: relative;
}

.overlord-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlord-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--gold) 0%, #8B6914 100%);
    border-radius: 200px 200px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlord-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--indigo);
    font-style: italic;
    text-align: center;
}

/* ==========================================================================
   News / Blog Section
   ========================================================================== */
.news-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
}

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

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.news-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,162,39,0.3) 0%, transparent 60%);
}

.news-card-content { padding: 2rem; }

.news-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--indigo-deep);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.news-read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.news-read-more:hover { gap: 1rem; color: var(--gold); }

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background: var(--charcoal);
    color: white;
    padding: 6rem 4rem 2rem;
    position: relative;
    z-index: 2;
}

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

.footer-brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
}

.footer-brand-logo .logo-accent { color: var(--gold); }

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0.7;
}

.footer-contact-info a,
.footer-contact-info span {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.footer-contact-info a:hover { opacity: 1; color: white; }

.footer-col-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-family: var(--font-body);
}

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

.footer-nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-nav-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Newsletter */
.newsletter-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 8px 0 0 8px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }

.newsletter-form button[type="submit"] {
    padding: 1rem 1.5rem;
    background: var(--gold);
    border: none;
    color: var(--indigo);
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: background 0.3s;
    font-size: 1rem;
}

.newsletter-form button[type="submit"]:hover { background: var(--gold-light); }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: white; }

.scroll-to-top {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.scroll-to-top:hover { transform: translateY(-5px); }

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--indigo);
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */
.woocommerce-page .page-title,
.woocommerce h1.page-title {
    font-family: var(--font-heading);
    color: var(--indigo-deep);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-slow);
    padding: 0 !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.woocommerce ul.products li.product a img {
    margin: 0;
    width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--charcoal);
    padding: 0 1.5rem;
}

.woocommerce ul.products li.product .price {
    font-family: var(--font-heading);
    color: var(--indigo);
    font-weight: 600;
    padding: 0 1.5rem 1.5rem;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--indigo) !important;
    color: white !important;
    border-radius: 0 !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition) !important;
    padding: 1rem 2rem !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--gold) !important;
    color: var(--indigo) !important;
}

.woocommerce .woocommerce-breadcrumb {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 0.9rem;
}

.woocommerce .woocommerce-breadcrumb a { color: var(--gold); }

.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    color: var(--indigo-deep);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: var(--font-heading);
    color: var(--indigo);
    font-size: 2rem !important;
}

.woocommerce #respond input#submit,
.woocommerce #content input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
    background: var(--indigo) !important;
    color: white !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 1.2rem 2.5rem !important;
    border-radius: 0 !important;
    transition: var(--transition) !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #place_order:hover {
    background: var(--gold) !important;
    color: var(--indigo) !important;
}

/* Woo Notices */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--gold) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--gold) !important;
}

/* Sale Badge */
.woocommerce span.onsale {
    background: var(--coral) !important;
    border-radius: 4px !important;
    min-height: auto !important;
    line-height: 1 !important;
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    top: 1rem !important;
    left: 1rem !important;
    min-width: auto !important;
}

/* Star Ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
    color: var(--gold) !important;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--gold) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    box-shadow: 0 0 0 999px var(--cream) !important;
}

/* ==========================================================================
   Sidebar & Widgets
   ========================================================================== */
.sidebar {
    padding-left: 3rem;
}

.widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--indigo-deep);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--charcoal); font-size: 0.95rem; }
.widget ul li a:hover { color: var(--gold); padding-left: 5px; }

/* ==========================================================================
   Blog / Archive
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.entry-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.entry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.entry-thumbnail {
    height: 260px;
    overflow: hidden;
}

.entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.entry-card:hover .entry-thumbnail img { transform: scale(1.05); }

.entry-content-wrap { padding: 2rem; }

.entry-meta {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.entry-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--indigo-deep);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.entry-title a { color: inherit; }
.entry-title a:hover { color: var(--gold); }

.entry-excerpt {
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
    padding: 10rem 4rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,162,39,0.2) 0%, transparent 60%);
}

.page-hero h1 {
    font-family: var(--font-heading);
    color: white;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumbs {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumbs a { color: var(--gold-light); }

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination a,
.pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--charcoal);
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.pagination a:hover,
.pagination .current {
    background: var(--indigo);
    color: white;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes gradientShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive — Tablet Large (≤ 1200px)
   ========================================================================== */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .best-seller-showcase { grid-template-columns: 1fr 1fr; }
    .featured-product-card { grid-column: span 2; grid-row: span 1; min-height: 400px; }
}

/* ==========================================================================
   Responsive — Tablet (≤ 992px)
   ========================================================================== */
@media (max-width: 992px) {
    :root { --section-padding: 5rem 2rem; }

    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem;   }
    h3 { font-size: 1.4rem; }
    .section-title       { font-size: 2rem; }
    .hero-content h1     { font-size: 2.8rem; }
    .overlord-content h2 { font-size: 2.4rem; }

    .site-header          { padding: 1rem 2rem; }
    .site-header.scrolled { padding: 0.75rem 2rem; }

    .primary-navigation { display: none; }
    .primary-navigation.is-open {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(245,240,230,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    .primary-navigation.is-open ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .primary-navigation.is-open ul li a {
        font-size: 1.4rem;
        font-family: var(--font-heading);
    }

    .menu-toggle { display: flex; }
    .header-contact-links { display: none; }

    .hero-section { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 9rem 2rem 4rem; }
    .hero-visual  { min-height: 400px; }

    .features-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem; }

    .products-grid   { grid-template-columns: repeat(2, 1fr); }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid       { grid-template-columns: repeat(2, 1fr); }
    .blog-grid       { grid-template-columns: 1fr; }

    .overlord-banner  { grid-template-columns: 1fr; }
    .overlord-visual  { min-height: 400px; }
    .overlord-content { padding: 3rem 2rem; }

    .best-seller-showcase  { grid-template-columns: 1fr; }
    .featured-product-card { grid-column: span 1; min-height: 400px; }

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

    .entry-card      { margin-bottom: 1rem; }
    .entry-thumbnail { height: 220px; }
    .entry-title     { font-size: 1.3rem; }
}

/* ==========================================================================
   Responsive — Mobile (≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
    :root { --section-padding: 4rem 1.5rem; }

    html { font-size: 15px; }

    h1 { font-size: 1.9rem !important; }
    h2 { font-size: 1.7rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1rem !important;   }

    .section-title               { font-size: 1.7rem !important; }
    .hero-content h1             { font-size: 2rem !important;   }
    .overlord-content h2         { font-size: 1.8rem !important; }
    .featured-product-content h3 { font-size: 1.4rem !important; }
    .news-card-content h3        { font-size: 1.1rem !important; }
    .entry-title                 { font-size: 1.2rem !important; }
    .product-name                { font-size: 0.92rem; }
    .product-price               { font-size: 1.1rem; }

    .hero-content   { padding: 7rem 1.5rem 3rem; }
    .hero-subtitle  { font-size: 1rem; }
    .hero-cta       { flex-direction: column; gap: 1rem; }
    .hero-floating-price { width: 90px; height: 90px; bottom: -20px; right: -10px; }
    .hero-floating-price .price-value { font-size: 1.2rem; }

    .features-bar    { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
    .feature-icon    { width: 48px; height: 48px; }
    .feature-icon svg{ width: 22px; height: 22px; }
    .feature-text h4 { font-size: 0.95rem; }
    .feature-text p  { font-size: 0.8rem; }

    .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .collection-tab  { padding: 0.7rem 1.2rem; font-size: 0.85rem; }

    .news-grid          { grid-template-columns: 1fr; }
    .blog-grid          { grid-template-columns: 1fr; }
    .news-card-image    { height: 180px; }
    .entry-thumbnail    { height: 200px; }
    .entry-content-wrap { padding: 1.5rem; }
    .entry-excerpt      { font-size: 0.9rem; }

    .best-seller-showcase  { grid-template-columns: 1fr; gap: 1rem; }
    .featured-product-card { min-height: 300px; padding: 2rem 1.5rem; }
    .seller-item-card      { flex-direction: column; text-align: center; }
    .seller-item-image     { width: 100%; height: 160px; }
    .presidential-badge    { font-size: 0.8rem; padding: 0.8rem 1.4rem; flex-wrap: wrap; justify-content: center; }

    .overlord-banner  { grid-template-columns: 1fr; }
    .overlord-content { padding: 2.5rem 1.5rem; }
    .overlord-visual  { min-height: 280px; }

    .footer-grid         { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer         { padding: 3.5rem 1.5rem 1.5rem; }
    .footer-bottom       { flex-direction: column; text-align: center; gap: 1rem; }
    .footer-bottom-links { justify-content: center; }
    .footer-brand-logo   { font-size: 1.6rem; }

    .btn          { padding: 1rem 1.8rem; font-size: 0.85rem; }
    .site-header  { padding: 0.9rem 1.5rem; }
    .site-logo    { font-size: 1.5rem; }
    .cart-btn, .header-cart { width: 38px; height: 38px; }
    .page-hero    { padding: 8rem 1.5rem 3rem; }
    .woo-content-wrapper { padding: 1.5rem; }
}

/* ==========================================================================
   Responsive — Small Mobile (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {
    html { font-size: 14px; }

    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }

    .section-title   { font-size: 1.5rem !important; }
    .hero-content h1 { font-size: 1.8rem !important; }

    .products-grid   { grid-template-columns: 1fr; }
    .collection-grid { grid-template-columns: 1fr; }
    .hero-content    { padding: 7rem 1.2rem 2.5rem; }
    .section-header  { margin-bottom: 2.5rem; }
    .section-label   { font-size: 0.75rem; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] {
        border-right: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        margin-bottom: 8px;
    }
    .newsletter-form button[type="submit"] { border-radius: 8px; }

    .collection-tabs { gap: 0.5rem; }
    .collection-tab  { font-size: 0.8rem; padding: 0.6rem 1rem; }
    .footer-nav-links a { font-size: 0.9rem; }
    .btn             { padding: 0.9rem 1.5rem; font-size: 0.82rem; }
    .seller-item-image { height: 130px; }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--gold);
    color: var(--indigo);
    padding: 1rem 2rem;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus { top: 0; }


/* ==========================================================================
   Topbar
   ========================================================================== */
.ghfugu-topbar {
    background: var(--indigo);
    color: var(--cream);
    text-align: center;
    padding: 0.6rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1001;
}
.ghfugu-topbar a,
.ghfugu-topbar .topbar-link {
    color: inherit;
    text-decoration: none;
}
.ghfugu-topbar .topbar-link:hover { text-decoration: underline; }

/* ==========================================================================
   Header — Rebuilt with full customizer support
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height, 80px);
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
    background: var(--header-bg, transparent);
}
.header-transparent { background: transparent; }
.header-solid       { background: var(--cream); }

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2.5rem;
    gap: 1.5rem;
    max-width: var(--container-max, 1440px);
    margin: 0 auto;
}

/* Logo */
.site-logo-wrap { flex-shrink: 0; }
.site-logo-image-link { display: block; }
.site-logo-img { display: block; max-height: 60px; width: auto; }
.site-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--logo-text-color, var(--indigo));
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.site-logo .logo-accent { color: var(--logo-accent-color, var(--gold)); }

/* ==========================================================================
   Primary Navigation — Desktop with Dropdown Support
   ========================================================================== */
.primary-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation ul li {
    position: relative;
}

/* Top-level link */
.primary-navigation ul li a {
    display: block;
    padding: 0.5rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--nav-link-color, var(--indigo));
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
}

/* Active underline */
.primary-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: left 0.3s, right 0.3s;
}
.primary-navigation ul li:hover > a::after,
.primary-navigation ul li.current-menu-item > a::after,
.primary-navigation ul li.current-menu-ancestor > a::after {
    left: 1rem; right: 1rem;
}
.primary-navigation ul li:hover > a,
.primary-navigation ul li.current-menu-item > a {
    color: var(--nav-link-hover, var(--gold));
}

/* Dropdown arrow indicator */
.primary-navigation ul li.menu-item-has-children > a::before {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s;
}
.primary-navigation ul li.menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
}

/* ---- DROPDOWN SUBMENU ---- */
.primary-navigation ul ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: var(--dropdown-bg, var(--indigo));
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.primary-navigation ul li:hover > ul,
.primary-navigation ul li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-navigation ul ul::before {
    content: '';
    position: absolute;
    top: -6px; left: 20px;
    width: 12px; height: 12px;
    background: var(--dropdown-bg, var(--indigo));
    transform: rotate(45deg);
    border-radius: 2px;
}

.primary-navigation ul ul li {
    display: block;
    position: relative;
}

.primary-navigation ul ul li a {
    display: block;
    padding: 0.7rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--dropdown-text, var(--cream)) !important;
    border-radius: 0;
    white-space: nowrap;
}
.primary-navigation ul ul li a::after { display: none; }
.primary-navigation ul ul li a:hover {
    background: var(--dropdown-hover-bg, var(--gold));
    color: var(--indigo) !important;
}

/* Third-level sub-sub-menu */
.primary-navigation ul ul ul {
    top: 0;
    left: 100%;
    margin-top: 0;
}

/* ==========================================================================
   Header Actions
   ========================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header-contact-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.header-contact-links a,
.header-email,
.header-phone {
    font-size: 0.8rem;
    color: var(--nav-link-color, var(--indigo));
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.85;
    transition: opacity 0.3s;
}
.header-contact-links a:hover { opacity: 1; color: var(--gold); }

/* Search button */
.header-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nav-link-color, var(--indigo));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    padding: 0;
}
.header-search-btn:hover { background: rgba(0,0,0,0.05); color: var(--gold); }

/* Cart */
.header-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--indigo);
    color: var(--cream);
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
}
.header-cart:hover { background: var(--gold); transform: scale(1.05); }
.cart-count {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--gold);
    color: var(--indigo);
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
    line-height: 1;
}
.cart-count--hidden { display: none; }

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
}
.menu-toggle:hover { background: rgba(0,0,0,0.05); }
.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nav-link-color, var(--indigo));
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.menu-toggle.is-active .hamburger-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.is-active .hamburger-bar:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.is-active .hamburger-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   Header Search Overlay
   ========================================================================== */
.header-search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 27, 75, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.header-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.header-search-inner {
    width: 90%;
    max-width: 640px;
    position: relative;
}
.header-search-inner .search-form {
    display: flex;
    align-items: center;
}
.header-search-inner .search-field {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-bottom: 2px solid var(--gold);
    background: transparent;
    color: white;
    outline: none;
    font-family: var(--font-body);
}
.header-search-inner .search-field::placeholder { color: rgba(255,255,255,0.5); }
.header-search-inner .search-submit {
    padding: 1rem 1.5rem;
    background: var(--gold);
    border: none;
    color: var(--indigo);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.search-close {
    position: absolute;
    top: -3rem; right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.search-close:hover { opacity: 1; }

/* ==========================================================================
   Scrolled Header State
   ========================================================================== */
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    background: var(--header-scrolled-bg, var(--cream)) !important;
}
.site-header.scrolled.shrunk {
    height: calc(var(--header-height, 80px) - 20px);
}

/* ==========================================================================
   Shop Page — WooCommerce Fixes
   ========================================================================== */
.shop-hero {
    position: relative;
    background: var(--indigo);
    padding: 7rem 2rem 3rem;
    text-align: center;
    overflow: hidden;
}
.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.shop-hero .page-hero-inner {
    position: relative;
    z-index: 1;
}
.shop-hero h1 {
    color: white;
    margin-bottom: 0.75rem;
}
.shop-hero .page-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.shop-hero .woo-breadcrumbs,
.shop-hero .woocommerce-breadcrumb {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
}
.shop-hero .woo-breadcrumbs a,
.shop-hero .woocommerce-breadcrumb a {
    color: var(--gold-light, #E8D48A);
    text-decoration: none;
}
.shop-hero .woo-breadcrumbs a:hover { text-decoration: underline; }

/* Shop layout */
.woo-outer-wrap { background: var(--cream); }
.woo-content-wrapper { display: block; }
.woo-main { width: 100%; }

/* WooCommerce product grid override */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(var(--shop-cols, 4), 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Product cards in WooCommerce loop */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    margin: 0;
    padding: 0;
    float: none !important;
    width: auto !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Product image */
.woocommerce ul.products li.product .product-image-wrap,
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    display: block;
    position: relative;
    overflow: hidden;
}
.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.woocommerce ul.products li.product:hover img { transform: scale(1.04); }

/* Product info */
.woocommerce ul.products li.product .product-info,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1.25rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--indigo);
    margin: 0;
}
.woocommerce ul.products li.product .product-info { padding: 0; }
.woocommerce ul.products li.product a.product-name,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title a,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    display: block;
    padding: 1rem 1.25rem 0.25rem;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--indigo);
    text-decoration: none;
    line-height: 1.3;
}
.woocommerce ul.products li.product .price {
    display: block;
    padding: 0 1.25rem 0.5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05rem;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
    display: block;
    margin: 0.5rem 1.25rem 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--indigo);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: var(--btn-radius, 0);
    width: calc(100% - 2.5rem);
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover {
    background: var(--gold);
    color: var(--indigo);
}

/* WooCommerce result count and ordering */
.woocommerce-result-count { color: var(--charcoal); opacity: 0.7; font-size: 0.9rem; }
.woocommerce-ordering select {
    padding: 0.6rem 1rem;
    border: 1px solid var(--cream-dark, #E8E0D0);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: white;
    color: var(--charcoal);
    cursor: pointer;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
}
.woocommerce-message { background: #f0fdf4; border-left: 4px solid #22c55e; color: #166534; }
.woocommerce-error   { background: #fef2f2; border-left: 4px solid #ef4444; color: #991b1b; }
.woocommerce-info    { background: #eff6ff; border-left: 4px solid #3b82f6; color: #1e40af; }

/* ==========================================================================
   Page Hero — General (shop / blog / archive pages)
   ========================================================================== */
.page-hero {
    background: var(--indigo);
    padding: calc(var(--header-height, 80px) + 3rem) 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
}
.page-hero .page-hero-inner,
.page-hero > h1,
.page-hero > p,
.page-hero > nav { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 0.5rem; font-size: 2.8rem; }
.page-hero .page-hero-subtitle { color: rgba(255,255,255,0.8); margin-top: 0.75rem; }

/* ==========================================================================
   Blog / Archive — Proper Grid Layout
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}
.blog-grid.layout-3col { grid-template-columns: repeat(3, 1fr); }
.blog-grid.layout-list  { grid-template-columns: 1fr; }

.entry-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s, box-shadow 0.35s;
    height: 100%;
}
.entry-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.entry-thumbnail {
    display: block;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}
.entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}
.entry-card:hover .entry-thumbnail img { transform: scale(1.04); }

.entry-content-wrap {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

.entry-meta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.entry-meta .meta-sep { opacity: 0.5; }

.entry-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0;
    flex-shrink: 0;
}
.entry-title a { color: var(--indigo); text-decoration: none; }
.entry-title a:hover { color: var(--gold); }

.entry-excerpt {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 0.92rem;
    line-height: 1.75;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.entry-card .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Pagination */
.ghfugu-pagination,
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0 1rem;
    flex-wrap: wrap;
}
.ghfugu-pagination .page-numbers,
.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    background: white;
    color: var(--indigo);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--cream-dark, #E8E0D0);
    transition: all 0.2s;
}
.ghfugu-pagination .page-numbers.current,
.ghfugu-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers:hover {
    background: var(--indigo);
    color: white;
    border-color: var(--indigo);
}

/* ==========================================================================
   Social Links
   ========================================================================== */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--cream);
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--indigo); transform: translateY(-2px); }

/* ==========================================================================
   Mobile Navigation (Fullscreen / Sidebar)
   ========================================================================== */
@media (max-width: 992px) {

    .menu-toggle { display: flex; }
    .header-contact-links { display: none; }
    .header-search-btn { display: flex; }

    .header-inner { padding: 0 1.5rem; gap: 1rem; }

    /* Fullscreen overlay */
    .primary-navigation {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(245,240,230,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1500;
        overflow-y: auto;
    }

    .primary-navigation.is-open { display: flex; }

    .primary-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .primary-navigation ul li { width: 100%; text-align: center; }

    .primary-navigation ul li a {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        font-family: var(--font-heading);
        color: var(--indigo);
        display: block;
        letter-spacing: 0.01em;
        text-transform: none;
    }
    .primary-navigation ul li a::after { display: none; }
    .primary-navigation ul li a:hover,
    .primary-navigation ul li.current-menu-item > a { color: var(--gold); }

    /* Mobile dropdown */
    .primary-navigation ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(26,27,75,0.06);
        border-radius: 8px;
        margin: 0.5rem 2rem;
        display: none;
        padding: 0.5rem 0;
    }
    .primary-navigation ul li.is-open > ul { display: flex; }
    .primary-navigation ul ul::before { display: none; }
    .primary-navigation ul ul li a {
        font-size: 1rem !important;
        padding: 0.65rem 1.5rem !important;
        color: var(--indigo) !important;
        font-family: var(--font-body) !important;
        text-transform: none;
    }
    .primary-navigation ul ul li a:hover {
        background: var(--gold) !important;
        color: var(--indigo) !important;
    }

    .primary-navigation ul li.menu-item-has-children > a::before {
        float: right;
        margin-top: 8px;
    }

    /* WooCommerce shop on mobile */
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}

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

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    .site-logo { font-size: 1.5rem; }
    .header-inner { padding: 0 1rem; }
}
