﻿/*
Theme Name: UltraLuxury
Theme URI: http://ultrahomedecor.com.au
Author: Ultra Home Decor
Description: A luxury WordPress theme matching LuxPanels design.
Version: 7.0.0
*/

:root {
  /* LuxPanels Color Palette - BLACK & GOLD GLOBAL */
  --color-bg-white: #000000;
  --color-bg-light: #121212;
  --color-text-main: #E0E0E0;
  --color-text-header: #FFFFFF;
  --color-text-muted: #A0A0A0;
  --color-accent-gold: #C5A572;
  --color-accent-gold-dark: #A08355;
  --color-accent-red: #E53935;
  --color-border: #333333;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --spacing-container: 1400px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --radius-card: 12px;
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: #000000 !important;
  color: var(--color-text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-accent-gold) !important;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Header & Nav */
.site-header {
  background-color: #000000 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 90px;
}

.site-branding,
.header-actions {
  display: flex;
  align-items: center;
}

.site-title {
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 1px;
}

.site-title a {
  color: #fff;
}

/* Navigation - HOVER ENABLED */
.main-navigation {
  height: 100%;
}

/* GLOBAL MENU TOGGLE STYLING */
/* Hidden on Desktop by default */
.menu-toggle {
  display: none;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #C5A572;
  /* Gold */
  border-radius: 2px;
}

.menu-toggle span {
  text-indent: 0;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  height: 100%;
}

.main-navigation>ul>li {
  height: 100%;
  display: flex;
  align-items: center;
  position: static !important;
}

.main-navigation a {
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 25px;
  position: relative;
  z-index: 10001;
  cursor: pointer;
}

.main-navigation a:hover {
  color: var(--color-accent-gold);
}

/* Down Arrow */
.main-navigation .menu-item-has-children>a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-accent-gold);
  border-bottom: 2px solid var(--color-accent-gold);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children:hover>a::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* Mega Menu Dropdown - HOVER & OPAQUE BACKGROUND */
.visual-mega-dropdown {
  display: flex !important;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100% !important;

  /* CRITICAL: SOLID GOLD BACKGROUND */
  background-color: #C5A572 !important;
  background: #C5A572 !important;

  border-top: 2px solid #fff;
  /* White accent on top */
  border-bottom: 2px solid #222;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 1);
  padding: 40px 0;
  z-index: 999999;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

/* Ensure Text on Gold is Dark */
.visual-menu-text {
  color: #000 !important;
  /* Black text */
  font-weight: 700 !important;
}

.visual-menu-link:hover .visual-menu-text {
  color: #fff !important;
  /* White on hover */
}

/* OPEN STATE: HOVER + Click */
.main-navigation ul li:hover .visual-mega-dropdown,
.main-navigation ul li.toggled-on .visual-mega-dropdown {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity 0.2s ease, visibility 0s linear;
}

/* Visual Menu Items */
.visual-menu-item {
  width: 180px;
  margin: 15px;
  text-align: center;
}

.visual-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  padding: 0;
}

.visual-menu-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #333;
  background: #111;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.8;
}

.visual-menu-link:hover .visual-menu-img img {
  transform: scale(1.1);
  opacity: 1;
}

.visual-menu-text {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.visual-menu-link:hover .visual-menu-text {
  color: var(--color-accent-gold);
}

/* Category Page Styles */
.category-page-header {
  text-align: center;
  padding: 60px 0 40px;
  background: #000;
}

.category-title {
  font-size: 2.5rem;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sub-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.sub-cat-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none !important;
  border: 1px solid #222;
}

.sub-cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent-gold);
}

.sub-cat-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}

.sub-cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.9;
}

.sub-cat-card:hover .sub-cat-image img {
  transform: scale(1.08);
  opacity: 1;
}

.sub-cat-content {
  padding: 24px 20px;
  text-align: center;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-cat-content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff !important;
  text-transform: uppercase;
}

.sub-cat-card:hover .sub-cat-content h3 {
  color: var(--color-accent-gold) !important;
}

/* Sidebar & Footer */
.filter-sidebar h3 {
  font-size: 1rem;
  color: var(--color-accent-gold);
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.site-footer {
  background-color: #050505;
  color: #888;
  padding: 60px 0 20px;
  border-top: 1px solid #222;
}

/* =========================================
   FLOATING GOLD PHONE BUTTONS
   ========================================= */
.floating-contact-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.floating-phone-btn {
  display: flex;
  /* Changed from fixed */
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  /* Slightly smaller padding for stacked look */
  border-radius: 50px;
  text-decoration: none !important;

  /* SHINY GOLD METALLIC GRADIENT */
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  background-size: 200% auto;

  /* 3D Look */
  box-shadow:
    0 8px 15px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  border: 2px solid #AA771C;

  /* Animation */
  animation: gold-shine 3s linear infinite, bounce-gentle 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* Stagger animation for second button */
.floating-contact-wrapper .floating-phone-btn:nth-child(2) {
  animation-delay: 1s, 0.5s;
  /* Offset shine and bounce */
}

.floating-phone-btn:hover {
  transform: scale(1.05) translateX(-5px);
  /* Move left slightly on hover */
  box-shadow: 0 15px 30px rgba(197, 165, 114, 0.6);
}

/* TEXT STYLES */
.floating-phone-btn .phone-text {
  color: #3e2704 !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.floating-phone-btn .phone-icon {
  font-size: 1.3rem;
  color: #3e2704 !important;
}

/* ANIMATIONS */
@keyframes gold-shine {
  to {
    background-position: 200% center;
  }
}

@keyframes bounce-gentle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
    /* Reduced bounce height for stacked */
  }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .floating-contact-wrapper {
    bottom: 20px;
    right: 15px;
    gap: 10px;
  }

  .floating-phone-btn {
    padding: 10px 18px;
  }

  .floating-phone-btn .phone-text {
    font-size: 0.95rem;
  }

  .floating-phone-btn .phone-icon {
    font-size: 1.1rem;
  }
}

/* =========================================
v8 CUSTOM GOLD DESIGN
========================================= */

/* Cinematic Hero */
.hero-cinematic {
  position: relative;
  height: 55vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  overflow: hidden;
}

.hero-cinematic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 80%, #000 100%);
  z-index: 1;
}

.hero-content-v8 {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: 100px;
  /* Push down to show chandelier */
}

/* Collection Section */
.collection-section {
  padding: 80px 0 120px;
  background: #000;
  text-align: center;
}

.collection-title {
  font-family: 'Playfair Display', serif;
  /* Elegant Serif */
  font-size: 2.5rem;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

/* Gold Cards Grid */
.gold-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.gold-card {
  display: block;
  text-decoration: none;
  width: 250px;
  background: #000;
  border: 1px solid #C5A572;
  /* GOLD BORDER */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(197, 165, 114, 0.2);
  /* GOLD GLOW */
  transition: all 0.4s ease;
  position: relative;
  padding: 10px;
  /* Inner frame padding */
}

.gold-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(197, 165, 114, 0.6);
  /* STRONGER GLOW */
  border-color: #fff;
}

.gc-image-frame {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #333;
}

.gc-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gold-card:hover .gc-image-frame img {
  transform: scale(1.1);
}

.gc-label {
  display: block;
  text-align: center;
  padding: 20px 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Coming Soon Specifics */
.coming-soon-card .gc-image-frame {
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.5rem;
}

/* v9 GOLD TYPOGRAPHY */
.luxury-cursive-title {
  font-family: 'Great Vibes', cursive;
  font-size: 5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: none !important;

  /* Shiny Gold Gradient Text */
  background: linear-gradient(to bottom, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #C5A572;

  /* Engraved/Drop Shadow effect */
  filter: drop-shadow(0px 2px 0px rgba(0, 0, 0, 0.5));
  padding-bottom: 10px;

  /* ANIMATION: FADE IN + GOLD SHIMMER */
  opacity: 0;
  animation: hero-title-enter 1.5s ease-out forwards, gold-shimmer 3s infinite linear 2s;
  background-size: 200% auto;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #FFE5B4;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);

  /* ANIMATION: SLIDE UP FADE */
  opacity: 0;
  transform: translateY(20px);
  animation: hero-subtitle-enter 1s ease-out 0.8s forwards;
}

/* Intro Animations */
@keyframes hero-title-enter {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    /* Re-apply shadow in final state if filter overriden */
    filter: drop-shadow(0px 2px 0px rgba(0, 0, 0, 0.5));
  }
}

@keyframes hero-subtitle-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gold-shimmer {
  to {
    background-position: 200% center;
  }
}

/* Hide default site title on homepage if requested (Cleaning up header) */
.home .site-branding {
  opacity: 0;
  /* Hide but keep layout */
  pointer-events: none;
}

/* v10 REFINEMENTS */

/* Transform Header */
.section-title-gold {
  color: #C5A572 !important;
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-subtitle-gold {
  color: #a08355;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 50px;
}

/* Quality Features with Circles */
.quality-section {
  padding: 100px 0;
  background: #080808;
  text-align: center;
}

.quality-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.quality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.feature-circle {
  width: 100px;
  height: 100px;
  border: 2px solid #C5A572;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-circle:hover {
  background: rgba(197, 165, 114, 0.1);
  box-shadow: 0 0 20px rgba(197, 165, 114, 0.3);
  transform: scale(1.05);
}

.feature-icon-gold {
  font-size: 2.5rem;
  /* Emoji or Icon font size */
  color: #C5A572;
}

.quality-title {
  color: #C5A572;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.quality-desc {
  color: #777;
  font-size: 0.85rem;
  font-family: 'Playfair Display', serif;
}

/* Footer v10 */
.site-footer {
  padding: 0 !important;
  /* Reset padding */
  border-top: 1px solid #222;
}

.footer-bottom-bar {
  background: #000;
  padding: 25px 0;
  border-top: 1px solid #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: #C5A572;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-menu a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copyright {
  color: #666;
  font-size: 0.8rem;
}

/* v15 GLOW ANIMATION */
.luxury-cursive-title {
  animation: gold-pulse 3s infinite ease-in-out;
  background-clip: text;
  /* Fix lint */
}

@keyframes gold-pulse {

  0%,
  100% {
    filter: drop-shadow(0px 0px 5px rgba(197, 165, 114, 0.8));
    opacity: 1;
  }

  50% {
    filter: drop-shadow(0px 0px 0px rgba(197, 165, 114, 0));
    opacity: 0.7;
    /* Dim */
  }
}


/* v20 FIXES */

/* Move Back Button Down to Avoid Header/Logo */
.global-back-btn {
  top: 110px !important;
  /* Below the 90px header */
  left: 20px !important;
}

/* AGGRESSIVE SINGLE PRODUCT IMAGE FIX */
.woocommerce-product-gallery,
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__wrapper {
  max-width: 600px !important;
  /* limit container width */
  margin: 0 auto !important;
}

.woocommerce-product-gallery__image img,
.single-product .images img,
.wp-post-image {
  max-height: 500px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  box-shadow: none !important;
  /* Cleanup */
}

/* Ensure description doesn't get pushed too far */
.summary.entry-summary {
  padding-top: 20px !important;
}

/* v21 MENU & BUTTON FIXES */
.visual-mega-dropdown {
  background-color: #000000 !important;
  background: #000000 !important;
  opacity: 1 !important;
  z-index: 9999999 !important;
  /* Force on top */
  border: 1px solid #333;
  /* Definition */
}

/* v25 GLOBAL GOLD BACK BUTTON */
.global-back-btn {
  position: fixed;
  /* Fix to screen so it's always visible */
  top: 130px;
  left: 20px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.8);
  /* Dark background for contrast */
  border: 2px solid #C5A572;
  /* GOLD BORDER */
  border-radius: 50%;
  /* Circle */
  color: #C5A572 !important;
  /* GOLD ARROW */
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.global-back-btn:hover {
  background-color: #C5A572;
  color: #000 !important;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(197, 165, 114, 0.6);
}

@media screen and (max-width: 768px) {
  .global-back-btn {
    top: 110px;
    /* Slightly higher on mobile */
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* v22 PRODUCT GRID FIXES - SMALLER SQUARES */
.pro-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.pro-card:hover {
  border-color: #C5A572;
  transform: translateY(-5px);
}

.pro-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.pro-card h3 {
  font-size: 0.9rem;
  margin: 8px 0;
  line-height: 1.3;
}

.pro-card span,
.pro-card .price {
  display: block;
  color: #C5A572;
  font-size: 0.9rem;
  font-weight: 700;
}

/* v23 MOBILE RESPONSIVE FIXES */
@media screen and (max-width: 768px) {

  /* 1. Ensure 2 Columns for Products */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  /* 2. Hero Adjustments */
  .hero-cinematic {
    height: 50vh !important;
    min-height: 300px;
  }

  .luxury-cursive-title {
    font-size: 3rem !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
  }

  /* 3. Category Cards (Indoor/Outdoor) */
  .gold-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px !important;
  }

  .gold-card {
    width: 100% !important;
    max-width: 320px !important;
    /* Good size for mobile */
  }

  .gc-image-frame {
    height: 220px !important;
  }

  /* 4. Product Card Tweak for Small Screens */
  .pro-card {
    padding: 8px;
    /* Reduce padding to save space */
  }

  .pro-card h3 {
    font-size: 0.8rem;
    /* Smaller text */
  }

  .pro-card span,
  .pro-card .price {
    font-size: 0.85rem;
  }

  /* v24 MOBILE MENU ALIGNMENT */
  .site-header .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* 1. Mobile Menu Toggle (LEFT) */
  .main-navigation {
    order: -1;
    /* Move to start */
    flex: 0 0 auto;
    width: auto !important;
  }

  /* RE-ENABLE HAMBURGER ON MOBILE */
  .menu-toggle {
    display: flex;
    /* Show only on Mobile */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent !important;
    border: none !important;
    padding: 0;

    /* STRICTLY HIDE TEXT */
    font-size: 0 !important;
    color: transparent !important;
    text-indent: -9999px;
    overflow: visible;

    cursor: pointer;
  }

  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #C5A572;
    /* Gold */
    border-radius: 2px;
  }

  .menu-toggle span {
    text-indent: 0;
  }

  /* GOLD BACKGROUND -> BLACK TEXT FOR EXPANDED MENU */
  .main-navigation.toggled ul li a {
    color: #000 !important;
    /* Black Text for contrast */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    /* Subtle divider */
  }

  /* 2. Logo (CENTER) */
  .site-branding {
    flex-grow: 1;
    justify-content: center;
    margin-left: -24px;
    /* Counter-balance the menu icon width to truly center */
  }

  /* Hide Title Text on Mobile */
  .site-branding .site-title {
    display: none !important;
  }

  /* 3. Actions (RIGHT) */
  .header-actions {
    order: 2;
    /* Move to end */
    flex: 0 0 auto;
  }

  /* Hide the desktop menu list on mobile initially */
  .main-navigation ul {
    display: none;
    /* JS usually toggles this */
    position: absolute;
    top: 90px;
    /* Below header */
    left: 0;
    width: 100%;
    height: 100vh;
    /* Full screen height to cover everything */
    background: #C5A572 !important;
    /* SOLID GOLD BACKGROUND */
    /* SOLID BLACK FORCE */
    flex-direction: column;
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    /* ENABLE SCROLLING */
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
  }

  .main-navigation.toggled ul {
    display: flex;
    /* Show when toggled */
  }

  /* Fix for Mobile Menu Items taking full height */
  .main-navigation ul li {
    height: auto !important;
    /* Don't inherit 100% from desktop */
    width: 100%;
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
  }

  .main-navigation a {
    font-size: 1.2rem;
    justify-content: flex-start;
    /* Align text left */
  }

  /* Fix mega dropdown on mobile - SOLID GOLD */
  .visual-mega-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    /* JS toggles this to flex */
    border: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    /* CRITICAL: GOLD BACKGROUND on Mobile Too */
    background-color: #C5A572 !important;
    background: #C5A572 !important;
  }

  /* Show sub-menus strictly */
  .main-navigation .menu-item-has-children:hover .visual-mega-dropdown,
  .main-navigation .menu-item-has-children.active .visual-mega-dropdown {
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    position: static !important;
    padding-top: 10px;
    padding-bottom: 20px;
    gap: 10px;
    /* Small gap between items */
  }

  /* COMPACT MOBILE MENU ITEMS (User Request: Smaller Photos) */
  .visual-menu-item {
    width: 100% !important;
    margin: 5px 0 !important;
    display: flex;
    /* Horizontal Layout */
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
  }

  .visual-menu-link {
    display: flex;
    flex-direction: row;
    /* Image Left, Text Right */
    align-items: center;
    width: 100%;
    gap: 15px;
  }

  .visual-menu-img {
    display: none !important;
  }

  .visual-menu-text {
    font-size: 0.9rem !important;
    text-align: left;
    color: #000 !important;
  }

  .pro-card span,
  .pro-card .price {
    font-size: 0.85rem;
  }
}

/* FINAL DESKTOP OVERRIDE FOR MENU BACKGROUND */
@media screen and (min-width: 769px) {
  .visual-mega-dropdown {
    background-color: #000000 !important;
    background: #000000 !important;
  }

  .visual-menu-text {
    color: #C5A572 !important;
  }

  .visual-menu-link:hover .visual-menu-text {
    color: #fff !important;
  }
}

/* =========================================
   SEARCH BAR & SHINY GOLD BUTTON (v26)
   ========================================= */

.header-search-form {
  display: flex;
  align-items: center;
  margin-left: 20px;
  position: relative;
  z-index: 2000;
}

/* Input Field */
.header-search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #333;
  border-right: none;
  color: #fff;
  padding: 0 15px;
  border-radius: 50px 0 0 50px;
  /* Pill shape left */
  height: 40px;
  width: 200px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.header-search-input:focus {
  background: #000;
  border-color: #C5A572;
  width: 250px;
  box-shadow: 0 0 15px rgba(197, 165, 114, 0.2);
}

.header-search-input::placeholder {
  color: #aaa;
}

/* SHINY GOLD BUTTON WITH EXTREME LUMINESCENCE */
.header-search-button {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 51%, #FBF5B7 100%);
  background-size: 200% 200%;
  border: 1px solid #FBF5B7;
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 25px;
  height: 40px;
  border-radius: 0 50px 50px 0;
  /* Pill shape right */
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;

  /* THE LUMINATE EFFECT */
  box-shadow:
    0 0 10px #C5A572,
    0 0 20px #C5A572,
    0 0 40px rgba(197, 165, 114, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.8);

  animation: gold-luminate-extreme 1.5s infinite alternate, shiny-gradient 3s infinite linear;
  position: relative;
  overflow: hidden;
}

/* Shine overlay */
.header-search-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: button-sheen 3s infinite;
}

.header-search-button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@keyframes gold-luminate-extreme {
  0% {
    box-shadow:
      0 0 5px #C5A572,
      0 0 10px #C5A572,
      0 0 20px rgba(197, 165, 114, 0.4);
  }

  100% {
    box-shadow:
      0 0 20px #FCF6BA,
      0 0 40px #C5A572,
      0 0 60px #BF953F,
      0 0 80px rgba(197, 165, 114, 0.8);
    /* Maximum Glow */
  }
}

@keyframes shiny-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes button-sheen {

  0%,
  80% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* PHONE VIEW ADJUSTMENTS */
@media screen and (max-width: 768px) {
  .header-search-form {
    margin-left: 5px;
    margin-right: 0;
  }

  .header-search-input {
    width: 110px;
    /* Compact */
    padding: 0 10px;
    font-size: 16px;
    /* Prevent zoom */
    margin: 0;
    /* Reset */
  }

  .header-search-input:focus {
    width: 140px;
    background: #000;
  }

  .header-search-button {
    padding: 0 10px;
    font-size: 0.7rem;
  }
}

/* =========================================
   LIGHTING LUMINATE EFFECTS (v26)
   User Request: "Luminate as much as you can"
   ========================================= */

/* 1. MENU ITEMS GLOW */
.lighting-glow-item .visual-menu-img {
  border: 2px solid #fff;
  /* Start white hot */
  box-shadow:
    0 0 10px #C5A572,
    0 0 30px #C5A572,
    0 0 50px rgba(197, 165, 114, 0.8),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  animation: lighting-luminate 1.5s infinite alternate;
}

.lighting-glow-item .visual-menu-text {
  color: #fff !important;
  text-shadow: 0 0 10px #C5A572, 0 0 20px #C5A572;
  animation: text-luminate 1.5s infinite alternate;
}

/* 2. CATEGORY & PRODUCT CARDS GLOW */
.lighting-glow-card {
  border: 2px solid #C5A572 !important;
  box-shadow:
    0 0 15px #C5A572,
    0 0 30px rgba(197, 165, 114, 0.6) !important;
  animation: card-luminate-pulse 2s infinite ease-in-out;
  position: relative;
  z-index: 10;
  /* Pop out */
}

/* Make image glow too */
.lighting-glow-card img {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.lighting-glow-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 20px #C5A572,
    0 0 50px #C5A572,
    0 0 80px rgba(197, 165, 114, 0.9) !important;
  z-index: 20;
}

.lighting-glow-card h3 a,
.lighting-glow-card h3 {
  color: #C5A572 !important;
  text-shadow: 0 0 5px #C5A572;
}

/* ANIMATIONS */
@keyframes lighting-luminate {
  0% {
    box-shadow:
      0 0 10px #C5A572,
      0 0 20px rgba(197, 165, 114, 0.5);
    border-color: #C5A572;
  }

  100% {
    box-shadow:
      0 0 20px #fff,
      0 0 40px #C5A572,
      0 0 60px #C5A572,
      0 0 80px #C5A572;
    border-color: #fff;
  }
}

@keyframes text-luminate {
  0% {
    text-shadow: 0 0 5px #C5A572;
  }

  100% {
    text-shadow: 0 0 15px #C5A572, 0 0 25px rgba(255, 255, 255, 0.8);
  }
}

@keyframes card-luminate-pulse {
  0% {
    box-shadow: 0 0 10px rgba(197, 165, 114, 0.3);
    border-color: #C5A572;
  }

  50% {
    box-shadow:
      0 0 20px #C5A572,
      0 0 40px rgba(197, 165, 114, 0.6);
    border-color: #FCF6BA;
    /* Pale gold */
  }

  100% {
    box-shadow: 0 0 10px rgba(197, 165, 114, 0.3);
    border-color: #C5A572;
  }
}

/* =========================================
   INSPIRATION PAGE STYLES
   ========================================= */

.inspire-hero {
  height: 60vh;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.inspire-hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.15) 0%, transparent 60%);
  animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.inspire-title {
  font-family: 'Great Vibes', cursive;
  /* Or theme heading font */
  font-size: 4rem;
  background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.inspire-quote {
  color: #ddd;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.inspire-divider {
  width: 100px;
  height: 2px;
  background: #C5A572;
  margin: 30px auto 0;
  box-shadow: 0 0 10px #C5A572;
}

.inspire-intro {
  text-align: center;
  padding: 80px 0 50px;
}

.inspire-intro h2 {
  color: #C5A572 !important;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.inspire-intro p {
  color: #999;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.inspire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding-bottom: 100px;
}

/* Masonry-like spans */
.inspire-card.wide {
  grid-column: span 2;
}

@media(max-width:768px) {
  .inspire-card.wide {
    grid-column: span 1;
  }
}

.inspire-card.tall {
  grid-row: span 2;
}

.inspire-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  transition: all 0.4s ease;
}

.inspire-card:hover {
  transform: translateY(-10px);
  border-color: #C5A572;
  box-shadow: 0 10px 30px rgba(197, 165, 114, 0.2);
}

.inspire-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.inspire-card:hover img {
  transform: scale(1.1);
}

.inspire-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.inspire-card:hover .inspire-card-text {
  transform: translateY(0);
}

.inspire-card-text h3 {
  color: #C5A572 !important;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.inspire-card-text p {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
}

.inspire-footer-quote {
  padding: 80px 0;
  background: #050505;
  text-align: center;
  border-top: 1px solid #222;
}

.inspire-footer-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #888;
  font-style: italic;
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

.about-hero {
  height: 55vh;
  background: #080808;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Subtle Particles or Gradient for About Hero */
.about-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(1px 1px at 20% 30%, #C5A572 1px, transparent 0),
    radial-gradient(1px 1px at 40% 70%, #fff 1px, transparent 0),
    radial-gradient(1px 1px at 60% 40%, #C5A572 1px, transparent 0),
    radial-gradient(1px 1px at 80% 80%, #fff 1px, transparent 0);
  background-size: 200px 200px;
  opacity: 0.3;
  animation: stars-move 60s linear infinite;
}

@keyframes stars-move {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 1000px 1000px;
  }
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.about-subtitle {
  color: #C5A572;
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-divider {
  width: 60px;
  height: 3px;
  background: #C5A572;
  margin: 0 auto;
}

/* MAIN STORY SECTION */
.about-story-section {
  padding: 100px 0;
  background: #000;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.about-text-col h2 {
  color: #C5A572 !important;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.highlight-text {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
  border-left: 3px solid #C5A572;
  padding-left: 20px;
}

.about-text-col p {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* IMAGE STACK */
.about-image-stack {
  position: relative;
  height: 500px;
  width: 100%;
}

.about-image-stack img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid #222;
  object-fit: cover;
  transition: all 0.5s ease;
}

.img-back {
  width: 80%;
  height: 80%;
  top: 0;
  right: 0;
  z-index: 1;
  filter: brightness(0.6);
}

.img-front {
  width: 70%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 2px solid #C5A572 !important;
}

.about-image-stack:hover .img-back {
  transform: translate(20px, -20px);
  filter: brightness(0.8);
}

.about-image-stack:hover .img-front {
  transform: translate(-20px, 20px) scale(1.05);
}

/* VALUES */
.about-values {
  background: #0a0a0a;
  padding: 80px 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.values-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.value-item {
  text-align: center;
  max-width: 300px;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(197, 165, 114, 0.4);
}

.value-item h3 {
  color: #fff !important;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-item p {
  color: #777;
  font-size: 0.9rem;
}

.about-footer-quote {
  padding: 80px 0;
  text-align: center;
}

.about-footer-quote blockquote {
  color: #C5A572;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================================
   LIVE SEARCH DROPDOWN (v28)
   ========================================= */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background: #000;
  border: 1px solid #C5A572;
  border-top: none;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: none;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
}

.search-results-dropdown.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.search-results-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results-dropdown li {
  border-bottom: 1px solid #222;
}

.search-results-dropdown li:last-child {
  border-bottom: none;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  gap: 15px;
}

.search-result-item:hover {
  background: #111;
}

.s-thumb {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid #333;
  overflow: hidden;
  border-radius: 4px;
}

.s-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-info {
  display: flex;
  flex-direction: column;
}

.s-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C5A572;
  margin-bottom: 2px;
}

.s-title:hover {
  text-decoration: underline;
}

.s-price {
  font-size: 0.8rem;
  color: #888;
}

.search-loading,
.search-no-results,
.search-error {
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .search-results-dropdown {
    width: 100%;
    left: 0;
    right: auto;
  }
}


/* =========================================
   FLOATING GOLD PHONE BUTTONS
   ========================================= */
.floating-contact-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.floating-phone-btn {
  display: flex;
  /* Changed from fixed */
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  /* Slightly smaller padding for stacked look */
  border-radius: 50px;
  text-decoration: none !important;

  /* SHINY GOLD METALLIC GRADIENT */
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  background-size: 200% auto;

  /* 3D Look */
  box-shadow:
    0 8px 15px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  border: 2px solid #AA771C;

  /* Animation */
  animation: gold-shine 3s linear infinite, bounce-gentle 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* Stagger animation for second button */
.floating-contact-wrapper .floating-phone-btn:nth-child(2) {
  animation-delay: 1s, 0.5s;
  /* Offset shine and bounce */
}

.floating-phone-btn:hover {
  transform: scale(1.05) translateX(-5px);
  /* Move left slightly on hover */
  box-shadow: 0 15px 30px rgba(197, 165, 114, 0.6);
}

/* TEXT STYLES */
.floating-phone-btn .phone-text {
  color: #3e2704 !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.floating-phone-btn .phone-icon {
  font-size: 1.3rem;
  color: #3e2704 !important;
}

/* ANIMATIONS */
@keyframes gold-shine {
  to {
    background-position: 200% center;
  }
}

@keyframes bounce-gentle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
    /* Reduced bounce height for stacked */
  }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .floating-contact-wrapper {
    bottom: 15px;
    right: 10px;
    gap: 8px;
  }

  .floating-phone-btn {
    padding: 8px 14px;
  }

  .floating-phone-btn .phone-text {
    font-size: 0.8rem;
  }

  .floating-phone-btn .phone-icon {
    font-size: 1rem;
  }
}