/* =========================================
   DEXO.PK — Premium Luxury Decor Store
   style.css — v2.0 Premium
   ========================================= */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&family=Jost:wght@300;400;500;600&display=swap");

/* ── CSS Variables ── */
:root {
  --bg: #f8f5f0;
  --bg-alt: #f2ede6;
  --gold: #c8a96a;
  --gold-dark: #a8874a;
  --gold-light: #e0c98a;
  --gold-glow: rgba(200, 169, 106, 0.25);
  --text: #2a2018;
  --text-muted: #7a6a52;
  --border: #e0d5c5;
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(200, 169, 106, 0.12);
  --shadow-lg: 0 20px 60px rgba(200, 169, 106, 0.2);
  --shadow-xl: 0 30px 80px rgba(42, 32, 24, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain texture overlay for luxury feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  border-radius: 3px;
}

/* ── Gold Gradient Helpers ── */
.gold-grad {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
}
.gold-text {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
  color: var(--white) !important;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow:
    0 4px 24px rgba(200, 169, 106, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 60%
  );
  border-radius: inherit;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: 0.7s ease;
  transform: skewX(-15deg);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px rgba(200, 169, 106, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
}
.btn-gold:hover::after {
  left: 150%;
}
.btn-gold:active {
  transform: translateY(-1px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: var(--gold) !important;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}
.btn-outline-gold:hover::before {
  opacity: 1;
}
.btn-outline-gold:hover {
  color: var(--white) !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 169, 106, 0.4);
}
.btn-outline-gold > * {
  position: relative;
  z-index: 1;
}

/* ── Navbar ── */
.navbar {
  background: rgba(248, 245, 240, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(224, 213, 197, 0.6);
  padding: 18px 0;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  padding: 11px 0;
  background: rgba(248, 245, 240, 0.96) !important;
  box-shadow: 0 4px 40px rgba(200, 169, 106, 0.14);
  border-bottom-color: rgba(200, 169, 106, 0.25);
}
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}
.navbar-brand:hover {
  opacity: 0.85;
}
.navbar-brand span {
  font-style: italic;
}
.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 6px 16px !important;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}
.nav-link:hover {
  color: var(--gold) !important;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.cart-icon:hover {
  color: var(--gold);
  transform: scale(1.1);
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(200, 169, 106, 0.5);
  animation: badgePop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes badgePop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(145deg, #f8f5f0 0%, #f4eddf 40%, #ece0cc 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated mesh background */
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 106, 0.14) 0%,
    rgba(200, 169, 106, 0.04) 50%,
    transparent 70%
  );
  animation: floatBlob 9s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -8%;
  width: 580px;
  height: 580px;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 106, 0.1) 0%,
    transparent 65%
  );
  animation: floatBlob 12s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

/* Floating decorative lines */
.hero-line {
  position: absolute;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 169, 106, 0.2),
    transparent
  );
  height: 1px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border: 1px solid rgba(200, 169, 106, 0.5);
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  background: rgba(200, 169, 106, 0.06);
  backdrop-filter: blur(6px);
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.95;
}
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-img:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 54px;
}
.hero-stat {
  text-align: center;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border),
    transparent
  );
}
.hero-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-decoration {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 540px;
  border-radius: 60% 40% 55% 45% / 42% 58% 42% 58%;
  background: linear-gradient(
    135deg,
    rgba(200, 169, 106, 0.07),
    rgba(200, 169, 106, 0.02)
  );
  border: 1px solid rgba(200, 169, 106, 0.18);
  z-index: 0;
  animation: morphing 10s ease-in-out infinite;
}
@keyframes morphing {
  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 42% 58% 42% 58%;
  }
  25% {
    border-radius: 50% 50% 60% 40% / 50% 40% 60% 50%;
  }
  50% {
    border-radius: 40% 60% 45% 55% / 60% 42% 58% 40%;
  }
  75% {
    border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  }
}

/* Secondary decorative ring */
.hero-ring {
  position: absolute;
  right: 6%;
  top: 15%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.15);
  animation: spinSlow 20s linear infinite;
}
.hero-ring::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 169, 106, 0.1);
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── Section Styles ── */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 64px;
}
.overline {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-header h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 500px;
  font-weight: 300;
}
.section-divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  margin: 16px 0;
  border-radius: 2px;
}
.section-divider.center {
  margin: 16px auto;
}

/* ── Category Cards ── */
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s ease;
  aspect-ratio: 1;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 32, 24, 0.72) 0%,
    rgba(42, 32, 24, 0.08) 55%,
    transparent 100%
  );
  z-index: 1;
  transition: 0.5s ease;
}
.cat-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(200, 169, 106, 0.82) 0%,
    rgba(42, 32, 24, 0.15) 65%,
    transparent 100%
  );
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.cat-card:hover img {
  transform: scale(1.1);
}
.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
  color: white;
}
.cat-card-body h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cat-card-body span {
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 1px;
}
.cat-coming-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(200, 169, 106, 0.92);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(6px);
}

/* ── Product Cards ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 169, 106, 0.35);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

/* Shimmer overlay on hover */
.product-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  transform: translateX(-100%) translateY(-100%);
  transition: 0s;
}
.product-card:hover .product-img-wrap::after {
  transform: translateX(100%) translateY(100%);
  transition: 0.7s ease;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(200, 169, 106, 0.4);
}
.product-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(14px);
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(224, 213, 197, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.action-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: scale(1.1);
}

.product-body {
  padding: 22px;
}
.product-cat {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  font-weight: 600;
}
.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.35;
}
.product-title a:hover {
  color: var(--gold);
}
.product-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
}
.product-price .old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
.product-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 12px;
}
.product-stars span {
  color: var(--text-muted);
  font-size: 11px;
  margin-left: 4px;
}

.btn-add-cart {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-add-cart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  opacity: 0;
  transition: var(--transition);
}
.btn-add-cart:hover::before {
  opacity: 1;
}
.btn-add-cart:hover {
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.45);
  transform: translateY(-1px);
}
.btn-add-cart span {
  position: relative;
  z-index: 1;
}

/* ── Newsletter ── */
.newsletter {
  background: linear-gradient(
    145deg,
    #231a10 0%,
    #2e2218 40%,
    #3d2f1e 70%,
    #4a3828 100%
  );
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 106, 0.14) 0%,
    transparent 65%
  );
  animation: floatBlob 14s ease-in-out infinite;
}
.newsletter::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 106, 0.08) 0%,
    transparent 60%
  );
  animation: floatBlob 10s ease-in-out infinite reverse;
}
.newsletter h2 {
  color: white;
  font-size: 40px;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  border: 1.5px solid rgba(200, 169, 106, 0.35);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}
.newsletter-form:focus-within {
  border-color: rgba(200, 169, 106, 0.7);
}
.newsletter-form input {
  flex: 1;
  padding: 15px 24px;
  background: transparent;
  border: none;
  color: white;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form button {
  padding: 15px 28px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  border: none;
  color: white;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  opacity: 0.88;
}

/* ── Footer ── */
footer {
  background: #1a1209;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.5;
  margin-bottom: 24px;
}
footer h6 {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
footer ul li {
  margin-bottom: 12px;
}
footer ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: inline-block;
}
footer ul li a:hover {
  color: var(--gold);
  padding-left: 7px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 54px;
  padding-top: 26px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 169, 106, 0.7);
  font-size: 14px;
  transition: var(--transition);
}
.social-links a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.4);
}

/* ── Page Banner ── */
.page-banner {
  background: linear-gradient(145deg, #f0e8d8, var(--bg-alt), #e8dcc8);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: 50%;
}
.page-banner::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(200, 169, 106, 0.1);
  border-radius: 50%;
  animation: spinSlow 25s linear infinite reverse;
}
.page-banner h1 {
  font-size: 42px;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item {
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb-item a {
  color: var(--gold);
}
.breadcrumb-item.active {
  color: var(--text-muted);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--border);
}

/* ── Filters Sidebar ── */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 80px;
}
.filter-title {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.filter-group {
  margin-bottom: 28px;
}
.filter-group h6 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-check:hover {
  color: var(--text);
}
.filter-check input[type="checkbox"] {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}
.price-vals {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Sort Bar ── */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 22px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
}
.sort-bar select {
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.sort-bar select:focus {
  border-color: var(--gold);
}
.results-count {
  font-size: 13px;
  color: var(--text-muted);
}
.results-count span {
  font-weight: 600;
  color: var(--text);
}

/* ── Product Detail ── */
.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 1;
  position: relative;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: 9px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-alt);
}
.product-thumb.active {
  border-color: var(--gold);
}
.product-thumb:hover {
  border-color: var(--gold-light);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-title {
  font-size: 36px;
  color: var(--text);
  margin-bottom: 12px;
}
.product-detail-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.product-detail-price .old-price {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 12px;
  font-weight: 400;
}
.product-detail-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 28px;
  font-weight: 300;
}
.qty-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 24px;
}
.qty-btn {
  width: 46px;
  height: 46px;
  background: var(--bg-alt);
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--gold);
  color: white;
}
.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: white;
  outline: none;
  height: 46px;
}

/* ── Cart ── */
.cart-table {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}
.cart-table th {
  background: var(--bg-alt);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.cart-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-table tr:last-child td {
  border-bottom: none;
}
.cart-table tr {
  transition: background 0.2s ease;
}
.cart-table tbody tr:hover {
  background: rgba(200, 169, 106, 0.025);
}
.cart-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg-alt);
}
.cart-product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.cart-product-cat {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.btn-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 17px;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px;
  border-radius: 4px;
}
.btn-remove:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.07);
}

.cart-summary {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  position: sticky;
  top: 85px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.cart-summary h4 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--text);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
}
.summary-row.total {
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}

/* ── Checkout ── */
.checkout-section {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease;
}
.checkout-section:focus-within {
  border-color: rgba(200, 169, 106, 0.35);
}
.checkout-section h5 {
  font-size: 20px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.form-control,
.form-select {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.1);
  background: white;
  outline: none;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

/* ── About ── */
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid white;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 38px 26px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 169, 106, 0.3);
}
.value-icon {
  font-size: 36px;
  margin-bottom: 18px;
}
.value-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}

/* ── Contact ── */
.contact-card {
  text-align: center;
  padding: 38px 26px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 169, 106, 0.3);
}
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(200, 169, 106, 0.12),
    rgba(200, 169, 106, 0.04)
  );
  border: 1px solid rgba(200, 169, 106, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.4);
}

/* ── Auth Forms ── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #f8f5f0, #f0e8d8);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.auth-wrap::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 106, 0.1) 0%,
    transparent 65%
  );
  animation: floatBlob 14s ease-in-out infinite;
}
.auth-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 42px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(224, 213, 197, 0.6);
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border-radius: 0 0 2px 2px;
}
.auth-logo {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 2px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.auth-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}
.auth-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}
.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border);
}
.auth-divider span {
  position: relative;
  background: white;
  padding: 0 16px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 500;
}
.input-icon-wrap {
  position: relative;
}
.input-icon-wrap .form-control {
  padding-left: 44px;
}
.input-icon-wrap .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}
.reveal-delay-3 {
  transition-delay: 0.32s;
}
.reveal-delay-4 {
  transition-delay: 0.44s;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Toast — improved with progress bar ── */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast-msg {
  background: white;
  border-radius: 12px;
  padding: 14px 20px 18px;
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 340px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 213, 197, 0.5);
  animation: toastIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.toast-msg.removing {
  animation: toastOut 0.3s ease forwards;
}
.toast-msg i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.toast-msg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  border-radius: 0 0 0 12px;
  animation: toastProgress 3s linear forwards;
}
@keyframes toastIn {
  from {
    transform: translateX(110%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes toastOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(110%);
    opacity: 0;
  }
}
@keyframes toastProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* ── Empty Cart ── */
.empty-cart {
  text-align: center;
  padding: 90px 0;
}
.empty-cart i {
  font-size: 64px;
  color: var(--border);
  margin-bottom: 22px;
  display: block;
}
.empty-cart h4 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.empty-cart p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 30px;
}

/* ── Map embed ── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ── Pagination ── */
.pagination .page-link {
  font-size: 13px;
  font-family: "Jost", sans-serif;
  color: var(--text);
  border-color: var(--border);
  border-radius: 8px !important;
  margin: 0 3px;
  transition: var(--transition);
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(200, 169, 106, 0.4);
}

/* ── Misc ── */
.gold-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  margin: 12px 0;
  border-radius: 2px;
}
.text-gold {
  color: var(--gold) !important;
}
.fw-600 {
  font-weight: 600;
}

/* ── Payment options (checkout) ── */
.payment-option {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}
.payment-option:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.025);
}
.payment-option.selected {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.05);
  box-shadow: 0 0 0 2px rgba(200, 169, 106, 0.15);
}
.payment-option input {
  accent-color: var(--gold);
}

/* ── Page load animation ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-enter {
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── Floating back-to-top ── */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 6px 24px rgba(200, 169, 106, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 998;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(200, 169, 106, 0.6);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .hero {
    min-height: 80vh;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-decoration,
  .hero-ring {
    display: none;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .newsletter-form button {
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .auth-card {
    padding: 32px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .toast-container {
    bottom: 20px;
    right: 16px;
    left: 16px;
  }
  .toast-msg {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  #back-to-top {
    left: 16px;
  }
}
