/*
Theme Name: Storefront Child
Template: storefront
Version: 1.0.0
*/

/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f6fcfc; /* subtle turquoise atmosphere */
}

/* =========================
   HEADER (DARKER TURQUOISE)
========================= */
.site-header {
  position: relative;
  z-index: 1000;
  background: #0a5f66; /* darker turquoise */
  padding: 18px 0;
}

.site-header a,
.main-navigation ul li a {
  color: #ffffff !important;
  font-weight: 500;
}

.main-navigation ul li a:hover {
  color: #e6c77b !important; /* gold hover */
}

/* Logo */
.site-branding .site-title a {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.site-branding .site-description {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e6c77b;
  margin-top: -4px;
}

/* =========================
   DROPDOWN MENUS
========================= */
.main-navigation ul ul {
  background: #bfeff1; /* light turquoise */
}

.main-navigation ul ul li a {
  color: #0b2f33 !important;
}

.main-navigation ul ul li a:hover {
  background: #9fe6e8;
}

/* =========================
   REMOVE STORE FRONT GAPS
========================= */
.home .storefront-breadcrumb,
.home .site-main > header {
  display: none !important;
}

.home .site-content,
.home #content,
.home #primary,
.home .content-area,
.home .site-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   HERO SLIDER (THE ONLY ONE)
========================= */
.hero-slider {
  position: relative;
  max-width: 980px;      /* 👈 makes it NOT site-wide */
  height: 460px;         /* premium banner height */
  margin: 80px auto 0;   /* center it + spacing from header */
  border-radius: 28px;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 18s infinite;
}

/* Replace image paths if needed */
.slide-1 {
  background-image: url("/wp-content/uploads/Pen-Banner.jpg");
  animation-delay: 0s;
}

.slide-2 {
  background-image: url("/wp-content/uploads/Parker-Banner2.jpg");
  animation-delay: 6s;
}

.slide-3 {
  background-image: url("/wp-content/uploads/Waterman-Banner.jpg");
  animation-delay: 12s;
}

.slide-4 {
  background-image: url("/wp-content/uploads/Cross-Banner.jpg");
  animation-delay: 12s;
}

.slide-5 {
  background-image: url("/wp-content/uploads/Parker-Banner1.2.jpg");
  animation-delay: 12s;
}

.slide-6 {
  background-image: url("/wp-content/uploads/Wallet-Banner1.jpg");
  animation-delay: 12s;
}

.slide-7 {
  background-image: url("/wp-content/uploads/Wallet-Banner2.jpg");
  animation-delay: 12s;
}

.slide-8 {
  background-image: url("/wp-content/uploads/Wallet-Banner3.jpg");
  animation-delay: 12s;
}

/* Make slide 1 and 6 show full image (no cropping) */
.slide-5,
.slide-6 {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #ffffff; /* fills empty space */
}

@keyframes slideShow {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* =========================
   HERO TINT (LIGHT SHADE, NO OPACITY TRICKS)
========================= */
.hero-slider {
  background-color: #bfeff1; /* lighter turquoise shade */
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
  top: 50%;
  transform: translateY(-50%);
}

.hero-eyebrow {
  color: #d8b86a; /* elegant gold */
  letter-spacing: 0.35em;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600;
  color: #0b2f3a; /* deep blue */
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(15, 45, 55, 0.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
  display: flex;
  gap: 14px;
}

.btn-primary {
  background: #e6c77b;
  color: #0b2f3a;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #0b2f3a;
  color: #0b2f3a;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
}

/* FIX GAP BETWEEN HEADER AND HERO (Storefront) */
.home .site-header {
  margin-bottom: 0 !important;
}

.home .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* LIGHT TURQUOISE HAZE OVER BANNER (60% opacity) */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 215, 220, 0.6); /* light turquoise @ 60% */
  z-index: 2;
}

/* Ensure slides stay visible */
.slide {
  z-index: 1;
}

/* Ensure text stays above haze */
.hero-content {
  position: relative;
  z-index: 3;
}
/*start of new hero*/
/* === HERO WRAPPER === */
.hero-wrapper {
  padding: 80px 0 100px;
  position: relative;
}

/* Centered container */
.hero-container {
  max-width: 2080px;   /* 👈 this is the key */
  margin: 0 auto;
  padding: 0 24px;
}

/* Rounded hero card */
.hero-slider {
  position: relative;
  height: 550px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  margin-top: -20px; 
  margin-bottom: -20;
}

/* Slides fill the card */
.hero-slider .slide {
  border-radius: 28px;
}

/* Overlay stays inside card */
.hero-overlay {
  border-radius: 28px;
}

/* Pagination dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.hero-dots .dot.active {
  background: #e6c77b; /* elegant gold */
  width: 22px;
  border-radius: 20px;
}
/*end of new hero*/

/* ===============================
   WORKING MEGA MENU – BLUE VERSION
================================ */

/* Base dropdown bubble */
@media (min-width: 769px) {

  .storefront-primary-navigation .main-navigation ul ul {
    background: rgba(90,185,190,0.96); /* BLUE IS BACK */
    border-radius: 18px;
    padding: 14px 0;
    min-width: 240px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    display: none;
  }

  /* Show first dropdown on hover */
  .storefront-primary-navigation
  .main-navigation ul li:hover > ul {
    display: block;
  }

  /* Dropdown links */
  .storefront-primary-navigation .main-navigation ul ul li a {
    padding: 10px 22px;
    color: #083c40 !important;
    font-weight: 500;
    white-space: nowrap;
  }

  .storefront-primary-navigation .main-navigation ul ul li a:hover {
    background: rgba(70,165,170,0.35);
  }

  /* Sub-submenu (opens to the right) */
  .storefront-primary-navigation .main-navigation ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 6px;
    background: rgba(90,185,190,0.96);
    border-radius: 16px;
    min-width: 220px;
    display: none;
  }

  /* Show sub-submenu only on hover */
  .storefront-primary-navigation
  .main-navigation ul ul li:hover > ul {
    display: block;
  }

}

/* ===============================
   TRUST STRIP (BELOW HERO)
================================ */

.trust-strip {
  background: rgba(90, 185, 190, 0.12); /* very light turquoise */
  padding: 60px 0;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin: 12px 0 6px;
  color: #0b2f3a;
}

.trust-item p {
  font-size: 14px;
  color: rgba(11, 47, 58, 0.75);
  margin: 0;
}

.trust-icon {
  display: inline-block;
  font-size: 22px;
  color: #d6b56c; /* elegant gold */
}

/* Mobile */
@media (max-width: 768px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ===============================
   TRUST REEL – ELEGANT PAN
================================ */

.trust-reel {
  width: 100%;
  overflow: hidden;
  background: rgba(120, 215, 220, 0.18);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(120,255,240,0.2);
}

.trust-reel-track {
  display: flex;
  width: max-content;
  animation: trustPan 40s linear infinite;
}

.trust-reel-item {
  position: relative;
  min-width: 260px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-size: cover;
  background-position: center;
  color: #0b2f33;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.trust-reel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 215, 220, 0.6);
}

.trust-reel-item span {
  position: relative;
  z-index: 2;
}

.trust-icon {
  font-size: 14px;
  color: #d6b56c;
}

.trust-text {
  font-weight: 500;
}

/* Animation */
@keyframes trustPan {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===============================
   SHOP BY CATEGORY (SECTION)
================================ */
.shop-by-category{
  position:relative;
  padding: 70px 0 70px;
}

/* Header row */
.category-header{
  max-width: 1200px;
  margin: 0 auto 26px;
  padding: 0 32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.category-header h2{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color:#0b2f33;
  margin:0;
}

/* Arrows */
.category-arrows{ display:flex; gap:14px; }

.cat-arrow{
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(11,47,51,0.25);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(6px);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cat-arrow span{
  font-size:22px;
  font-family: serif;
  color:#0b2f33;
  line-height:1;
}
.cat-arrow:hover{
  background: rgba(120,215,220,0.30);
}

/* Track */
.category-track-wrapper{
  overflow:hidden;
  padding: 0 0 10px;
}
.category-track{
  display:flex;
  gap:26px;
  padding-left:32px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.category-track::-webkit-scrollbar{ display:none; }

/* Cards = rounded squares */
.category-card{
  flex: 0 0 250px;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  background-size: cover;
  background-position:center;
  position:relative;
  text-decoration:none;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transform: translateZ(0);
}

/* Turquoise haze overlay */
.category-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(80,200,205,0); /* ~55% haze */
}

/* Label */
.category-card span{
  position:absolute;
  bottom:22px;
  left:22px;
  z-index:2;
  font-family:"Playfair Display", serif;
  font-size:20px;
  color:#0b2f33;
}

/* Hover polish */
.category-card:hover{ transform: translateY(-4px); }

/* =====================================
   ELEGANT LOVEABLE-STYLE BACKGROUND LINES
===================================== */

/* Apply to any section that needs lines */
.lux-bg {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(90, 185, 190, 0.12),
    rgba(90, 185, 190, 0.08)
  );
  overflow: hidden;
}

/* Moving line layer */
.lux-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    linear-gradient(
      120deg,
      rgba(120, 215, 220, 0.10) 1px,
      transparent 1px
    ),
    linear-gradient(
      -120deg,
      rgba(120, 215, 220, 0.06) 1px,
      transparent 1px
    );

  background-size: 900px 900px;
  animation: luxLinesMove 45s linear infinite;
}

/* Keep content above lines */
.lux-bg > * {
  position: relative;
  z-index: 1;
}

@keyframes luxLinesMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 900px 450px, -900px 450px;
  }
}

/* Force full-width sections inside Storefront */
.lux-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ===============================
   LUXURY BACKGROUND LINES (GLOBAL)
================================ */

.lux-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(120, 215, 220, 0.08),
    rgba(120, 215, 220, 0.04)
  );
}

/* the lines */
.lux-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;

  background-image:
    linear-gradient(
      120deg,
      rgba(120, 215, 220, 0.35) 1px,
      transparent 1px
    ),
    linear-gradient(
      -120deg,
      rgba(214, 181, 108, 0.08) 1px,
      transparent 1px
    );

  background-size: 900px 900px;
  animation: luxLinesMove 40s linear infinite;
}

/* keep content above lines */
.lux-bg > * {
  position: relative;
  z-index: 2;
}

@keyframes luxLinesMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 900px 450px, -900px 450px;
  }
}

/* ===== GLOBAL ELEGANT BACKGROUND LINES ===== */
body.home {
  background-image: url("https://thepengalaxy.co.za/wp-content/uploads/2026/02/vector-abstract-turquoise-and-white-background-eps-ai-thumbnail.jpg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  background-attachment: fixed;
}

/* Let background lines show through sections */
.home section,
.home .site-content,
.home .content-area {
  background: transparent;
}

/* Soft panel effect over background */
.shop-by-category {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 28px;
}

/* ===============================
   NEW ARRIVALS SECTION
================================ */

.new-arrivals-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 120px 0;
  background:
    url('/wp-content/uploads/2026/02/vector-abstract-turquoise-and-white-background-eps-ai-thumbnail') center top / cover no-repeat,
    linear-gradient(
      rgba(90, 190, 195, 0.25),
      rgba(90, 190, 195, 0.25)
    );
}

.new-arrivals-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section heading */
.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: block;
  letter-spacing: 0.35em;
  color: #d6b56c;
  font-size: 12px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 44px);
  color: #0b2f3a;
}

/* Grid desktop */
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Product card */
.product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 26px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* New badge */
.badge-new {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #d6b56c;
  color: #0b2f3a;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Image */
.product-image img {
  border-radius: 18px;
  margin-bottom: 18px;
}

/* Text */
.product-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #0b2f3a;
}

.price {
  display: block;
  margin-bottom: 14px;
  color: #0b2f3a;
  font-weight: 600;
}

/* Add to cart */
.product-card .button {
  background: #0b2f3a;
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
}

/* ===============================
   MOBILE – HORIZONTAL SCROLL
================================ */

@media (max-width: 900px) {

  .new-arrivals-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .product-card {
    min-width: 260px;
    scroll-snap-align: start;
  }

}

/* ===============================
   TRUSTED BRANDS STRIP
================================ */

.trusted-brands {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 80px 0;
  background:
    url('/wp-content/uploads/elegant-lines-bg.png') center center / cover no-repeat,
    linear-gradient(
      rgba(80, 180, 185, 0.22),
      rgba(80, 180, 185, 0.22)
    );
}

.trusted-brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

/* Heading */
.trusted-header {
  margin-bottom: 36px;
}

.trusted-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 36px);
  color: #0b2f3a;
}

/* Logo row */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

/* Logo cards */
.brand-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand-card img {
  max-width: 220px;
  max-height: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
}

/* Hover polish */
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.brand-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Mobile */
@media (max-width: 900px) {
  .brand-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .trusted-brands {
    padding: 60px 0;
  }
}

/* ===============================
   TESTIMONIALS SECTION
================================ */

.testimonials-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-heading {
  margin-bottom: 40px;
}

.testimonials-heading .eyebrow {
  letter-spacing: 3px;
  font-size: 12px;
  color: #b68a4c;
}

.testimonials-heading h2 {
  font-size: 42px;
  font-weight: 500;
  color: #0b3c40;
}

.testimonials-heading h2 span {
  color: #b68a4c;
}

/* Horizontal scroll track */
.testimonials-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

/* Card styling */
.testimonial-card {
  min-width: 320px;
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
  color: #b68a4c;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #334;
  margin-bottom: 18px;
}

.testimonial-card .author strong {
  display: block;
  font-size: 14px;
  color: #0b3c40;
}

.testimonial-card .author span {
  font-size: 12px;
  color: #777;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .testimonials-heading h2 {
    font-size: 32px;
  }

  .testimonial-card {
    min-width: 260px;
  }
}

/* ===============================
   LUXURY INNER PAGES
================================ */

.lux-page-wrapper {
  position: relative;
  padding: 120px 0;
  background: #f6fcfc;
  overflow: hidden;
}

/* Inner container */
.lux-page-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Page title */
.lux-page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: #0b2f3a;
  margin-bottom: 32px;
}

/* Page content */
.lux-page-content {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1f3f47;
}

.lux-page-content p {
  margin-bottom: 1.4em;
}

.lux-page-content h2,
.lux-page-content h3 {
  font-family: "Playfair Display", serif;
  color: #0b2f3a;
  margin: 2em 0 0.6em;
}

/* ===============================
   ELEGANT MOVING LINES (SUBTLE)
================================ */

.lux-lines-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      120deg,
      rgba(90, 200, 205, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      -120deg,
      rgba(90, 200, 205, 0.08) 1px,
      transparent 1px
    );
  background-size: 1200px 1200px;
  animation: luxLinesMove 60s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes luxLinesMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 1200px 600px, -1200px 600px;
  }
}

/* === GLOBAL SCROLLING BACKGROUND (ELEGANT LINES IMAGE) === */
body {
  background-image: url("/wp-content/uploads/elegant-lines-bg.png"); /* your uploaded image */
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center top;
  background-attachment: fixed;
}

/* ===== FAQ SECTION ===== */

.faq-section {
  padding: 90px 0;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #0b2f3a;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(120, 215, 220, 0.52);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #0b2f3a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  color: #d8b86a;
}

.faq-answer {
  display: none;
  padding: 0 26px 22px;
  color: rgba(15, 45, 55, 0.85);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ===============================
   FAQ – MOBILE FIX (CLEAN & ELEGANT)
================================ */
@media (max-width: 768px) {

  .faq-section {
    padding: 40px 16px;
  }

  .faq-heading h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 14px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.3;
    padding-right: 32px;
  }

  .faq-question::after {
    right: 12px;
    font-size: 18px;
  }

  .faq-answer {
    font-size: 14.5px;
    line-height: 1.6;
    margin-top: 10px;
    color: #083c40;
  }

}

/* ===============================
   LUXURY SITE FOOTER
================================ */

.lux-footer {
	position: relative;
	background:
		rgba(40, 135, 140, 0.88)
		url('/wp-content/uploads/lux-lines-bg.png') center / cover no-repeat;
	color: #e6f2f2;
	padding: 70px 8% 40px;
}

.lux-footer-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 50px;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-col h3 {
	font-size: 22px;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
}

.footer-col h4 {
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 18px;
	color: #d9b56c;
}

.footer-brand p {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.9;
}

.footer-note {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	opacity: 0.7;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a {
	color: #e6f2f2;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.85;
	transition: opacity 0.25s ease;
}

.footer-col ul li a:hover {
	opacity: 1;
}

.lux-footer-bottom {
	margin-top: 60px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	opacity: 0.7;
}

/* Mobile */
@media (max-width: 900px) {
	.lux-footer-inner {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.lux-footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* HERO BUTTON POSITION – bottom left inside banner */
.hero-content {
  position: absolute;
  inset: 0;
  pointer-events: none; /* prevents blocking slider */
}

.hero-buttons {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  gap: 12px;
  pointer-events: auto;
}

/* TEMP: Disable hero haze / overlay */
.hero-overlay {
  display: none !important;
}

/* Position hero buttons bottom-left inside banner */
.hero-content {
  position: absolute;
  inset: 0;
}

.hero-buttons {
  position: absolute;
  bottom: 24px;   /* distance from bottom */
  left: 24px;     /* distance from left */
  display: flex;
  gap: 12px;
}

/* === FORCE HERO BUTTONS TO BOTTOM LEFT === */

/* Kill flex centering */
.hero-content {
  display: block !important;
  position: absolute;
  inset: 0;
}

/* Position buttons */
.hero-buttons {
  position: absolute !important;
  bottom: 28px;
  left: 28px;
  display: flex;
  gap: 14px;
  margin: 0;
}

/* ===== HERO BUTTONS: FORCE BOTTOM-LEFT ===== */

/* Make slider the anchor */
.hero-slider {
  position: relative;
}

/* Disable centering logic completely */
.hero-content {
  position: static !important;
  display: block !important;
  transform: none !important;
}

/* Position buttons precisely */
.hero-buttons {
  position: absolute !important;
  bottom: 28px;
  left: 28px;

  display: flex;
  gap: 14px;

  margin: 0 !important;
}

/* Prevent hero buttons from fading with slides */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-buttons {
  pointer-events: auto;
}

/* ===== HERO LAYER LOCK (FINAL) ===== */

.hero-wrapper,
.hero-container,
.hero-slider {
  position: relative;
}

/* slides fade underneath */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* overlay (if enabled later) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* content layer NEVER fades */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

/* buttons stay visible + clickable */
.hero-buttons {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 20;
  pointer-events: auto;
}

/* === HERO: REMOVE HAZE WITHOUT KILLING IMAGES === */

.hero-slider {
  background-blend-mode: normal !important;
}

.hero-slider .slide {
  filter: none !important;
}

.hero-overlay {
  display: none !important;
}

/* === HERO: NUCLEAR HAZE KILL (SAFE) === */

.hero-overlay,
.hero-slider::before,
.hero-slider::after,
.hero-slider .slide::before,
.hero-slider .slide::after {
  display: none !important;
}

.hero-slider {
  background: transparent !important;
  background-blend-mode: normal !important;
}

.hero-slider .slide {
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* ===============================
   PRODUCT PAGE – CONVERSION TUNING
================================ */

/* Make price stronger */
.single-product .price {
  font-size: 22px;
  font-weight: 600;
  color: #0b2f3a;
  margin-bottom: 16px;
}

/* Make Add to Cart dominant */
.single-product .single_add_to_cart_button {
  background: #0b2f3a;
  color: #ffffff;
  border-radius: 40px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: all .25s ease;
}

.single-product .single_add_to_cart_button:hover {
  background: #e6c77b;
  color: #0b2f3a;
  transform: translateY(-2px);
}

/* Reduce clutter under title */
.single-product .product_meta {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 18px;
}

/* Better spacing overall */
.single-product div.product {
  margin-top: 40px;
}

/* Product Trust Block */

.lux-product-trust {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #0b2f3a;
  opacity: 0.85;
}

.lux-product-trust div {
  margin-bottom: 6px;
}

/* PRODUCT PAGE – ELEGANT BACKGROUND */

.single-product {
  background-image: url("/wp-content/uploads/elegant-lines-bg.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  background-attachment: fixed;
}

/* ====================================
   PRODUCT PAGE – FLOATING LUX PANELS
==================================== */

/* Space top and bottom */
.single-product div.product {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* ===== PANEL BASE STYLE ===== */
.single-product div.product,
.single-product .woocommerce-tabs,
.single-product #reviews {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Add spacing between panels */
.single-product .woocommerce-tabs {
  margin-top: 40px;
}

.single-product #reviews {
  margin-top: 40px;
}

/* Improve internal spacing */
.single-product .woocommerce-tabs .panel {
  padding-top: 20px;
}

/* Make tabs cleaner */
.single-product .woocommerce-tabs ul.tabs li a {
  font-weight: 500;
}

/* Slightly soften reviews */
.single-product #reviews {
  padding-bottom: 60px;
}

/* REMOVE WHITE WRAPPER ON PRODUCT PAGE */
.single-product .site-content,
.single-product .site-main,
.single-product #primary,
.single-product .content-area {
  background: transparent !important;
}

/* PRODUCT PAGE FULL WIDTH CONTROL */

.single-product .site-main {
  max-width: 2000px;
  margin: 40px auto 80px; /* top gap reduced */
  padding: 0 40px;
}

.single-product div.product {
  padding: 60px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
}

/* =========================================
   SINGLE PRODUCT – LUXURY FLOATING LAYOUT
========================================= */

/* 1️⃣ FORCE ELEGANT BACKGROUND */
.single-product {
  background-image: url("/wp-content/uploads/elegant-lines-bg.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center top;
  background-attachment: scroll;
}

/* Remove Storefront white wrappers */
.single-product .site-content,
.single-product .site-main,
.single-product #primary,
.single-product .content-area,
.single-product .woocommerce {
  background: transparent !important;
}

/* 2️⃣ CONTROL PAGE WIDTH */
.single-product .site-main {
  max-width: 1500px; /* adjust wider if needed */
  margin: 30px auto 80px;
  padding: 0 40px;
}

/* 3️⃣ MAIN PRODUCT FLOATING CARD */
.single-product div.product {
  background: rgba(120, 215, 220, 0.40); /* soft turquoise tint */
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 70px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* 4️⃣ DESCRIPTION + TABS BLOCK */
.single-product .woocommerce-tabs {
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  padding: 50px;
  margin-top: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* 5️⃣ REVIEWS BLOCK */
.single-product #reviews {
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  padding: 50px;
  margin-top: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ===== REMOVE STOREFRONT WHITE WRAPPERS ===== */

body.woocommerce #page,
body.woocommerce-page #page {
  background: transparent !important;
}

body.woocommerce .site-content,
body.woocommerce-page .site-content,
body.woocommerce .col-full,
body.woocommerce-page .col-full {
  background: transparent !important;
}

/* ===== FIX PRODUCT PAGE BACKGROUND ===== */

.single-product #page {
  background: transparent !important;
}

.single-product .site-content {
  background: transparent !important;
}

/* ===== FORCE PRODUCT PAGE BACKGROUND TO SHOW ===== */

.single-product #page,
.single-product .site {
  background: transparent !important;
}

.single-product #content,
.single-product .site-content {
  background: transparent !important;
}

.single-product .col-full {
  background: transparent !important;
}

/* ===== SINGLE PRODUCT BACKGROUND FIX (FINAL) ===== */

body.single-product {
  background-image: url("/wp-content/uploads/elegant-lines-bg.png") !important;
  background-repeat: repeat-y !important;
  background-size: 100% auto !important;
  background-position: center top !important;
  background-attachment: fixed !important;
}

/* Remove Storefront white wrappers */
body.single-product #page,
body.single-product .site,
body.single-product #content,
body.single-product .site-content,
body.single-product .col-full {
  background: transparent !important;
}

/* Move product content higher */
.single-product .site-main {
  padding-top: -20px !important;
}

.single-product .col-full {
  margin-top: -80 !important;
}

/* ===============================
   PRODUCT GALLERY POLISH
================================ */

/* Main product image */
.single-product div.product .woocommerce-product-gallery__wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Ensure image respects rounding */
.single-product div.product .woocommerce-product-gallery__image img {
  border-radius: 24px;
}

/* Thumbnails */
.single-product div.product .flex-control-thumbs {
  margin-top: 18px;
  gap: 12px;
  display: flex;
}

.single-product div.product .flex-control-thumbs li {
  border-radius: 14px;
  overflow: hidden;
}

.single-product div.product .flex-control-thumbs img {
  border-radius: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.single-product div.product .flex-control-thumbs img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Subtle zoom on desktop */
@media (min-width: 992px) {
  .single-product div.product .woocommerce-product-gallery__image img {
    transition: transform 0.4s ease;
  }

  .single-product div.product .woocommerce-product-gallery__image:hover img {
    transform: scale(1.08);
  }
}

/* ===============================
   PRODUCT REVIEWS REDESIGN
================================ */

/* Review section wrapper */
.single-product #reviews {
  background: rgba(220, 245, 246, 0.75);
  border-radius: 24px;
  padding: 40px;
  margin-top: 40px;
}

/* Review title */
.single-product #reviews h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #0b2f3a;
  margin-bottom: 28px;
}

/* Individual review */
.single-product #reviews .comment {
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Reviewer name */
.single-product #reviews .comment-author {
  font-weight: 600;
  color: #0b2f3a;
}

/* Review text */
.single-product #reviews .description p {
  color: #334;
  line-height: 1.6;
}

/* Stars gold */
.single-product .star-rating span::before,
.single-product .woocommerce-review-link {
  color: #d6b56c;
}

/* ===============================
   SHOP / CATEGORY PRODUCT CARDS
================================ */

/* Card wrapper */
.archive .products li.product {
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift */
.archive .products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Image rounding */
.archive .products li.product img {
  border-radius: 18px;
  margin-bottom: 16px;
}

/* Product title */
.archive .products li.product h2 {
  font-size: 15px;
  font-weight: 500;
  color: #0b2f3a;
}

/* Price */
.archive .products li.product .price {
  color: #0b2f3a;
  font-weight: 600;
}

/* Add to cart button */
.archive .products li.product .button {
  background: #0b2f3a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  margin-top: 10px;
}

.archive .products li.product .button:hover {
  background: #d6b56c;
  color: #0b2f3a;
}

/* ===============================
   SHOP HEADER POLISH
================================ */

/* Category / shop title */
.archive .woocommerce-products-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #0b2f3a;
  margin-bottom: 10px;
}

/* Result count + sorting wrapper */
.archive .woocommerce-result-count,
.archive .woocommerce-ordering {
  margin-bottom: 30px;
}

/* Align count + sorting */
.archive .woocommerce-result-count {
  float: left;
  color: rgba(11,47,58,0.7);
}

.archive .woocommerce-ordering {
  float: right;
}

/* Clear floats */
.archive .woocommerce-products-header::after {
  content: "";
  display: block;
  clear: both;
}

/* Style sorting dropdown */
.archive .woocommerce-ordering select {
  border-radius: 999px;
  border: 1px solid rgba(11,47,58,0.25);
  padding: 8px 18px;
  background: rgba(255,255,255,0.9);
  font-family: inherit;
  color: #0b2f3a;
}

/* ===============================
   SHOP PAGINATION POLISH
================================ */

.archive nav.woocommerce-pagination {
  margin: 60px 0;
  text-align: center;
}

.archive .woocommerce-pagination ul {
  border: none;
  display: inline-flex;
  gap: 10px;
}

.archive .woocommerce-pagination ul li {
  border: none;
}

.archive .woocommerce-pagination ul li a,
.archive .woocommerce-pagination ul li span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #0b2f3a;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.archive .woocommerce-pagination ul li a:hover {
  background: #d6b56c;
  color: #0b2f3a;
}

/* Active page */
.archive .woocommerce-pagination ul li span.current {
  background: #0b2f3a;
  color: #fff;
}

/* ===============================
   MY ACCOUNT – CLEAN FLOAT PANEL
================================ */

.woocommerce-account .site-main {
  padding-top: 0px !important;
}

/* Floating panel ONLY for account content */
.woocommerce-account #primary {
  max-width: 1100px;
  margin: 60px auto;
  padding: 60px;
  background: rgba(90, 185, 190, 0.10);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Fix navigation layout (keep Woo default floats) */
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 25%;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 70%;
}

/* Clean sidebar links */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin-bottom: 12px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  color: #0b2f3a;
  transition: all .25s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: rgba(90,185,190,0.18);
}

/* Typography */
.woocommerce-account h2 {
  font-family: "Playfair Display", serif;
  color: #0b2f3a;
}

/* Mobile */
@media (max-width: 900px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }

  .woocommerce-account .col-full {
    padding: 30px;
  }
}

/* SUPPORT PAGE */
.support-wrapper {
  padding: 120px 0;
}

.support-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.support-panel h1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
  color: #0b2f3a;
}

.support-panel p {
  margin-bottom: 40px;
  color: rgba(11,47,58,0.8);
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.support-form input,
.support-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(11,47,58,0.15);
  padding: 14px;
  font-size: 15px;
}

.support-form textarea {
  min-height: 140px;
  resize: vertical;
}

.support-form button {
  background: #0b2f3a;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-weight: 600;
  cursor: pointer;
}

.support-success {
  margin-top: 30px;
  color: #0b2f3a;
  font-weight: 500;
}

/* ===== CUSTOMER SUPPORT – CLEAN LAYOUT FIX ===== */

.page-template-page-customer-support #primary {
  padding: 0 !important;
}

.page-template-page-customer-support .site-main {
  padding: 0 !important;
}

.page-template-page-customer-support .support-wrapper {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.page-template-page-customer-support .support-panel {
  width: 100%;
  max-width: 720px;
  background: rgba(255,255,255,0.96);
  padding: 60px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.lux-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-designed-by {
    font-size: 13px;
    opacity: 0.7;
}

.footer-designed-by a {
    color: #5ec7c1;
    text-decoration: none;
}

.footer-designed-by a:hover {
    opacity: 0.8;
}

/* ===================================
   ATLAS STUDIO – CLEAN FINAL VERSION
=================================== */

body.page-template-atlas-studio-standalone {
    background: #ffffff !important;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1a1a1a;
}

/* Hide theme header/footer */
body.page-template-atlas-studio-standalone #masthead,
body.page-template-atlas-studio-standalone #colophon,
body.page-template-atlas-studio-standalone .site-header,
body.page-template-atlas-studio-standalone .site-footer,
body.page-template-atlas-studio-standalone .storefront-breadcrumb,
body.page-template-atlas-studio-standalone .site-content {
    display: none !important;
}

/* Main wrapper */
.atlas-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 120px;
}

/* =======================
   Banner (unchanged)
======================= */

.atlas-banner {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 90px;
}

.atlas-logo {
    max-height: 140px;
    width: auto;
}

/* =======================
   Hero
======================= */

.atlas-hero {
    text-align: center;
    margin-bottom: 110px;
}

.atlas-hero h1 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 10px;
}

.atlas-hero p {
    font-size: 18px;
    opacity: 0.6;
}

/* =======================
   Sections
======================= */

.atlas-section {
    margin-bottom: 110px;
}

.atlas-section h2 {
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 500;
}

/* =======================
   Grid (2x2 forced)
======================= */

.atlas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* =======================
   Cards (slightly grey)
======================= */

.atlas-card {
    background: #f6f6f6;   /* slight grey */
    border-radius: 16px;
    padding: 35px;
    border: 1px solid #ececec;
    transition: 0.25s ease;
}

.atlas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.atlas-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.atlas-card p {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 15px;
}

.atlas-card a {
    text-decoration: none;
    font-weight: 500;
    color: #0f3f3f;
}

/* =======================
   Contact
======================= */

.atlas-contact {
    text-align: center;
}

.atlas-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* =======================
   Footer
======================= */

.atlas-footer {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    opacity: 0.6;
    margin-top: 120px;
}

/* =======================
   Mobile
======================= */

@media (max-width: 768px) {

    .atlas-wrapper {
        padding: 0 20px 100px;
    }

    .atlas-grid {
        grid-template-columns: 1fr;
    }

    .atlas-hero h1 {
        font-size: 34px;
    }

}

/* ===== GLOBAL WHITE BACKGROUND RESET ===== */

html,
body {
  background: #ffffff !important;
  background-image: none !important;
}

/* Remove elegant line backgrounds everywhere */
.lux-bg,
.lux-bg::before,
body.home,
.home section,
.home .site-content,
.home .content-area,
.single-product body {
  background: #ffffff !important;
  background-image: none !important;
}

/* Remove section background images */
section,
.single-product,
.new-arrivals-section,
.trusted-brands,
.shop-by-category,
.testimonials-section {
  background-image: none !important;
}

/* Remove any pseudo background overlays */
section::before,
section::after {
  display: none !important;
}

/* =======================================================
   GLOBAL CLEAN RESET – REMOVE GREEN + FORCE WHITE THEME
   ======================================================= */

/* Remove ALL background images and gradients */
html,
body,


/* Force full site background white */
html,
body {
    background: #ffffff !important;
}

/* Remove section overlays */
section::before,
section::after,
.site-header::before,
.site-header::after {
    display: none !important;
}

/* ================= HEADER ================= */

.site-header,
.main-navigation,
.storefront-primary-navigation {
    background: #111111 !important; /* dark header */
}

.main-navigation a {
    color: #ffffff !important;
}

.main-navigation a:hover {
    color: #d4af37 !important; /* subtle gold hover */
}

/* Dropdown menu */
.main-navigation ul ul {
    background: #ffffff !important;
}

.main-navigation ul ul li a {
    color: #111111 !important;
}

/* Cart dropdown */
.widget_shopping_cart,
.site-header-cart .widget_shopping_cart_content {
    background: #ffffff !important;
    color: #111111 !important;
}

/* ================= FAQ RESET ================= */

.faq-item,
.faq-question {
    background: #f5f5f5 !important;
}

.faq-item.active,
.faq-question.active {
    background: #eaeaea !important;
}

/* ================= BUTTON RESET ================= */

button,
.button,
input[type="submit"] {
    background: #111111 !important;
    color: #ffffff !important;
    border: none !important;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    background: #333333 !important;
}

/* ================= REMOVE RANDOM GREEN TEXT ================= */

a {
    color: inherit !important;
}

/* Remove green trust strip */
.trust-strip,
.lux-strip,
.top-bar {
    background: #f5f5f5 !important; /* light neutral instead */
}

/* Restore header properly */
.site-header,
.storefront-primary-navigation {
    background: #0f172a !important; /* deep navy */
}

/* Restore dropdown */
.main-navigation ul ul {
    background: #ffffff !important;
}

/* Fix FAQ colours */
.faq-item {
    background: #f8f8f8 !important;
}

.faq-item.active {
    background: #eaeaea !important;
}

/* =======================================================
   CLEAN HEADER + FAQ FIX (NON-DESTRUCTIVE)
   ======================================================= */

/* Restore proper Storefront-style header colour */
.site-header,
.storefront-primary-navigation {
    background-color: #1f2937 !important; /* deep navy */
}

/* Keep navigation text white */
.main-navigation a {
    color: #ffffff !important;
}

/* Dropdown background clean white */
.main-navigation ul ul {
    background-color: #ffffff !important;
}

.main-navigation ul ul li a {
    color: #111111 !important;
}

/* ================= FAQ FIX ================= */

/* Make FAQ blocks visible */
.faq-item,
.faq-question {
    background-color: #f5f5f5 !important;
    color: #111111 !important;
}

/* Ensure FAQ inner text is visible */
.faq-item p,
.faq-item span,
.faq-question p,
.faq-question span {
    color: #111111 !important;
}

/* Active FAQ state */
.faq-item.active {
    background-color: #eaeaea !important;
}

/* =======================================================
   HEADER HARD RESET – RESTORE STORE­FRONT STRUCTURE
   ======================================================= */

/* Remove boxed nav effect */
.storefront-primary-navigation,
.main-navigation,
.site-header {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Let Storefront handle header background again */
.site-header {
    background-color: #0f172a !important; /* deep navy similar to original */
}

/* Remove any inner dark blocks */
.storefront-primary-navigation > .col-full,
.main-navigation > div,
.main-navigation > ul {
    background: transparent !important;
}

/* Keep nav text correct */
.main-navigation a {
    color: #ffffff !important;
}

/* Dropdown stays clean */
.main-navigation ul ul {
    background: #ffffff !important;
}

.main-navigation ul ul li a {
    color: #111111 !important;
}

/* =======================================================
   FAQ VISIBILITY FIX
   ======================================================= */

.faq-item,
.faq-question {
    background: #f5f5f5 !important;
    color: #111111 !important;
}

.faq-item p,
.faq-item span,
.faq-question p,
.faq-question span {
    color: #111111 !important;
}

.faq-item.active {
    background: #eaeaea !important;
}

/* ===== DROPDOWN GAP FIX (SAFE) ===== */

/* Only target Storefront main menu dropdowns */
.main-navigation ul.menu > li.menu-item-has-children {
  position: relative;
}

/* Keep your dropdown visually the same (don’t force colors) */
.main-navigation ul.menu > li.menu-item-has-children > ul.sub-menu {
  position: absolute;         /* normally already, but safe */
  top: 100%;
  margin-top: 0 !important;   /* don’t add extra gap */
}

/* Invisible hover “bridge” ABOVE the dropdown to prevent closing */
.main-navigation ul.menu > li.menu-item-has-children > ul.sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;     /* bridge sits in the gap */
  height: 14px;   /* thickness of the bridge */
  background: transparent;
}

/* ===== FIX SECOND-LEVEL DROPDOWN GAP ===== */

/* Target only second-level submenu */
.main-navigation ul.menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu {
    left: 92% !important;   /* was likely 100% */
}

/* Keep it visible on hover */
.main-navigation ul.menu li:hover > ul.sub-menu {
    display: block !important;
}

/* Fix FAQ hover turning dark */
.faq-item:hover,
.faq-question:hover {
    background-color: #e8f6f5 !important; /* light turquoise */
    color: #1a1a1a !important;
}

/* ===== FOOTER LIGHTEN + TEXT ADJUST ===== */

.lux-footer {
    background: rgba(90, 185, 190, 0.45) !important; /* lighter turquoise */
    color: #000000 !important; /* make body text black */
}

/* Footer paragraph + list text */
.lux-footer p,
.lux-footer li,
.lux-footer a {
    color: #000000 !important;
}

/* Keep column headings same colour but larger */
.lux-footer .footer-col h4 {
    font-size: 18px !important;   /* slightly bigger */
    color: #d9b56c !important;    /* keep original heading colour */
}

/* Optional: improve link hover contrast */
.lux-footer a:hover {
    opacity: 0.7;
}

/* FORCE override cart checkout button */

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .checkout-button,
.woocommerce-cart .button.alt {

    background: #d7f0ef !important;
    background-image: none !important;
    border: 1px solid #d7f0ef !important;
    box-shadow: none !important;
    color: #0b2f3a !important;
}

/* Hover */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-cart .button.alt:hover {

    background: #c6e6e5 !important;
    background-image: none !important;
    border-color: #c6e6e5 !important;
}

/* FIX WooCommerce Cart Block Proceed Button */

.wc-block-cart__submit-button,
.wc-block-components-button.contained {
    background-color: #d7f0ef !important;
    background-image: none !important;
    border: 1px solid #d7f0ef !important;
    color: #0b2f3a !important;
    box-shadow: none !important;
}

/* Hover */
.wc-block-cart__submit-button:hover,
.wc-block-components-button.contained:hover {
    background-color: #c6e6e5 !important;
    border-color: #c6e6e5 !important;
}

/* ===== REFINED MOBILE PRODUCT LAYOUT ===== */
@media (max-width: 768px) {

    /* Make product container use full width properly */
    .single-product .product {
        padding: 24px 18px !important;
    }

    /* Remove forced tall layouts */
    .single-product div.product {
        min-height: auto !important;
    }

    /* Improve title readability */
    .single-product h1.product_title {
        font-size: 24px !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
        word-break: break-word;
    }

    /* Better spacing for price */
    .single-product .price {
        margin-bottom: 12px !important;
    }

    /* Quantity + button spacing */
    .single-product form.cart {
        margin-top: 15px !important;
    }

    /* Full-width add to cart */
    .single-product .single_add_to_cart_button {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important;
    }

    /* Trust badges spacing */
    .single-product .trust-badges,
    .single-product .lux-trust {
        margin-top: 18px !important;
        font-size: 14px !important;
    }

}

/* ================= HERO SLIDER CORE ================= */

.hero-slider {
  position: relative;
  height: 530px;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* Arrows */
.hero-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  pointer-events: none;
  z-index: 5;
}

.hero-arrows button {
  pointer-events: auto;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 4px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: white;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 360px;
  }
}

/* KILL ANY OLD HERO ANIMATIONS */
.hero-slider .slide {
  animation: none !important;
}

/* =======================================
   MOBILE PRODUCT PAGE RESET
   Clean, Full Width, Functional
======================================= */

@media (max-width: 768px) {

  /* Remove floating block look */
  .single-product .site-main,
  .single-product .product,
  .single-product .col-full {
    background: #ffffff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 16px !important;
    margin: 0 !important;
  }

  /* Make product layout stack properly */
  .single-product div.product {
    display: block !important;
  }

  /* Product image full width */
  .single-product .woocommerce-product-gallery {
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .single-product .woocommerce-product-gallery img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
  }

  /* Summary section */
  .single-product .summary {
    width: 100% !important;
    padding: 0 !important;
  }

  /* Title */
  .single-product .product_title {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  /* Price */
  .single-product .price {
    font-size: 20px !important;
    margin-bottom: 16px !important;
  }

  /* Add to cart button */
  .single-product .single_add_to_cart_button {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
  }

  /* Quantity box */
  .single-product .quantity {
    margin-bottom: 12px !important;
  }

  /* Tabs */
  .single-product .woocommerce-tabs {
    margin-top: 30px !important;
  }

  /* Reviews block */
  .single-product #reviews {
    padding: 0 !important;
  }

}

/* ================================
   MOBILE – TRUSTED BRANDS FIX
================================ */

@media (max-width: 768px) {

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  .brand-logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 0 16px !important;
  }

  .brand-card {
    padding: 18px !important;
    border-radius: 14px !important;
  }

  .brand-card img {
    max-width: 160px !important;
    max-height: 80px !important;
  }

}

/* ===============================
   MOBILE MENU FIX
=============================== */

@media (max-width: 768px) {

  /* Make submenus stack properly */
  .main-navigation ul ul {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 15px !important;
  }

  /* Remove white floating box look */
  .main-navigation ul ul li {
    background: transparent !important;
  }
  
  /* Force ALL submenu levels to white */
.site-header .main-navigation ul ul a,
.site-header .main-navigation ul ul ul a {
  color: #ffffff !important;
}

  /* Make parent items expand cleanly */
  .main-navigation li {
    width: 100% !important;
  }

  /* Fix toggle arrows alignment */
  .main-navigation .dropdown-toggle {
    position: absolute;
    right: 15px;
  }

}

@media (max-width: 768px) {

  /* Force ALL submenu levels to stack normally */
  .main-navigation ul ul,
  .main-navigation ul ul ul {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    display: block !important;
  }

  /* Ensure list items are visible */
  .main-navigation ul ul li,
  .main-navigation ul ul ul li {
    display: block !important;
  }

  /* Ensure links are visible and clickable */
  .main-navigation ul ul a,
  .main-navigation ul ul ul a {
    display: block !important;
    padding: 8px 0 !important;
    color: #ffffff !important;
  }

}

/* Header colour – exact turquoise */
.site-header {
  background-color: #176b67 !important;
}