:root {
  --dark:#0f0f0f;
  --soft:#b3b3b3;
  --white:#fff;
  --accent:#d4af37;
}

/* Reset */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  padding-top: 85px;
  background:#f8f8f8;
  color:#111;
  overflow-x:hidden;
}

/* TOP NAVIGATION BAR */
.topbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--dark);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  font-size:22px;
  font-weight:700;
  letter-spacing:1px;
}

/* LIQUID GOLD LOGO TEXT */
.aurora-gold {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1.5px;
  display: inline-block;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(
      120deg,
      #f1c40f 0%,
      #d4af37 20%,
      #ffe9b3 40%,
      #f7d774 60%,
      #d4af37 80%,
      #f1c40f 100%
  );
  background-size: 300% 300%;
  animation: goldFlow 6s ease infinite;
}

@keyframes goldFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nav-left, .nav-right {
  display:flex;
  align-items:center;
  gap:20px;
}

.nav-left a, .nav-right a {
  color:var(--white);
  font-size:15px;
  text-decoration:none;
  position:relative;
}

.nav-left a:hover::after {
  content:"";
  position:absolute;
  bottom:-4px; left:0;
  width:100%; height:2px;
  background:var(--accent);
}

/* SEARCH BUTTON */
.search-button {
  position: relative;
  width: 220px;
  height: 55px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  transform: scale(1);
  transition: 0.3s ease;
}

.search-button:hover {
  transform: scale(1.05);
}

.search-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.search-line {
  stroke-dasharray: 336px 336px;
  stroke-dashoffset: 0;
}

/* OUTER ANIMATION */
@keyframes search-outer {
  0% { stroke-dashoffset: 0; stroke-dasharray: 336px 336px; }
  50% { stroke-dasharray: 224px 448px; }
  100% { stroke-dashoffset: 672px; stroke-dasharray: 336px 336px; }
}

.search-line--outer {
  animation: search-outer 6s linear infinite;
}

/* INNER ANIMATION */
@keyframes search-inner {
  0% { stroke-dashoffset: 0; stroke-dasharray: 336px 336px; }
  50% { stroke-dasharray: 224px 448px; }
  100% { stroke-dashoffset: -672px; stroke-dasharray: 336px 336px; }
}

.search-line--inner {
  animation: search-inner 5s linear infinite;
}

.search-input {
  width: 86%;
  height: 60%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  color: #fff;
  z-index: 3;
  text-align: center;
}

.search-input::placeholder {
  color: #d9d9d9;
  opacity: 0.7;
}

/* HERO SLIDER */
.slider {
  position:relative;
  width:100%;
  height:90vh;
  overflow:hidden;
}

.slide {
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1.5s ease;
  overflow:hidden;
}

.slide.active {
  opacity:1;
}

/* PARALLAX BACKGROUND */
.slide img {
  position:absolute;
  top:0; left:0;
  width:100%;
  height: 120%;
  object-fit: cover; /* <-- show full image */
  transform:translateY(0px);
  transition:transform 0.4s linear;
  will-change:transform;
}

.slide-text {
  position:absolute;
  bottom:20%;
  left:8%;
  color:#fff;
  max-width:500px;
}

.slide-text h1 {
  font-size:3rem;
  margin-bottom:10px;
  text-shadow:0 2px 20px rgba(0,0,0,0.5);
}

.slide-text p {
  margin-bottom:20px;
  color:#eee;
  font-size:16px;
}

.btn {
  background:var(--accent);
  color:#000;
  padding:12px 26px;
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
.btn:hover { background:#fff; }

/* FEATURED ARTWORKS */
.section {
  padding:60px 8%;
}

.section h2 {
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:20px;
  margin-bottom:20px;
  color:#222;
}

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:25px;
}

.card {
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
  transition:0.4s;
  position:relative;
}

.card:hover {
  transform:translateY(-8px);
  box-shadow:0 22px 55px rgba(0,0,0,0.18);
}

.card img {
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.6s ease;
}

.card:hover img {
  transform:scale(1.08);
}

.card-body {
  padding:18px;
}

.card-title {
  font-weight:600;
  margin-bottom:6px;
}

.price {
  color:var(--accent);
  font-weight:700;
  font-size:14px;
}

.add-cart {
  position:absolute;
  bottom:20px;
  right:20px;
  background:var(--accent);
  padding:8px 16px;
  border-radius:20px;
  font-size:14px;
  color:#000;
  opacity:0;
  transform:translateY(10px);
  transition:0.3s;
}

.card:hover .add-cart {
  opacity:1;
  transform:translateY(0);
}

/* FOOTER */
footer {
  background:var(--dark);
  color:var(--white);
  padding:50px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:40px;
  margin-top:60px;
}

footer h3 {
  margin-bottom:15px;
  color:var(--accent);
  font-weight:600;
}

footer a {
  display:block;
  color:#ccc;
  font-size:14px;
  text-decoration:none;
  margin-bottom:8px;
}

footer a:hover {
  color:#fff;
}

.footer-social {
  width: 100%;
  text-align: center;
  margin-top: 25px;
}

.social-list {
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 14px;
}

.social-list li {
  list-style: none;
}

.social-list li a {
  width: 46px;
  height: 46px;
  background-color: #fff;
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  z-index: 1;
  transition: transform .3s ease;
}

.social-list li a:hover {
  transform: translateY(-4px);
}

.social-list li a .icon {
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
}

.social-list li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-list li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s;
  z-index: 2;
}

.social-list li:nth-child(1) a:before { background: #3b5999; }
.social-list li:nth-child(2) a:before { background: #55acee; }
.social-list li:nth-child(3) a:before { background: #0077b5; }
.social-list li:nth-child(4) a:before { background: #dd4b39; }

.social-list li a:hover:before { top: 0; }

footer .copyright {
  grid-column:1/-1;
  text-align:center;
  margin-top:20px;
  font-size:13px;
  color:#777;
}
.featured-swiper .swiper-slide {
  width: auto !important;
}
/* 🔥 GOLD LUXURY PROMO BANNER */
.promo-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.promo-banner .promo-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;     /* show full painting */
  background: #000;        /* elegant border area if needed */
  filter: brightness(80%); /* increase visibility slightly */
  padding: 10px;           /* avoid touching edges */
}


.promo-banner .promo-content {
  position: absolute;
  top: 55%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 480px;
}

.promo-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(120deg, #f1c40f, #d4af37, #ffe9b3);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.promo-tag {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #d4af37;
  margin-top: 5px;
  font-weight: 700;
}

.promo-price {
  font-size: 1.4rem;
  margin: 12px 0;
}

.price-old {
  text-decoration: line-through;
  margin-right: 10px;
  color: #aaa;
}

.price-new {
  color: #d4af37;
  font-weight: 800;
  font-size: 1.6rem;
}

.promo-btn {
  background: #d4af37;
  color: #000;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 18px rgba(212,175,55,0.45);
}

.promo-btn:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
}
/* ✨ GOLD FOIL SHIMMER EFFECT */
.promo-title {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    -45deg,
    #f6e27a,
    #d4af37,
    #fff2b2,
    #c89b3c,
    #f6e27a
  );
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* 🌟 BANNER CONTAINER */
.promo-banner {
  background: linear-gradient(145deg, #0b0b0b 50%, #1c1c1c 100%);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 60px 8%;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  text-align: center;
  animation: bannerFadeUp 1.3s ease forwards;
  opacity: 0;
}

/* 💫 GOLD SHIMMER TITLE */
.promo-title {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(
    -45deg,
    #f6e27a,
    #d4af37,
    #fff2b2,
    #c89b3c,
    #f6e27a
  );
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 10px;
  text-shadow: 0 0 25px rgba(212,175,55,0.3);
}

.sale-tag {
  font-size: 1.2rem;
  color: #d4af37;
  font-weight: 800;
}

/* ✨ SUBTEXT */
.promo-desc {
  color: #ddd;
  font-size: 1rem;
  max-width: 700px;
  margin: 10px auto 25px;
}

/* 💳 BUTTON WITH SLOW PULSE */
.promo-btn {
  background: #d4af37;
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  animation: goldPulse 2.5s infinite ease-in-out;
  box-shadow: 0px 0px 15px rgba(212,175,55,0.4);
}
.promo-btn:hover {
  background: #fff;
}

/* 🪄 KEYFRAMES */
@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes goldPulse {
  0% { box-shadow: 0 0 7px rgba(212,175,55,0.3); }
  50% { box-shadow: 0 0 25px rgba(212,175,55,0.7); }
  100% { box-shadow: 0 0 7px rgba(212,175,55,0.3); }
}

@keyframes bannerFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
/*test*/
/* ====== LIVING MUSEUM BANNER ====== */

/* Slow breathing effect */
@keyframes paintingBreath {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Gentle light sweep */
@keyframes canvasShine {
  0% { opacity: 0.15; transform: translateX(-100%); }
  100% { opacity: 0.25; transform: translateX(200%); }
}

/* Apply breathing animation to the image */
.promo-banner .promo-img {
  animation: paintingBreath 12s ease-in-out infinite;
  position: relative;
}

/* Overlay shimmer effect */
.promo-banner::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: canvasShine 6s ease-in-out infinite;
  pointer-events: none;
}

/* Gold Glow Button */
.promo-btn {
  box-shadow: 0 0 15px rgba(212,175,55,0.45);
  transition: 0.3s ease;
}

.promo-btn:hover {
  box-shadow: 0 0 25px rgba(255,215,0,0.9);
  transform: scale(1.07);
}
/* ===== LUXURY GOLD DIVIDER ===== */

.lux-divider {
  width: 100%;
  text-align: center;
  padding: 30px 0 20px;
  background: transparent;
}

.lux-divider .lux-line {
  display: inline-block;
  width: 22%;
  height: 2px;
  margin: 0 10px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
}

.lux-divider .lux-icon {
  color: #d4af37;
  font-size: 28px;
  text-shadow: 0 0 10px rgba(255,215,0,0.7), 0 0 4px #fff;
  animation: glowPulse 3s infinite ease-in-out;
}

/* Glowing Animation */
@keyframes glowPulse {
  0% { text-shadow: 0 0 4px #fff, 0 0 10px #e7c657; }
  50% { text-shadow: 0 0 12px #fff, 0 0 22px #ffd861; }
  100% { text-shadow: 0 0 4px #fff, 0 0 10px #e7c657; }
}
/* Remove white space between slider and banner */
.slider {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.lux-divider {
  margin-top: 0 !important;
  padding-top: 5px !important;
  padding-bottom: 10px !important;
}

.promo-banner {
  margin-top: 0 !important;
}
/* REMOVE WHITE GAP BETWEEN SLIDER & BANNER */
.lux-divider-wrap {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.lux-divider {
  margin-top: 0 !important;
}
/* PLACE DIVIDER ON BLACK SECTION */
.slider + .lux-divider-wrap {
  background: #0f0f0f !important;
  padding: 10px 0 !important;
}

/* 🖼️ COLLECTIONS SPOTLIGHT */
.collections-spotlight h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 25px;
  color: var(--accent);
  text-align: center;
}

.collection-card {
  background: #111;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.3);
  transition: 0.3s;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.15);
}

.collection-card img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}

.collection-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.collection-btn {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}

.collection-btn:hover {
  background: #fff;
  color: #000;
}

.collection-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.25);
  transition: 0.3s;
}

.collection-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(80%);
  transition: 0.3s ease;
}

.collection-card:hover img {
  filter: brightness(100%);
  transform: scale(1.08);
}

.collection-card h3 {
  padding: 12px 0;
  color: var(--accent);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
 .lux-title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--accent);
  text-align: center;
  font-weight: 700;
}

.see-all-wrapper {
  text-align: center;
  margin-top: 25px;
}

.see-all-btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: 0.3s ease;
}

.see-all-btn:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 15px rgba(212,175,55,0.7);
}
.category-list h2 {
  text-align:center;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:22px;
  margin-bottom:30px;
  color:#d4af37;
}

.category-list .grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:25px;
}

.cat-card {
  text-decoration:none;
  color:#fff;
  background:#111;
  border:1px solid rgba(212,175,55,0.3);
  border-radius:15px;
  overflow:hidden;
  transition:0.3s;
}

.cat-card:hover {
  transform:translateY(-6px);
  border-color:#d4af37;
}

.cat-img {
  width:100%;
  height:180px;
  background-size:cover;
  background-position:center;
  filter:brightness(70%);
}

.cat-name {
  padding:12px;
  text-align:center;
  font-weight:600;
  color:#d4af37;
}
/* 🌟 Spotlight Collection Cards — White Version */
.collections-section .collection-card {
  background: #ffffff !important;
  border: 1px solid rgba(212,175,55,0.6);
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.collections-section .collection-card h3 {
  color: #000 !important;
  font-weight: 700;
}

.collections-section .collection-card .view-btn {
  background: #d4af37;
  color: #000;
}

.collections-section .collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(212,175,55,0.25);
}

.collections-section .collection-card:hover h3 {
  color: #d4af37;
}
.collections-section .collection-card:hover {
  border-color: #f1d46a;
}
/* ❌ Remove blue underline from spotlight links */
.collections-section .collection-card a {
  text-decoration: none !important;
  color: inherit !important;
}

/* ⭐ MATCH VIEW COLLECTION BUTTON TO LUXURY STYLE */
.collections-section .view-btn {
  display: inline-block;
  margin: 14px auto 22px;
  padding: 10px 26px;
  background: #d4af37;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: 0.3s ease-in-out;
  text-decoration: none !important;
}

.collections-section .view-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}

/* 📌 Center text and button inside cards */
.collections-section .collection-card a {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🌍 UNIVERSAL RESPONSIVE RULES */
img {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

/* 📱📐 TABLET RESPONSIVE (768px to 1024px) */
@media (max-width: 1024px) {
  body { padding-top: 70px; }

  .slider { height: 65vh; }
  .slide-text h1 { font-size: 2.3rem; }
  .slide-text p { font-size: 14px; }

  .promo-banner .promo-img { height: 55vh; }

  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .card img { height: 220px; }
}
 
/* 📱 SMARTPHONE RESPONSIVE (Below 768px) */
@media (max-width: 768px) {
  body { padding-top: 60px; }

  /* Hide full navbar menu on phones FOR NOW */
  .nav-left, .nav-right a:not(.search-button) {
    display: none;
  }

  .logo { font-size: 18px; }

  .slider { height: 55vh; }
  .slide-text h1 { font-size: 1.6rem; }
  .slide-text p { font-size: 13px; }
  .btn { padding: 8px 18px; font-size: 13px; }

  .promo-banner .promo-img { height: 45vh; }
  .promo-content h2 { font-size: 20px; }

  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .view-btn, .see-all-btn {
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
  }

  .swiper-slide .card img {
    height: 170px;
  }
}

/* 📱 SMALL SMARTPHONES (Below 480px) */
@media (max-width: 480px) {
  .slider { height: 48vh; }
  .slide-text { left: 5%; bottom: 15%; max-width: 90%; }
  .slide-text h1 { font-size: 1.4rem; }

  .promo-banner .promo-img { height: 40vh; }

  .collection-card img { height: 140px; }
}

/* -------- ARTIST QUOTES SECTION WRAPPER -------- */

.artist-quotes {
  background: #070707;
  padding: 60px 0 80px;
}

.quote-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* -------- CARD BASED ON YOUR ORIGINAL CSS -------- */

.artist-quotes .card {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 18rem;      /* smaller than original */
  height: 26rem;         /* smaller than original */
  overflow: hidden;
  border-radius: 0.625rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.35);
  background: #000;
}

.artist-quotes .card > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.artist-quotes .card__background {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.artist-quotes .card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  height: 55%;
  padding: 12% 1.25rem 1.875rem;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.3) 10%,
    hsl(0, 0%, 0%) 100%
  );
}

.artist-quotes .card__content--container {
  --flow-space: 1.25rem;
}

.artist-quotes .card__title {
  position: relative;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #fff;
}

.artist-quotes .card__title::after {
  content: "";
  position: absolute;
  height: 0.3125rem;
  width: calc(100% + 1.25rem);
  bottom: calc((1.25rem - 0.5rem) * -1);
  left: -1.25rem;
  background-color: #d4af37; /* gold instead of yellow */
}

.artist-quotes .card__description {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f5f5f5;
}

/* small vertical spacing utility (your .flow class) */
.artist-quotes .flow > * + * {
  margin-top: var(--flow-space, 1em);
}

/* -------- HOVER ANIMATION – EXACT BEHAVIOUR -------- */

@media (any-hover: hover) and (any-pointer: fine) {
  .artist-quotes .card__content {
    transform: translateY(62%);
    transition: transform 500ms ease-out;
    transition-delay: 500ms;
  }

  .artist-quotes .card__title::after {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1000ms ease-in, transform 500ms ease-out;
    transition-delay: 500ms;
    transform-origin: right;
  }

  .artist-quotes .card__background {
    transition: transform 500ms ease-in;
  }

  /* 🔥 THIS is what hides the quote before hover */
  .artist-quotes .card__content--container > :not(.card__title) {
    opacity: 0;
    transition: transform 500ms ease-out, opacity 500ms ease-out;
  }

  .artist-quotes .card:hover,
  .artist-quotes .card:focus-within {
    transform: scale(1.05);
    transition: transform 500ms ease-in;
  }

  .artist-quotes .card:hover .card__content,
  .artist-quotes .card:focus-within .card__content {
    transform: translateY(0);
    transition: transform 500ms ease-in;
  }

  .artist-quotes .card:focus-within .card__content {
    transition-duration: 0ms;
  }

  .artist-quotes .card:hover .card__background,
  .artist-quotes .card:focus-within .card__background {
    transform: scale(1.3);
  }

  .artist-quotes .card:hover .card__content--container > :not(.card__title),
  .artist-quotes .card:focus-within .card__content--container > :not(.card__title) {
    opacity: 1;
    transition: opacity 500ms ease-in;
    transition-delay: 1000ms;
  }

  .artist-quotes .card:hover .card__title::after,
  .artist-quotes .card:focus-within .card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 500ms;
  }
}

/* -------- RESPONSIVE: 3 → 1 CARDS ON MOBILE -------- */

@media (max-width: 768px) {
  .quote-container {
    gap: 20px;
  }
  .artist-quotes .card {
    max-width: 90%;
    height: 24rem;
  }
}

/* ============ ARTIST QUOTES STRIP ============ */

.artist-quotes {
  padding: 70px 8% 90px;
  background: #050505;
  text-align: center;
}

.artist-quotes__heading {
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 6px;
}

.artist-quotes__sub {
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 40px;
}

/* GRID LAYOUT FOR 3 CARDS */
.artist-quotes__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* FLOW UTILITY (like in CodePen) */
.artist-quotes .flow > * + * {
  margin-top: var(--flow-space, 1em);
}

/* CARD BASED ON CODEPEN – renamed to avoid conflicts */
.quote-card {
  --brand-color: #d4af37;
  --black: #000;
  --white: #fff;

  display: grid;
  place-items: center;
  width: 100%;
  max-width: 260px;         /* smaller than the original */
  height: 360px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  background: #000;
}

.quote-card > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

/* BACKGROUND IMAGE */
.quote-card__background {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 500ms ease-in;
}

/* DARK GRADIENT PANEL */
.quote-card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  height: 55%;
  padding: 14% 1.25rem 1.9rem;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.35) 20%,
    hsl(0, 0%, 0%) 100%
  );
  transform: translateY(62%);
  transition: transform 500ms ease-out;
  transition-delay: 500ms;
}

.quote-card__content-container {
  --flow-space: 1.1rem;
}

/* ARTIST NAME – ALWAYS VISIBLE */
.quote-card__title {
  position: relative;
  width: fit-content;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}

/* GOLD UNDERLINE */
.quote-card__title::after {
  content: "";
  position: absolute;
  height: 4px;
  width: calc(100% + 1.25rem);
  bottom: -10px;
  left: -1.25rem;
  background-color: var(--brand-color);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 1000ms ease-in, transform 500ms ease-out;
  transition-delay: 500ms;
}

/* QUOTE TEXT – HIDDEN INITIALLY */
.quote-card__text {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--white);
  opacity: 0;
  transition: transform 500ms ease-out, opacity 500ms ease-out;
}

/* HOVER / FOCUS EFFECTS – EXACT CODEPEN LOGIC */
@media (any-hover: hover) and (any-pointer: fine) {
  .quote-card:hover,
  .quote-card:focus-within {
    transform: scale(1.04);
    transition: transform 500ms ease-in;
  }

  .quote-card:hover .quote-card__content,
  .quote-card:focus-within .quote-card__content {
    transform: translateY(0);
    transition: transform 500ms ease-in;
  }

  .quote-card:focus-within .quote-card__content {
    transition-duration: 0ms;
  }

  .quote-card:hover .quote-card__background,
  .quote-card:focus-within .quote-card__background {
    transform: scale(1.3);
  }

  .quote-card:hover .quote-card__text,
  .quote-card:focus-within .quote-card__text {
    opacity: 1;
    transition: opacity 500ms ease-in;
    transition-delay: 1000ms;
  }

  .quote-card:hover .quote-card__title::after,
  .quote-card:focus-within .quote-card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 500ms;
  }
}

/* RESPONSIVE: stack nicely on mobile */
@media (max-width: 768px) {
  .artist-quotes {
    padding: 50px 6% 70px;
  }
  .quote-card {
    max-width: 100%;
    height: 320px;
  }
}
/* ========== TWO-COLUMN QUOTE + CARDS SECTION ========== */

.artist-quotes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 90px 8%;
  background: #050505;
}

/* LEFT COLUMN */
.artist-quotes__left {
  flex: 1;
  max-width: 420px;
  text-align: left;
}

.artist-quotes__heading {
  font-size: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 8px;
}

.artist-quotes__quote {
  font-size: 18px;
  color: #f0f0f0;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}

.artist-quotes__author {
  color: #b0b0b0;
  font-size: 15px;
  display: block;
}

/* RIGHT SIDE (3 Cards) */
.artist-quotes__right {
  flex: 2;
}

.artist-quotes__grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .artist-quotes {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
  }
  
  .artist-quotes__left {
    text-align: center;
    max-width: 100%;
  }

  .artist-quotes__grid {
    justify-content: center;
  }
}
.search-svg {
  pointer-events: none; /* 🔑 allows clicking input */
}

.woo-search-form {
  position: relative;
  z-index: 3;
}
.search-results {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  display: none;
  max-height: 380px;
  overflow-y: auto;
  z-index: 9999;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.3s;
}

.search-item:hover {
  background: rgba(212,175,55,0.12);
}

.search-item img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
}

.search-item h4 {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.search-item span {
  font-size: 13px;
  color: #d4af37;
}

.search-item.no-result {
  padding: 14px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* 🔑 SEARCH ANIMATION FIX */
.search-button {
  position: relative;
  width: 220px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.search-line {
  fill: none;
  stroke-dasharray: 336px 336px;
}

.search-line--outer {
  stroke: #EBC445;
  stroke-width: 8;
  animation: search-outer 6s linear infinite;
}

.search-line--inner {
  stroke: #D9823B;
  stroke-width: 4;
  animation: search-inner 5s linear infinite;
}

.search-input {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 60%;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

/* ============================= */
/* FIX: WooCommerce Product Page */
/* ============================= */

.single-product,
.single-product body,
.single-product .site,
.single-product .content-area,
.single-product .woocommerce,
.single-product .product {
  background: #ffffff !important;
  color: #111 !important;
}

/* Product title */
.single-product .product_title {
  color: #111 !important;
}

/* Price */
.single-product .price,
.single-product .woocommerce-Price-amount {
  color: #d4af37 !important;
  font-weight: 700;
}

/* Product description */
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-Tabs-panel {
  color: #333 !important;
}

/* Add to cart button */
.single-product .single_add_to_cart_button {
  background: #d4af37 !important;
  color: #000 !important;
  border-radius: 30px;
  font-weight: 600;
}

/* Quantity box */
.single-product input.qty {
  color: #111 !important;
}

/* Ensure images show properly */
.single-product img {
  background: transparent !important;
}

/* WooCommerce pages MUST stay light */
.woocommerce-wrapper {
  background: #ffffff;
  color: #111;
  padding: 120px 8%;
  min-height: 100vh;
}

/* Default pages (your dark design) */
.default-wrapper {
  background: #0f0f0f;
  padding: 140px 8%;
  min-height: 100vh;
  color: #fff;
}
.single-product-wrapper {
  background: #f8f8f8;
  padding: 80px 8%;
}

.single-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.product-image img {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 20px;
}

.product-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-price {
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 25px;
}

.product-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.single_add_to_cart_button {
  background: #d4af37;
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
}

.single_add_to_cart_button:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 900px) {
  .single-product-inner {
    grid-template-columns: 1fr;
  }
}




















