/*
Theme Name: Amelle Theme 2
Author: Hamza Dadaaki
Version: 2.1 (background all not Fixed)
Description: Converted from static HTML templates to WordPress theme.
*/

/* ==========================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================== */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    background: #000;
    color: rgba(255,255,255,.85);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ==========================================================
   AMELLE FRONT PAGE SPECIFIC STYLES
   ========================================================== */
#amelle-front-page {
  --amelle-bg: #060606;
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-gold: #d6b36a;
  --amelle-gold-2: #b08d3f;
  --amelle-border: rgba(255,255,255,.10);
  
  background: radial-gradient(1200px 600px at 20% -10%, rgba(214,179,106,.16), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(214,179,106,.10), transparent 55%),
              var(--amelle-bg);
  color: var(--amelle-text);
  overflow-x: hidden;
  width: 100%;
}

/* Section Spacing */
#amelle-front-page section {
  padding: clamp(70px, 7vw, 110px) 0;
  position: relative;
}

#amelle-front-page .amelle-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Typography */
#amelle-front-page .amelle-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-front-page .amelle-title {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 650;
  letter-spacing: .4px;
}
#amelle-front-page .amelle-subtitle {
  margin: 0;
  max-width: 64ch;
  color: var(--amelle-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Buttons */
#amelle-front-page .amelle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 550;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  transition: all .25s ease;
  box-shadow: 0 12px 30px rgba(214,179,106,.25);
  border: 1px solid rgba(214,179,106,.25);
}
#amelle-front-page .amelle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(214,179,106,.28);
  filter: brightness(1.05);
}
#amelle-front-page .amelle-btn.is-ghost {
  background: transparent;
  color: var(--amelle-text);
  border: 1px solid var(--amelle-border);
  box-shadow: none;
}
#amelle-front-page .amelle-btn.is-ghost:hover {
  border-color: var(--amelle-gold);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
#amelle-hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 100vh;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 0 !important;
  background: #000;
  transform: translateZ(0);
  border-radius: 0 0 36px 36px;
  isolation: isolate;
}

#amelle-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 140px;
  z-index: 4;
  pointer-events:none;
  border-radius: 0 0 36px 36px;
  background:
    radial-gradient(70% 80% at 50% 100%,
      rgba(214,179,106,0.18) 0%,
      rgba(214,179,106,0.06) 35%,
      rgba(0,0,0,0) 70%),
    linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.55) 45%,
      rgba(0,0,0,0.92) 85%,
      #000 100%);
}

.amelle-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.8s ease;
  z-index: 1;
}
.amelle-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.amelle-hero-slide video,
.amelle-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amelle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 3;
  border-radius: 0 0 36px 36px;
}

.amelle-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 4;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Hero Nav (DESKTOP DEFAULT) */
.amelle-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.3);
  color: #fff;
  z-index: 5;
  cursor: pointer;
}
.amelle-prev { left: 30px; }
.amelle-next { right: 30px; }

/* Dots */
.amelle-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.amelle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.amelle-dot.active {
  background: var(--amelle-gold);
  transform: scale(1.2);
}

/* ==========================================================
   ✅ MOBILE ONLY: keep dots, remove arrows
   ========================================================== */
@media (max-width: 768px){

  /* ❌ hide arrows on mobile */
  .amelle-arrow{
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* ✅ keep dots and reposition them nicely */
  .amelle-dots{
    display: flex !important;
    bottom: 78px; /* perfect spot above curve + WhatsApp */
    gap: 10px;
  }

  .amelle-dot{
    width: 9px;
    height: 9px;
  }
}


/* ==========================================================
   LATEST PRODUCTS (Fixed Slider)
   ========================================================== */
#amelle-latest {
  background: transparent;
}
.amelle-products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.amelle-nav-group {
    display: flex;
    gap: 10px;
}
.amelle-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--amelle-border);
    background: rgba(255,255,255,0.05);
    color: var(--amelle-gold);
    cursor: pointer;
    transition: 0.3s;
}
.amelle-nav-arrow:hover {
    background: var(--amelle-gold);
    color: #000;
}

/* Track */
.amelle-products-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.amelle-products-scroll::-webkit-scrollbar { display: none; }

/* Product Card */
.amelle-product {
  flex: 0 0 300px; /* Fixed width for smooth snap */
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--amelle-border);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.amelle-product:hover {
  transform: translateY(-8px);
  border-color: rgba(214,179,106,0.4);
}
.amelle-product-media {
  height: 320px;
  overflow: hidden;
}
.amelle-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.amelle-product:hover .amelle-product-media img {
  transform: scale(1.1);
}
.amelle-product-body {
  padding: 20px;
}
.amelle-product-title {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
}
.amelle-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.amelle-price {
  color: var(--amelle-gold);
  font-weight: 600;
}
.amelle-pill {
  font-size: 11px;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #fff;
}

/* ==========================================================
   COLLECTIONS (Front Page) — aligned with .amelle-wrap
   ========================================================== */

#amelle-front-page #amelle-collections{
  background: transparent;
}

/* subtle gold glow like other sections, without breaking alignment */
#amelle-front-page #amelle-collections::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(650px 260px at 18% 25%, rgba(214,179,106,.10), transparent 60%),
    radial-gradient(600px 240px at 85% 70%, rgba(214,179,106,.06), transparent 62%);
  opacity: .9;
}

/* cards grid */
#amelle-front-page #amelle-collections .amelle-cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
  margin-top:40px;
}

/* card */
#amelle-front-page #amelle-collections .amelle-card{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--amelle-border);
  text-decoration:none;
  display:block;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

#amelle-front-page #amelle-collections .amelle-card:hover{
  transform: translateY(-6px);
  border-color: rgba(214,179,106,.34);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

/* bg image */
#amelle-front-page #amelle-collections .amelle-card-bg{
  position:absolute;
  inset:0;
  display:block;
  background-size:cover;
  background-position:center;
  opacity:.78;
  transition: transform .6s ease, opacity .6s ease;
}

#amelle-front-page #amelle-collections .amelle-card:hover .amelle-card-bg{
  opacity:.60;
  transform: scale(1.06);
}

/* overlay */
#amelle-front-page #amelle-collections .amelle-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.35) 55%, rgba(0,0,0,.10));
  z-index:1;
}

/* content pinned bottom */
#amelle-front-page #amelle-collections .amelle-card-content{
  position:absolute;
  inset:0;
  z-index:2;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

#amelle-front-page #amelle-collections .amelle-card-title{
  display:block;
  color:#fff;
  font-size:22px;
  font-weight:650;
  margin:0 0 8px;
  letter-spacing:.2px;
}

#amelle-front-page #amelle-collections .amelle-card-desc{
  display:block;
  color: rgba(255,255,255,.72);
  font-size:13.5px;
  line-height:1.5;
  margin:0 0 16px;
  max-width:95%;
}

#amelle-front-page #amelle-collections .amelle-card-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(214,179,106,.35);
  color: var(--amelle-gold);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  background: rgba(0,0,0,.18);
}

#amelle-front-page #amelle-collections .amelle-card:hover .amelle-card-cta{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.12);
}

/* badge */
#amelle-front-page #amelle-collections .amelle-card-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  padding:7px 11px;
  border-radius:999px;
  background: rgba(214,179,106,.16);
  border:1px solid rgba(214,179,106,.35);
  color: var(--amelle-gold);
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* responsive */
@media (max-width: 1100px){
  #amelle-front-page #amelle-collections .amelle-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  #amelle-front-page #amelle-collections .amelle-cards{
    grid-template-columns:1fr;
  }
  #amelle-front-page #amelle-collections .amelle-card{
    height:300px;
    border-radius:20px;
  }
  #amelle-front-page #amelle-collections .amelle-card-content{
    padding:20px;
  }
}



/* ==========================================================
   TEAM (Fixed Grid & Icons)
   ========================================================== */
.amelle-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.amelle-team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--amelle-border);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: .3s;
}
.amelle-team-card:hover { border-color: var(--amelle-gold); transform: translateY(-5px); }
.amelle-team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 2px solid rgba(214,179,106,0.3);
}
.amelle-team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.amelle-team-name { color: #fff; font-size: 18px; margin: 10px 0 5px; line-height: 1.2; }
.amelle-team-role { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 15px; }
.amelle-team-social { display: flex; justify-content: center; gap: 10px; }
.amelle-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s;
}
.amelle-social:hover { background: var(--amelle-gold); color: #000; }

/* ==========================================================
   TEAM (Mobile layout like About page: 2 cards per row)
   ========================================================== */
@media (max-width: 768px) {
  .amelle-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .amelle-team-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .amelle-team-avatar {
    width: 78px;
    height: 78px;
    margin: 0 auto 12px;
  }

  .amelle-team-name {
    font-size: 15px;
    margin: 8px 0 4px;
  }

  .amelle-team-role {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .amelle-social {
    width: 30px;
    height: 30px;
  }
}

/* Extra-small phones: still 2 per row but tighter */
@media (max-width: 380px) {
  .amelle-team-grid {
    gap: 12px;
  }

  .amelle-team-card {
    padding: 16px 12px;
  }

  .amelle-team-avatar {
    width: 72px;
    height: 72px;
  }
}
/* ==========================================================
   TESTIMONIALS (Fixed Profile Pic & Layout)
   ========================================================== */
.amelle-test-shell {
  position: relative;
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--amelle-border);
  border-radius: 30px;
  margin-top: 40px;
  overflow: hidden;
}
.amelle-test-track {
  height: 300px;
  position: relative;
}
.amelle-test-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 80px; /* Space for arrows */
  opacity: 0;
  transform: translateX(20px);
  transition: .6s;
}
.amelle-test-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}
.amelle-test-quote {
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.amelle-test-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.amelle-test-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.amelle-test-user b { display: block; color: var(--amelle-gold); }
.amelle-test-user span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* Testimonial Nav */
.amelle-test-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: .3s;
}
.amelle-test-arrow:hover { background: var(--amelle-gold); color: #000; }
.amelle-test-prev { left: 20px; }
.amelle-test-next { right: 20px; }

.amelle-test-dots {
  position: absolute;
  bottom: 20px;
  left: 0; 
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.amelle-test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
}
.amelle-test-dot.is-active { background: var(--amelle-gold); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  .amelle-products-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .amelle-test-slide { padding: 30px; }
  .amelle-test-arrow { display: none; } /* Hide arrows on mobile, use swipe/dots */
  .amelle-content h1 { font-size: 32px; }
}

/* ===========================
   OUR PARTNERS SECTION
   =========================== */

#amelle-partners {
  background: transparent;
}

#amelle-partners .amelle-kicker {
  text-align: left;
  margin-left: 0;
}

#amelle-partners .amelle-title {
  text-align: left;
  margin-left: 0;
}

#amelle-partners .amelle-subtitle {
  text-align: left;
  margin-left: 0;
}

/* Partners Container */
.amelle-partners-container {
  margin: 60px 0;
  overflow: hidden;
  position: relative;
}

.amelle-partners-track {
  display: flex;
  gap: 40px;
  animation: scroll-partners 30s linear infinite;
  padding: 20px 0;
  width: fit-content;
  align-items: center;
}

.amelle-partner-logo {
  flex: 0 0 auto;
  min-width: 240px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(214, 179, 106, 0.4);
  border-radius: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.amelle-partner-logo:hover {
  background: rgba(214, 179, 106, 0.08);
  border-color: rgba(214, 179, 106, 0.7);
  transform: scale(1.05);
}

.amelle-partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.amelle-partner-logo:hover img {
  filter: grayscale(0%);
}

/* Infinite Scroll Animation - Smooth loop */
@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 3 - 40px * 3));
  }
}

/* CTA - Simple text & button */
.amelle-partners-footer {
  text-align: center;
  margin-top: 20px;
}

.amelle-partners-footer p {
  font-size: 18px;
  color: var(--amelle-text);
  margin: 0 0 25px;
  font-weight: 400;
}

.amelle-partners-footer .amelle-btn {
  padding: 12px 32px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .amelle-partners-container {
    margin: 40px 0;
  }

  .amelle-partner-logo {
    min-width: 180px;
    height: 130px;
    padding: 20px;
  }

  .amelle-partners-track {
    gap: 25px;
  }

  @keyframes scroll-partners {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-180px * 3 - 25px * 3));
    }
  }

  .amelle-partners-footer {
    margin-top: 15px;
  }

  .amelle-partners-footer p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .amelle-partner-logo {
    min-width: 130px;
    height: 100px;
    padding: 15px;
    border-radius: 16px;
  }

  .amelle-partners-track {
    gap: 15px;
  }

  @keyframes scroll-partners {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-130px * 3 - 15px * 3));
    }
  }

  .amelle-partners-footer {
    margin-top: 15px;
  }

  .amelle-partners-footer p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .amelle-partners-footer .amelle-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}

/* =========================================
   FRONT PAGE – REDUCE SPACE BETWEEN SECTIONS
   Paste at END of style.css
   ========================================= */

#amelle-front-page section{
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* Reduce the specific huge gap after Latest Products */
#amelle-front-page #amelle-products{
  padding-bottom: 40px !important;
}

/* Bring Categories closer */
#amelle-front-page #amelle-collections{
  padding-top: 45px !important;
}

/* Reduce space between Categories and Our Team */
#amelle-front-page #amelle-collections{
  padding-bottom: 45px !important;
}
#amelle-front-page #amelle-team{
  padding-top: 55px !important;
}

/* Optional: reduce big title spacing inside each section */
#amelle-front-page .amelle-title{
  margin-bottom: 22px !important;
}
#amelle-front-page .amelle-subtitle{
  margin-bottom: 28px !important;
}

/* ==========================================================
   AMELLE SHOP PAGE (Template: page-amelle-shop.php)
   Scope: #amelle-shop-page
   Lux / dark / gold, smooth animations + working UI
   ========================================================== */

#amelle-shop-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-shadow: 0 18px 45px rgba(0,0,0,.45);
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 22px;

  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);

  color: var(--amelle-text);
  overflow-x: hidden;
  width: 100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-shop-page .amelle-wrap{
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
#amelle-shop-page .amelle-shop-header{
  text-align: left;
  margin-bottom: clamp(26px, 3vw, 38px);
  max-width: 78ch;
}
#amelle-shop-page .amelle-kicker{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-shop-page .amelle-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 650;
  letter-spacing: .4px;
}
#amelle-shop-page .amelle-subtitle{
  margin: 0;
  color: var(--amelle-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Layout */
#amelle-shop-page .amelle-shop-layout{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
}

/* Filters panel (desktop default) */
#amelle-shop-page .amelle-shop-filters{
  position: sticky;
  top: 22px;
  align-self: start;
  border-radius: var(--amelle-radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--amelle-border);
  box-shadow: var(--amelle-soft-shadow);
  overflow: hidden;
  padding: 18px;
}

#amelle-shop-page .amelle-filter-block{
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.06);
}
#amelle-shop-page .amelle-filter-block + .amelle-filter-block{ margin-top: 14px; }

#amelle-shop-page .amelle-filter-title{
  font-weight: 650;
  letter-spacing: .3px;
  color: rgba(255,255,255,.92);
  margin: 0 0 12px;
  font-size: 14px;
  position: relative;
  padding-left: 10px;
}
#amelle-shop-page .amelle-filter-title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: .9;
}

#amelle-shop-page .amelle-filter-list{
  display: grid;
  gap: 10px;
  max-height: 240px;
  overflow: auto;
  padding-right: 4px;
}
#amelle-shop-page .amelle-filter-list::-webkit-scrollbar{ width: 6px; }
#amelle-shop-page .amelle-filter-list::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.25);
  border-radius: 8px;
}

/* checkbox/radio */
#amelle-shop-page .amelle-check,
#amelle-shop-page .amelle-radio{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
#amelle-shop-page .amelle-check input,
#amelle-shop-page .amelle-radio input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#amelle-shop-page .amelle-check-ui{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--amelle-border-2);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
  position: relative;
  transition: .25s ease;
}
#amelle-shop-page .amelle-check input:checked + .amelle-check-ui{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.16);
}
#amelle-shop-page .amelle-check-ui::after{
  content:"";
  position:absolute;
  inset: 3px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: 0;
  transform: scale(.85);
  transition: .25s ease;
}
#amelle-shop-page .amelle-check input:checked + .amelle-check-ui::after{
  opacity: 1;
  transform: scale(1);
}

#amelle-shop-page .amelle-radio-ui{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border-2);
  background: rgba(255,255,255,.04);
  position: relative;
  transition: .25s ease;
}
#amelle-shop-page .amelle-radio-ui::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%) scale(.85);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: 0;
  transition: .25s ease;
}
#amelle-shop-page .amelle-radio input:checked + .amelle-radio-ui{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.12);
}
#amelle-shop-page .amelle-radio input:checked + .amelle-radio-ui::after{
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

#amelle-shop-page .amelle-check-text{ color: rgba(255,255,255,.85); }

#amelle-shop-page .amelle-hint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* Select */
#amelle-shop-page .amelle-select{ position: relative; }
#amelle-shop-page .amelle-select select{
  width: 100%;
  padding: 12px 42px 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  outline: none;
  transition: .25s ease;
  appearance: none;
}
#amelle-shop-page .amelle-select select:focus{
  border-color: rgba(214,179,106,.55);
  box-shadow: 0 0 0 4px rgba(214,179,106,.10);
}
#amelle-shop-page .amelle-select-icon{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
  pointer-events: none;
}

/* Buttons */
#amelle-shop-page .amelle-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  box-shadow: 0 14px 32px rgba(214,179,106,.20);
  border: 1px solid rgba(214,179,106,.25);
  cursor: pointer;
}
#amelle-shop-page .amelle-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 44px rgba(214,179,106,.26);
}
#amelle-shop-page .amelle-btn:active{
  transform: translateY(0px) scale(.99);
}
#amelle-shop-page .amelle-btn.is-ghost{
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1px solid var(--amelle-border);
  box-shadow: none;
}
#amelle-shop-page .amelle-btn.is-ghost:hover{
  border-color: rgba(214,179,106,.65);
  background: rgba(214,179,106,.08);
}
#amelle-shop-page .amelle-filter-clear{ margin-top: 12px; }

/* Icon button (reload + mobile filters) */
#amelle-shop-page .amelle-iconbtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
#amelle-shop-page .amelle-iconbtn:hover{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.10);
  transform: translateY(-2px);
}

/* Topbar */
#amelle-shop-page .amelle-shop-topbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--amelle-soft-shadow);
  margin-bottom: 16px;
}
#amelle-shop-page .amelle-results{
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

/* Products grid + card */
#amelle-shop-page .amelle-shop-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#amelle-shop-page .amelle-pcard{
  display:block;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--amelle-border);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transform: translateY(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  position: relative;
}
#amelle-shop-page .amelle-pcard:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.45);
  box-shadow: 0 22px 50px rgba(0,0,0,.50);
}

#amelle-shop-page .amelle-pmedia{
  position: relative;
  height: 320px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
#amelle-shop-page .amelle-pmedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-shop-page .amelle-pcard:hover .amelle-pmedia img{
  transform: scale(1.10);
  filter: contrast(1.04);
}
#amelle-shop-page .amelle-pimg-fallback{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(800px 320px at 20% 10%, rgba(214,179,106,.14), transparent 55%),
    rgba(255,255,255,.03);
}
#amelle-shop-page .amelle-pglow{
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), transparent 55%);
  opacity: .95;
  transition: opacity .35s ease;
}
#amelle-shop-page .amelle-pcard:hover .amelle-pglow{ opacity: 1; }

#amelle-shop-page .amelle-pbody{ padding: 18px 18px 16px; }
#amelle-shop-page .amelle-ptitle{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 650;
  color: rgba(255,255,255,.95);
  letter-spacing: .2px;
}
#amelle-shop-page .amelle-pmeta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
#amelle-shop-page .amelle-price{
  color: var(--amelle-gold);
  font-weight: 700;
  letter-spacing: .2px;
}
#amelle-shop-page .amelle-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}

#amelle-shop-page .amelle-pcta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-shop-page .amelle-cta-btn{
  font-weight: 650;
  color: rgba(255,255,255,.88);
  transition: color .25s ease, transform .25s ease;
}
#amelle-shop-page .amelle-cta-arrow{
  color: rgba(214,179,106,.95);
  transition: transform .25s ease, opacity .25s ease;
  opacity: .9;
}
#amelle-shop-page .amelle-pcard:hover .amelle-cta-btn{
  color: rgba(214,179,106,.95);
  transform: translateX(2px);
}
#amelle-shop-page .amelle-pcard:hover .amelle-cta-arrow{
  transform: translateX(4px);
  opacity: 1;
}

#amelle-shop-page .amelle-pcard:focus-visible,
#amelle-shop-page .amelle-btn:focus-visible,
#amelle-shop-page .amelle-iconbtn:focus-visible,
#amelle-shop-page select:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(214,179,106,.14);
  border-color: rgba(214,179,106,.55);
}

/* Empty state */
#amelle-shop-page .amelle-empty{ margin-top: 18px; }
#amelle-shop-page .amelle-empty-card{
  border-radius: 26px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--amelle-soft-shadow);
  padding: 26px;
  text-align: center;
}
#amelle-shop-page .amelle-empty-card h3{
  margin: 0 0 8px;
  color: rgba(255,255,255,.94);
}
#amelle-shop-page .amelle-empty-card p{
  margin: 0 0 18px;
  color: rgba(255,255,255,.65);
}

/* Reveal animations */
#amelle-shop-page .amelle-reveal,
#amelle-shop-page .amelle-reveal-card{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-shop-page .amelle-reveal.is-inview,
#amelle-shop-page .amelle-reveal-card.is-inview{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive (desktop->tablet) */
@media (max-width: 1100px){
  #amelle-shop-page .amelle-shop-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   MOBILE FILTERS DRAWER + FIX (ONLY mobile)
   Fixes the big issue: drawer transparency / text behind it
   ========================================================== */
#amelle-shop-page .amelle-btn,
#amelle-shop-page .amelle-iconbtn,
#amelle-shop-page .amelle-pcard{
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 900px){
  #amelle-shop-page{ padding: 56px 0; }
  #amelle-shop-page .amelle-wrap{ width: min(1180px, calc(100% - 26px)); }

  #amelle-shop-page .amelle-shop-layout{ grid-template-columns: 1fr; }

  #amelle-shop-page .amelle-shop-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #amelle-shop-page .amelle-pmedia{ height: 280px; }

  /* Make topbar sticky on mobile (nice) */
  #amelle-shop-page .amelle-shop-topbar{
    position: sticky;
    top: 0;
    z-index: 5;
  }

  /* MOBILE open filters button becomes TEXT */
  #amelle-shop-page .amelle-filter-open{
    width: auto;
    padding: 0 14px;
    height: 42px;
    border-radius: 999px;
    font-weight: 750;
    letter-spacing: .2px;
    background: rgba(255,255,255,.05);
  }

  /* Overlay stronger so page behind disappears (fix) */
  #amelle-shop-page .amelle-filter-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9997;
    opacity: 0;
    transition: opacity .22s ease;
  }
  #amelle-shop-page .amelle-filter-overlay.is-show{ opacity: 1; }

  /* Drawer: SOLID background (fix transparency issue) */
  #amelle-shop-page .amelle-shop-filters{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 9998;

    max-height: 86vh;
    overflow: auto;

    border-radius: 26px 26px 0 0;
    padding: 12px 14px 18px;

    background: rgba(6,6,6,.98);
    border: 1px solid rgba(255,255,255,.10);

    transform: translateY(110%);
    transition: transform .28s cubic-bezier(.2,.9,.2,1);

    box-shadow: 0 -22px 60px rgba(0,0,0,.65);
  }
  #amelle-shop-page .amelle-shop-filters.is-open{
    transform: translateY(0);
  }

  /* Lux handle on top of drawer */
  #amelle-shop-page .amelle-shop-filters::before{
    content:"";
    display:block;
    width: 56px;
    height: 5px;
    border-radius: 999px;
    margin: 4px auto 10px;
    background: rgba(255,255,255,.14);
  }

  /* Drawer header */
  #amelle-shop-page .amelle-filter-mobile-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 8px 4px 12px;
    margin-bottom: 6px;

    position: sticky;
    top: 0;
    z-index: 2;

    background: rgba(6,6,6,.98);
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  #amelle-shop-page .amelle-filter-mobile-title{
    color: rgba(255,255,255,.92);
    font-weight: 800;
    font-size: 15px;
  }
  #amelle-shop-page .amelle-filter-close{
    width: 42px;
    height: 42px;
  }

  #amelle-shop-page .amelle-filter-block{
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
  }

  /* Touch press feel (premium) */
  #amelle-shop-page .amelle-btn:active{
    transform: translateY(0) scale(.985);
    filter: brightness(1.04);
  }
  #amelle-shop-page .amelle-iconbtn:active{
    transform: translateY(0) scale(.96);
    background: rgba(214,179,106,.12);
    border-color: rgba(214,179,106,.55);
  }
  #amelle-shop-page .amelle-pcard:active{
    transform: translateY(-4px) scale(.99);
  }
}

@media (min-width: 901px){
  #amelle-shop-page .amelle-filter-open{ display: none !important; }
  #amelle-shop-page .amelle-filter-mobile-head{ display: none !important; }
}

/* Reduced motion friendly */
@media (prefers-reduced-motion: reduce){
  #amelle-shop-page .amelle-reveal,
  #amelle-shop-page .amelle-reveal-card,
  #amelle-shop-page .amelle-pcard,
  #amelle-shop-page .amelle-btn,
  #amelle-shop-page .amelle-iconbtn,
  #amelle-shop-page .amelle-pmedia img{
    transition: none !important;
    animation: none !important;
  }
}
/* ==========================================================
   PATCH: Fix "Sort" select dropdown (black bg + white text)
   Safe: does NOT affect layout, only select colors
   ========================================================== */

#amelle-shop-page .amelle-select select{
  background-color: rgba(0,0,0,.55) !important;
  color: rgba(255,255,255,.92) !important;
}

#amelle-shop-page .amelle-select select option{
  background: #0b0b0b !important;
  color: rgba(255,255,255,.95) !important;
}

/* On some mobile browsers, the dropdown uses system UI:
   this helps Safari/Chrome keep readable contrast */
#amelle-shop-page select{
  color-scheme: dark;
}
@media (max-width: 900px){
  #amelle-shop-page .amelle-filter-close{ display:none !important; }
}
/* ===== MOBILE: swipe down to close filters ===== */
@media (max-width: 900px){
  #amelle-shop-page .amelle-shop-filters{
    touch-action: pan-y;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
/* ==========================================================
   AMELLE GLOBAL HEADER (V3 - UPDATED)
   corners layout + smart hide + working category + view more
   ========================================================== */

:root{
  --amelle-bg: #060606;
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold: #d6b36a;
  --amelle-gold-2: #b08d3f;
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
}

html, body{ font-family:"Jost", sans-serif !important; }

/* Header */
.amelle-site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  /* MODIFICATION 6: More transparent background (0.75 opacity) */
  background:
    radial-gradient(900px 240px at 20% -50%, rgba(214,179,106,.12), transparent 58%),
    rgba(5,5,5,.75); 
  backdrop-filter: blur(20px); /* Stronger blur for glass effect */
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--amelle-border);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); /* Smooth hide animation */
}

/* MODIFICATION 7: Class to hide header on scroll */
.amelle-site-header.is-hidden {
  transform: translateY(-100%);
}

.amelle-header-wrap{
  /* MODIFICATION 1: Corner the icons (Full width) */
  width: 100%; 
  max-width: none; /* Removed the 1320px limit */
  padding: 10px 40px; /* Padding from edges */
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 24px;
}

/* Left pack */
.amelle-leftpack{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}

/* Hamburger */
.amelle-hamburger{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.amelle-hamburger span{
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: rgba(214,179,106,.92);
}
.amelle-hamburger:hover{
  transform: translateY(-2px);
  background: rgba(214,179,106,.10);
  border-color: rgba(214,179,106,.55);
}

/* Logo */
.amelle-header-logo{ display: inline-flex; align-items: center; }
.amelle-header-logo img{
  width: 84px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
  transition: transform .25s ease, filter .25s ease;
}
.amelle-header-logo:hover img{
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.55));
}

/* Search centered and bigger */
.amelle-header-search{
  position: relative;
  width: min(700px, 100%); /* Adjusted width since container is fluid */
  flex: 1;
  margin: 0 10px;
  z-index: 10000;
}

.amelle-search-shell{
  display: grid;
  grid-template-columns: 1fr 160px 54px; /* input | cat | button */
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.06);
  box-shadow: var(--amelle-soft-shadow);
  overflow: visible; /* Changed to visible for dropdown */
  position: relative;
  min-height: 52px;
}

.amelle-search-input{ display: flex; align-items: center; overflow: hidden; border-radius: 999px 0 0 999px; }
.amelle-search-input input{
  width: 100%;
  height: 52px;
  padding: 0 24px;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255,255,255,.92);
  font-family: "Jost", sans-serif;
  font-size: 15px;
}
.amelle-search-input input::placeholder{ color: rgba(255,255,255,.55); }

/* Category dropdown */
.amelle-cat-dd{
  position: relative;
  border-left: 1px solid rgba(255,255,255,.08);
}
.amelle-cat-btn{
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-family: "Jost", sans-serif;
  font-size: 14px;
}
.amelle-cat-caret{ color: rgba(214,179,106,.90); font-size: 10px; }

.amelle-cat-panel{
  position: absolute;
  right: 0; /* Align to right of category block */
  top: calc(100% + 14px);
  width: 240px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: #080808;
  box-shadow: 0 28px 70px rgba(0,0,0,.65);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .22s ease, visibility .18s;
  visibility: hidden;
  z-index: 99999;
}
.amelle-cat-panel::-webkit-scrollbar { width: 4px; }
.amelle-cat-panel::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

.amelle-cat-panel.is-show{ 
  opacity: 1;
  transform: translateY(0); 
  visibility: visible;
}

.amelle-cat-item{
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  color: rgba(255,255,255,.70);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  transition: all .2s ease;
}
.amelle-cat-item:hover{ background: rgba(214,179,106,.08); color: #fff; }
.amelle-cat-item.is-active{
  background: rgba(214,179,106,.14);
  color: var(--amelle-gold);
  font-weight: 600;
}

/* Search button far right */
.amelle-search-btn{
  height: 52px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  border-radius: 0 999px 999px 0;
  background: rgba(0,0,0,.15);
  color: rgba(214,179,106,.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s ease, transform .22s ease;
}
.amelle-search-btn:hover{
  background: rgba(214,179,106,.10);
}

/* Right icons */
.amelle-header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  justify-content: flex-end;
}
.amelle-header-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(214,179,106,.95);
  position: relative;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.amelle-header-icon:hover{
  transform: translateY(-2px);
  background: rgba(214,179,106,.10);
  border-color: rgba(214,179,106,.55);
}
.amelle-ico svg{ display: block; }

/* Cart badge */
.amelle-badge{
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  font-weight: 800;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* Search results */
.amelle-search-results{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,10,.98); /* Almost solid for readability */
  box-shadow: 0 28px 70px rgba(0,0,0,.75);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .22s ease, visibility 0.18s;
  visibility: hidden;
  z-index: 99999;
}
.amelle-search-results.is-show{ opacity: 1; transform: translateY(0); visibility: visible; }

.amelle-search-results-inner{
  max-height: 420px;
  overflow-y: auto;
}
.amelle-search-results-inner::-webkit-scrollbar{ width: 6px; }
.amelle-search-results-inner::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.25);
  border-radius: 10px;
}
.amelle-search-loading,
.amelle-search-empty{
  padding: 24px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  text-align: center;
}
.amelle-sitem{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s ease;
}
.amelle-sitem:hover{
  background: rgba(214,179,106,.08);
}
.amelle-simg{
  width: 56px; height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.amelle-simg img{ width: 100%; height: 100%; object-fit: cover; }
.amelle-simg-fallback{
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(214,179,106,.2), transparent);
}
.amelle-sname{
  color: rgba(255,255,255,.95);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.amelle-srow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.amelle-scat{ font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.5px; }
.amelle-sprice{ font-size: 13px; color: var(--amelle-gold); font-weight: 700; }

/* MODIFICATION 5: View More Button */
.amelle-view-more-link {
    display: block;
    text-align: center;
    padding: 14px;
    background: rgba(214,179,106, 0.1);
    color: var(--amelle-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.amelle-view-more-link:hover {
    background: rgba(214,179,106, 0.2);
}

/* Menu overlay + drawer (LEFT) */
.amelle-menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s;
}
.amelle-menu-overlay.is-show{ opacity: 1; visibility: visible; }

.amelle-menu-drawer{
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh; /* Dynamic viewport height */
  width: min(380px, 85vw);
  z-index: 9998;
  background: #0a0a0a;
  border-right: 1px solid rgba(255,255,255,.10);
  box-shadow: 26px 0 70px rgba(0,0,0,.60);
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
}
.amelle-menu-drawer.is-open{ transform: translateX(0); }

.amelle-menu-head{
  flex-shrink: 0; /* Prevents shrinking */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.amelle-menu-title{ font-weight: 800; font-size: 18px; color: #fff; }
.amelle-menu-close{
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.amelle-menu-close:hover{ background: rgba(255,255,255,.1); }

/* MODIFICATION 3: Scrollable Area Fix */
.amelle-menu-scroll{
  flex: 1;
  overflow-y: auto; /* Enable vertical scroll */
  padding: 20px;
  min-height: 0; /* Critical for flex child scrolling */
  overscroll-behavior: contain; /* Prevents body scroll chaining */
}
/* Visible scrollbar for user indication */
.amelle-menu-scroll::-webkit-scrollbar{ width: 5px; }
.amelle-menu-scroll::-webkit-scrollbar-track{ background: transparent; }
.amelle-menu-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.2);
  border-radius: 10px;
}

.amelle-menu-section{
  margin-bottom: 24px;
}
.amelle-menu-kicker{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amelle-gold);
  margin: 0 0 16px;
  opacity: 0.8;
}
.amelle-menu-link{
  display: flex;
  padding: 14px 16px;
  border-radius: 12px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: all .2s ease;
  margin-bottom: 4px;
  font-size: 16px;
}
.amelle-menu-link:hover{
  background: rgba(255,255,255,.04);
  color: #fff;
  transform: translateX(4px);
}

/* Mobile tweaks */
@media (max-width: 900px){
  .amelle-header-wrap{
    padding: 10px 16px; /* Smaller padding on mobile */
    gap: 12px;
  }
  .amelle-leftpack{ min-width: auto; gap: 8px; }
  .amelle-header-logo img{ width: 70px; }
  
  /* Compact search on mobile */
  .amelle-search-shell{ 
    grid-template-columns: 1fr 50px; /* Hide category on mobile if too small, or adjust */
  }
  .amelle-cat-dd { display: none; } /* Optional: Hide categories on very small screens to save space */
  .amelle-search-shell{ grid-template-columns: 1fr 48px; } /* Input + Button only */
  
  .amelle-header-search { margin: 0 5px; }
}
/* ... Keep all your existing Desktop CSS ... */

/* NEW UTILITY CLASSES */
.mobile-only { display: none; }
.desktop-only { display: inline-flex; }

/* MOBILE RESPONSIVE LOGIC */
@media (max-width: 1024px) {
    .desktop-only { display: none; }
    .mobile-only { display: inline-flex; }

    /* 1. Header Wrap Tweaks */
    .amelle-header-wrap {
        padding: 10px 20px;
        justify-content: space-between;
    }

    .amelle-leftpack {
        min-width: auto;
        gap: 12px;
    }

    /* 2. The Search "Trick" for Mobile */
    .amelle-header-search {
        position: absolute;
        top: 100%; /* Sits right under the header */
        left: 0;
        width: 100%;
        margin: 0;
        padding: 15px 20px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--amelle-border);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    /* When Search is Toggled Active */
    .amelle-header-search.is-mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    .amelle-search-shell {
        grid-template-columns: 1fr 48px; /* Remove category on mobile to keep it clean */
        background: rgba(255,255,255,0.08);
        min-height: 48px;
    }

    .amelle-cat-dd {
        display: none; /* Hide category selector on mobile for simplicity */
    }

    .amelle-search-input input {
        height: 48px;
        font-size: 16px; /* Prevents iOS zoom-in on focus */
    }

    .amelle-search-btn {
        height: 48px;
        width: 48px;
    }

    /* 3. Results Adjustment */
    .amelle-search-results {
        position: fixed;
        top: 135px; /* Adjust based on your header height */
        left: 10px;
        right: 10px;
        width: auto;
        max-height: 60vh;
    }

    .amelle-header-logo img {
        width: 70px;
    }

    /* 4. Action Icons */
    .amelle-header-actions {
        min-width: auto;
        gap: 8px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .amelle-header-wrap { padding: 8px 15px; }
    .amelle-hamburger { width: 38px; height: 38px; }
    .amelle-header-icon { width: 40px; height: 40px; }
}
/* Keep all your previous base CSS and add/overwrite these: */

.mobile-only { display: none; }

@media (max-width: 1024px) {
    .mobile-only { display: inline-flex; }

    /* 1. Account Icon: Ensure it is always visible on mobile */
    .amelle-header-actions {
        display: flex;
        gap: 8px;
        min-width: auto;
    }

    /* 2. Mobile Search Bar - Re-enable categories */
    .amelle-header-search.is-mobile-active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px;
        background: #0a0a0a;
        z-index: 100;
        border-bottom: 1px solid var(--amelle-border);
    }

    .amelle-search-shell {
        /* Matches your screenshot: Input | Category | Search Icon */
        display: grid;
        grid-template-columns: 1fr 100px 50px; 
        background: rgba(255,255,255,0.06);
        border-radius: 999px;
    }

    .amelle-cat-dd {
        display: block !important; /* Forces categories to show on mobile */
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .amelle-cat-btn {
        padding: 0 10px;
        font-size: 12px;
    }

    .amelle-cat-label {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .amelle-search-input input {
        padding-left: 15px;
        font-size: 14px;
    }

    /* 3. Results position adjustment */
    .amelle-search-results {
        position: fixed;
        top: 130px;
        left: 10px;
        right: 10px;
        width: auto;
    }
}

/* Scroll Hide Logic */
.amelle-site-header.is-hidden {
    transform: translateY(-100%);
}
/* Header Scroll Animation */
.amelle-site-header {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  will-change: transform;
}

/* This class will be added by JavaScript when scrolling down */
.amelle-site-header.is-hidden {
  transform: translateY(-100%);
}

/* Optional: Add a subtle shadow when scrolling starts */
.amelle-site-header.is-scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
/* ==========================================================
   AMELLE FOOTER (matches header: dark glass + gold glow + Jost)
   ========================================================== */

/* ==========================================================
   AMELLE FOOTER – MATCH HEADER GLASS STYLE
   ========================================================== */
.amelle-site-footer{
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;

  font-family: "Jost", sans-serif;
  color: rgba(255,255,255,.88);

  /* Same style as .amelle-site-header */
  background:
    radial-gradient(900px 240px at 20% -50%, rgba(214,179,106,.12), transparent 58%),
    rgba(5,5,5,.75);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-top: 1px solid var(--amelle-border);
  box-shadow: 0 -18px 45px rgba(0,0,0,.55);
}


.amelle-footer-wrap{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 46px 0 26px;

  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  gap: 34px;
  align-items: start;
}

/* Brand */
.amelle-footer-logo{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.amelle-footer-logo img{
  height: 62px;
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 35px rgba(0,0,0,.45));
  transition: transform .25s ease, filter .25s ease;
}
.amelle-footer-logo:hover img{
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.55));
}

.amelle-footer-about{
  margin: 14px 0 0;
  max-width: 52ch;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: 14px;
}

/* Titles */
.amelle-footer-title{
  font-weight: 750;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  margin: 6px 0 14px;
  position: relative;
  padding-left: 12px;
}
.amelle-footer-title::before{
  content:"";
  position:absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: .95;
}

/* Contact list */
.amelle-footer-contact{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 10px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
}

.amelle-footer-contact li{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.amelle-footer-contact a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  transition: color .2s ease;
}
.amelle-footer-contact a:hover{
  color: rgba(214,179,106,.95);
}

.amelle-fi{
  color: rgba(214,179,106,.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Social */
.amelle-footer-social{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.amelle-social{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: rgba(214,179,106,.95);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);

  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.amelle-social:hover{
  transform: translateY(-2px);
  background: rgba(214,179,106,.10);
  border-color: rgba(214,179,106,.38);
}

/* Links column (no title, as requested) */
.amelle-footer-links{
  display: grid;
  gap: 10px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
}

.amelle-footer-links a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.80);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.amelle-footer-links a:hover{
  transform: translateY(-2px);
  color: rgba(214,179,106,.95);
  border-color: rgba(214,179,106,.35);
  background: rgba(214,179,106,.08);
}

/* Bottom */
.amelle-footer-bottom{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 22px;
}
.amelle-footer-line{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(214,179,106,.28), transparent);
  opacity: .9;
  margin: 0 0 14px;
}
.amelle-footer-bottom-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px){
  .amelle-footer-wrap{
    width: min(1200px, calc(100% - 34px));
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0 18px;
  }
  .amelle-footer-bottom{
    width: min(1200px, calc(100% - 34px));
  }
  .amelle-footer-logo img{
    height: 56px;
  }
}
/* ==========================================================
   AMELLE COLLABORATION PAGE (Template: page-collaboration.php)
   Scoped to #amelle-collab to avoid breaking other pages
   ========================================================== */

#amelle-collab{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-shadow: 0 18px 45px rgba(0,0,0,.45);
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 22px;

  font-family: "Jost", sans-serif;
  color: var(--amelle-text);
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);
  padding: clamp(64px, 6vw, 110px) 0;
  overflow-x: hidden;
}

#amelle-collab .amelle-collab-wrap{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* Hero */
#amelle-collab .amelle-collab-hero{ padding-top: 10px; }
#amelle-collab .amelle-c-kicker{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-collab .amelle-c-title{
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.08;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 750;
  letter-spacing: .4px;
}
#amelle-collab .amelle-c-subtitle{
  margin: 0;
  color: var(--amelle-muted);
  line-height: 1.85;
  font-size: 15px;
  max-width: 78ch;
}

#amelle-collab .amelle-c-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

#amelle-collab .amelle-c-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  box-shadow: 0 14px 32px rgba(214,179,106,.20);
  border: 1px solid rgba(214,179,106,.25);
  cursor: pointer;
}
#amelle-collab .amelle-c-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 44px rgba(214,179,106,.26);
}
#amelle-collab .amelle-c-btn:active{ transform: translateY(0) scale(.99); }

#amelle-collab .amelle-c-btn.is-ghost{
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1px solid var(--amelle-border);
  box-shadow: none;
}
#amelle-collab .amelle-c-btn.is-ghost:hover{
  border-color: rgba(214,179,106,.65);
  background: rgba(214,179,106,.08);
}

/* Mini cards */
#amelle-collab .amelle-c-mini{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
#amelle-collab .amelle-c-mini-card{
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--amelle-soft-shadow);
  padding: 14px 14px 12px;
}
#amelle-collab .amelle-c-mini-top{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 750;
  color: rgba(255,255,255,.90);
  letter-spacing: .2px;
}
#amelle-collab .amelle-c-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  box-shadow: 0 0 0 4px rgba(214,179,106,.12);
}
#amelle-collab .amelle-c-mini-text{
  margin-top: 8px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  font-size: 13px;
}

/* Sections */
#amelle-collab .amelle-collab-section{
  padding-top: clamp(36px, 4vw, 62px);
}
#amelle-collab .amelle-c-head{
  margin-bottom: 16px;
  max-width: 80ch;
}
#amelle-collab .amelle-c-h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  color: rgba(255,255,255,.95);
  letter-spacing: .2px;
  font-weight: 800;
}
#amelle-collab .amelle-c-p{
  margin: 0;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  font-size: 14px;
}

/* Cards grid */
#amelle-collab .amelle-c-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
#amelle-collab .amelle-c-card{
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.42);
  padding: 18px 18px 16px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#amelle-collab .amelle-c-card:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.40);
  box-shadow: 0 22px 50px rgba(0,0,0,.55);
}
#amelle-collab .amelle-c-card-top{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 10px;
}
#amelle-collab .amelle-c-badge{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214,179,106,.10);
  border: 1px solid rgba(214,179,106,.25);
  color: rgba(214,179,106,.95);
  font-weight: 750;
  letter-spacing: .2px;
}
#amelle-collab .amelle-c-card h3{
  margin: 0 0 8px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 16px;
}
#amelle-collab .amelle-c-card p{
  margin: 0;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  font-size: 13px;
}

/* Steps */
#amelle-collab .amelle-c-steps{
  display: grid;
  gap: 12px;
}
#amelle-collab .amelle-c-step{
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--amelle-soft-shadow);
  padding: 16px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
}
#amelle-collab .amelle-c-step-num{
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: rgba(214,179,106,.95);
}
#amelle-collab .amelle-c-step-body h3{
  margin: 0 0 6px;
  color: rgba(255,255,255,.92);
  font-weight: 850;
  font-size: 16px;
}
#amelle-collab .amelle-c-step-body p{
  margin: 0;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  font-size: 13px;
}

/* CTA panel */
#amelle-collab .amelle-c-panel{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 280px at 15% 0%, rgba(214,179,106,.14), transparent 62%),
    rgba(255,255,255,.03);
  box-shadow: var(--amelle-shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
#amelle-collab .amelle-c-panel-right{
  display: grid;
  gap: 10px;
  justify-items: end;
}
#amelle-collab .amelle-c-note{
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* Reveal animations */
#amelle-collab .amelle-c-reveal,
#amelle-collab .amelle-c-reveal-card{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-collab .amelle-c-reveal.is-inview,
#amelle-collab .amelle-c-reveal-card.is-inview{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 1100px){
  #amelle-collab .amelle-c-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #amelle-collab .amelle-c-mini{ grid-template-columns: 1fr; }
  #amelle-collab .amelle-c-panel{ grid-template-columns: 1fr; }
  #amelle-collab .amelle-c-panel-right{ justify-items: start; }
}
@media (max-width: 560px){
  #amelle-collab .amelle-collab-wrap{ width: min(1180px, calc(100% - 26px)); }
  #amelle-collab .amelle-c-step{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  #amelle-collab .amelle-c-reveal,
  #amelle-collab .amelle-c-reveal-card,
  #amelle-collab .amelle-c-btn,
  #amelle-collab .amelle-c-card{
    transition: none !important;
    animation: none !important;
  }
}
/* ==========================================================
   AMELLE - CATEGORIES (COPY of Collections styling)
   Target: #amelle-categories-page
   Uses: amelle-col-* classes
   ========================================================== */

#amelle-categories-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-shadow: 0 18px 45px rgba(0,0,0,.45);
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 22px;

  font-family:"Jost",sans-serif;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);
  color: var(--amelle-text);
  overflow-x:hidden;
  width:100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-categories-page .amelle-col-wrap{
  width:min(1180px, calc(100% - 48px));
  margin-inline:auto;
}

/* Head */
#amelle-categories-page .amelle-col-head{
  text-align:left;
  margin-bottom: clamp(26px, 3vw, 38px);
  max-width:78ch;
}
#amelle-categories-page .amelle-col-kicker{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color: rgba(229,199,123,.95);
  margin:0 0 14px;
}
#amelle-categories-page .amelle-col-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height:1.1;
  margin:0 0 12px;
  color: var(--amelle-gold);
  font-weight:750;
  letter-spacing:.4px;
}
#amelle-categories-page .amelle-col-sub{
  margin:0;
  color: var(--amelle-muted);
  line-height:1.75;
  font-size:15px;
}

/* Blocks */
#amelle-categories-page .amelle-col-block{
  border-radius: 26px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.02);
  box-shadow: var(--amelle-soft-shadow);
  padding: 18px 18px 14px;
}
#amelle-categories-page .amelle-col-block + .amelle-col-block{
  margin-top: 16px;
}

#amelle-categories-page .amelle-col-block-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 14px;
}
#amelle-categories-page .amelle-col-h2{
  margin:0 0 6px;
  color: rgba(255,255,255,.95);
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
}
#amelle-categories-page .amelle-col-desc{
  margin:0;
  color: rgba(255,255,255,.65);
  line-height:1.75;
  font-size:13px;
  max-width: 70ch;
}
#amelle-categories-page .amelle-col-viewall{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
  color: rgba(255,255,255,.84);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
#amelle-categories-page .amelle-col-viewall:hover{
  transform: translateY(-2px);
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.08);
}
#amelle-categories-page .amelle-col-arrow{
  color: rgba(214,179,106,.95);
  transition: transform .22s ease;
}
#amelle-categories-page .amelle-col-viewall:hover .amelle-col-arrow{
  transform: translateX(3px);
}

/* Row wrap */
#amelle-categories-page .amelle-col-rowwrap{
  position:relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 12px 44px;
  overflow:hidden;
}

#amelle-categories-page .amelle-col-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(214,179,106,.28) rgba(255,255,255,.05);
}
#amelle-categories-page .amelle-col-row::-webkit-scrollbar{ height:8px; }
#amelle-categories-page .amelle-col-row::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.28);
  border-radius:999px;
}
#amelle-categories-page .amelle-col-row::-webkit-scrollbar-track{
  background: rgba(255,255,255,.05);
  border-radius:999px;
}

/* Row nav arrows */
#amelle-categories-page .amelle-col-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:36px;
  height:36px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.90);
  cursor:pointer;
  transition:.22s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  z-index:2;
}
#amelle-categories-page .amelle-col-nav:hover{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.10);
  transform: translateY(-50%) translateY(-2px);
}
#amelle-categories-page .amelle-col-prev{ left:10px; }
#amelle-categories-page .amelle-col-next{ right:10px; }

/* Cards */
#amelle-categories-page .amelle-col-card{
  flex: 0 0 260px;
  scroll-snap-align:start;
  display:block;
  border-radius:22px;
  overflow:hidden;
  text-decoration:none;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#amelle-categories-page .amelle-col-card:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.45);
  box-shadow: 0 22px 50px rgba(0,0,0,.50);
}

#amelle-categories-page .amelle-col-media{
  position:relative;
  height:240px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
#amelle-categories-page .amelle-col-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-media img{
  transform: scale(1.10);
  filter: contrast(1.04);
}
#amelle-categories-page .amelle-col-fallback{
  width:100%;
  height:100%;
  background:
    radial-gradient(800px 320px at 20% 10%, rgba(214,179,106,.14), transparent 55%),
    rgba(255,255,255,.03);
}
#amelle-categories-page .amelle-col-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), transparent 55%);
  opacity:.95;
  transition: opacity .35s ease;
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-glow{ opacity:1; }

#amelle-categories-page .amelle-col-body{ padding: 16px 16px 14px; }
#amelle-categories-page .amelle-col-name{
  color: rgba(255,255,255,.95);
  font-weight: 750;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.25;
}
#amelle-categories-page .amelle-col-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 14px;
}
#amelle-categories-page .amelle-col-price{
  color: var(--amelle-gold);
  font-weight: 800;
  letter-spacing: .2px;
}
#amelle-categories-page .amelle-col-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}

#amelle-categories-page .amelle-col-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-categories-page .amelle-col-ctatxt{
  font-weight: 750;
  color: rgba(255,255,255,.88);
  transition: color .25s ease, transform .25s ease;
}
#amelle-categories-page .amelle-col-ctaarr{
  color: rgba(214,179,106,.95);
  transition: transform .25s ease, opacity .25s ease;
  opacity:.9;
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-ctatxt{
  color: rgba(214,179,106,.95);
  transform: translateX(2px);
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-ctaarr{
  transform: translateX(4px);
  opacity:1;
}

/* Skeleton */
#amelle-categories-page .amelle-col-skeleton{
  display:flex;
  gap:14px;
  padding: 4px 0;
}
#amelle-categories-page .amelle-col-skelcard{
  flex:0 0 260px;
  height: 320px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.08), rgba(255,255,255,.04));
  background-size: 240% 100%;
  animation: amelleSkel 1.2s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,.08);
}
@keyframes amelleSkel{
  0%{ background-position: 0% 0; }
  100%{ background-position: 100% 0; }
}
#amelle-categories-page .amelle-col-none{
  color: rgba(255,255,255,.65);
  padding: 18px 6px;
  font-size: 13px;
}

/* Empty */
#amelle-categories-page .amelle-col-empty{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 18px;
  color: rgba(255,255,255,.75);
}

/* Reveal animations */
#amelle-categories-page .amelle-col-reveal,
#amelle-categories-page .amelle-col-reveal-card{
  opacity:0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-categories-page .amelle-col-reveal.is-inview,
#amelle-categories-page .amelle-col-reveal-card.is-inview{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 900px){
  #amelle-categories-page{ padding: 56px 0; }
  #amelle-categories-page .amelle-col-wrap{
    width:min(1180px, calc(100% - 26px));
  }

  #amelle-categories-page .amelle-col-block{
    padding: 14px 14px 12px;
    border-radius: 22px;
  }

  #amelle-categories-page .amelle-col-block-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #amelle-categories-page .amelle-col-rowwrap{
    padding: 12px 12px;
  }

  /* hide nav arrows on mobile, swipe is better */
  #amelle-categories-page .amelle-col-nav{
    display:none;
  }

  #amelle-categories-page .amelle-col-card{
    flex: 0 0 84%;
  }
  #amelle-categories-page .amelle-col-media{
    height: 220px;
  }
  #amelle-categories-page .amelle-col-skelcard{
    flex: 0 0 84%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #amelle-categories-page .amelle-col-reveal,
  #amelle-categories-page .amelle-col-reveal-card,
  #amelle-categories-page .amelle-col-card,
  #amelle-categories-page .amelle-col-media img{
    transition:none !important;
    animation:none !important;
  }
}
/* ==========================================================
   AMELLE - COLLECTIONS (6 random collections)
   Target: #amelle-collections-page
   Same lux system as shop/categories pages
   ========================================================== */

#amelle-collections-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);

  font-family:"Jost",sans-serif;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);

  color: rgba(255,255,255,.88);
  overflow-x:hidden;
  width:100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-collections-page .amelle-col-wrap{
  width:min(1180px, calc(100% - 48px));
  margin-inline:auto;
}

/* Header */
#amelle-collections-page .amelle-col-head{
  text-align:left;
  margin-bottom: clamp(26px, 3vw, 38px);
  max-width:78ch;
}
#amelle-collections-page .amelle-col-kicker{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color: rgba(229,199,123,.95);
  margin:0 0 14px;
}
#amelle-collections-page .amelle-col-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height:1.1;
  margin:0 0 12px;
  color: var(--amelle-gold);
  font-weight:750;
  letter-spacing:.4px;
}
#amelle-collections-page .amelle-col-sub{
  margin:0;
  color: var(--amelle-muted);
  line-height:1.75;
  font-size:15px;
}

/* Block */
#amelle-collections-page .amelle-col-block{
  border-radius: 26px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.02);
  box-shadow: var(--amelle-soft-shadow);
  padding: 18px 18px 14px;
}
#amelle-collections-page .amelle-col-block + .amelle-col-block{ margin-top: 16px; }

#amelle-collections-page .amelle-col-block-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 14px;
}
#amelle-collections-page .amelle-col-h2{
  margin:0 0 6px;
  color: rgba(255,255,255,.95);
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
}
#amelle-collections-page .amelle-col-desc{
  margin:0;
  color: rgba(255,255,255,.65);
  line-height:1.75;
  font-size:13px;
  max-width: 70ch;
}

/* Row wrap */
#amelle-collections-page .amelle-col-rowwrap{
  position:relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 12px 44px;
  overflow:hidden;
}

#amelle-collections-page .amelle-col-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(214,179,106,.28) rgba(255,255,255,.05);
}
#amelle-collections-page .amelle-col-row::-webkit-scrollbar{ height: 8px; }
#amelle-collections-page .amelle-col-row::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.28);
  border-radius:999px;
}
#amelle-collections-page .amelle-col-row::-webkit-scrollbar-track{
  background: rgba(255,255,255,.05);
  border-radius:999px;
}

/* Row arrows */
#amelle-collections-page .amelle-col-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:36px;
  height:36px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.90);
  cursor:pointer;
  transition:.22s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  z-index:2;
}
#amelle-collections-page .amelle-col-nav:hover{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.10);
  transform: translateY(-50%) translateY(-2px);
}
#amelle-collections-page .amelle-col-prev{ left:10px; }
#amelle-collections-page .amelle-col-next{ right:10px; }

/* Cards */
#amelle-collections-page .amelle-col-card{
  flex: 0 0 260px;
  scroll-snap-align:start;
  display:block;
  border-radius:22px;
  overflow:hidden;
  text-decoration:none;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#amelle-collections-page .amelle-col-card:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.45);
  box-shadow: 0 22px 50px rgba(0,0,0,.50);
}

#amelle-collections-page .amelle-col-media{
  position:relative;
  height:240px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
#amelle-collections-page .amelle-col-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-media img{
  transform: scale(1.10);
  filter: contrast(1.04);
}
#amelle-collections-page .amelle-col-fallback{
  width:100%;
  height:100%;
  background:
    radial-gradient(800px 320px at 20% 10%, rgba(214,179,106,.14), transparent 55%),
    rgba(255,255,255,.03);
}
#amelle-collections-page .amelle-col-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), transparent 55%);
  opacity:.95;
  transition: opacity .35s ease;
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-glow{ opacity:1; }

#amelle-collections-page .amelle-col-body{ padding: 16px 16px 14px; }
#amelle-collections-page .amelle-col-name{
  color: rgba(255,255,255,.95);
  font-weight: 750;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.25;
}
#amelle-collections-page .amelle-col-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 14px;
}
#amelle-collections-page .amelle-col-price{
  color: var(--amelle-gold);
  font-weight: 800;
}
#amelle-collections-page .amelle-col-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}
#amelle-collections-page .amelle-col-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-collections-page .amelle-col-ctatxt{
  font-weight: 750;
  color: rgba(255,255,255,.88);
  transition: color .25s ease, transform .25s ease;
}
#amelle-collections-page .amelle-col-ctaarr{
  color: rgba(214,179,106,.95);
  transition: transform .25s ease, opacity .25s ease;
  opacity:.9;
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-ctatxt{
  color: rgba(214,179,106,.95);
  transform: translateX(2px);
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-ctaarr{
  transform: translateX(4px);
  opacity:1;
}

/* Skeleton */
#amelle-collections-page .amelle-col-skeleton{ display:flex; gap:14px; padding: 4px 0; }
#amelle-collections-page .amelle-col-skelcard{
  flex: 0 0 260px;
  height: 320px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.08), rgba(255,255,255,.04));
  background-size: 240% 100%;
  animation: amelleColSkel 1.2s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,.08);
}
@keyframes amelleColSkel{ 0%{background-position:0% 0;} 100%{background-position:100% 0;} }

#amelle-collections-page .amelle-col-empty{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 18px;
  color: rgba(255,255,255,.75);
}

/* Reveal */
#amelle-collections-page .amelle-col-reveal,
#amelle-collections-page .amelle-col-reveal-card{
  opacity:0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-collections-page .amelle-col-reveal.is-inview,
#amelle-collections-page .amelle-col-reveal-card.is-inview{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* Mobile */
@media (max-width: 900px){
  #amelle-collections-page{ padding: 56px 0; }
  #amelle-collections-page .amelle-col-wrap{ width:min(1180px, calc(100% - 26px)); }
  #amelle-collections-page .amelle-col-block{ padding: 14px 14px 12px; border-radius: 22px; }
  #amelle-collections-page .amelle-col-block-top{ flex-direction: column; align-items:flex-start; gap:10px; }
  #amelle-collections-page .amelle-col-rowwrap{ padding: 12px 12px; }
  #amelle-collections-page .amelle-col-nav{ display:none; }
  #amelle-collections-page .amelle-col-card{ flex: 0 0 84%; }
  #amelle-collections-page .amelle-col-media{ height: 220px; }
  #amelle-collections-page .amelle-col-skelcard{ flex: 0 0 84%; }
}
/*
Theme Name: Amelle Theme 2
Author: Hamza Dadaaki
Version: 2.1 (notnot Fixed)
Description: Converted from static HTML templates to WordPress theme.
*/

/* ==========================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================== */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    background: #000;
    color: rgba(255,255,255,.85);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ==========================================================
   AMELLE FRONT PAGE SPECIFIC STYLES
   ========================================================== */
#amelle-front-page {
  --amelle-bg: #060606;
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-gold: #d6b36a;
  --amelle-gold-2: #b08d3f;
  --amelle-border: rgba(255,255,255,.10);
  
  background: radial-gradient(1200px 600px at 20% -10%, rgba(214,179,106,.16), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(214,179,106,.10), transparent 55%),
              var(--amelle-bg);
  color: var(--amelle-text);
  overflow-x: hidden;
  width: 100%;
}

/* Section Spacing */
#amelle-front-page section {
  padding: clamp(70px, 7vw, 110px) 0;
  position: relative;
}

#amelle-front-page .amelle-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Typography */
#amelle-front-page .amelle-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-front-page .amelle-title {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 650;
  letter-spacing: .4px;
}
#amelle-front-page .amelle-subtitle {
  margin: 0;
  max-width: 64ch;
  color: var(--amelle-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Buttons */
#amelle-front-page .amelle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 550;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  transition: all .25s ease;
  box-shadow: 0 12px 30px rgba(214,179,106,.25);
  border: 1px solid rgba(214,179,106,.25);
}
#amelle-front-page .amelle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(214,179,106,.28);
  filter: brightness(1.05);
}
#amelle-front-page .amelle-btn.is-ghost {
  background: transparent;
  color: var(--amelle-text);
  border: 1px solid var(--amelle-border);
  box-shadow: none;
}
#amelle-front-page .amelle-btn.is-ghost:hover {
  border-color: var(--amelle-gold);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
#amelle-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 0 !important;
}

.amelle-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.8s ease;
  z-index: 1;
}
.amelle-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.amelle-hero-slide video, 
.amelle-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amelle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 3;
}

.amelle-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 4;
}
.amelle-content h4, .amelle-content h1, .amelle-content .amelle-btn {
  opacity: 0;
  transform: translateY(20px);
}
.amelle-hero-slide.is-active .amelle-content h4 { animation: fadeUp 0.8s forwards 0.3s; }
.amelle-hero-slide.is-active .amelle-content h1 { animation: fadeUp 0.8s forwards 0.5s; }
.amelle-hero-slide.is-active .amelle-content .amelle-btn { animation: fadeUp 0.8s forwards 0.7s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.amelle-content h1 {
  font-size: clamp(38px, 5vw, 64px);
  color: #fff;
  margin-bottom: 24px;
}
.amelle-content h4 {
  color: var(--amelle-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

/* Hero Nav */
.amelle-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.3);
  color: #fff;
  z-index: 5;
  cursor: pointer;
  transition: .3s;
}
.amelle-arrow:hover { background: rgba(0,0,0,0.6); border-color: var(--amelle-gold); }
.amelle-prev { left: 30px; }
.amelle-next { right: 30px; }

.amelle-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.amelle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: .3s;
}
.amelle-dot.active {
  background: var(--amelle-gold);
  transform: scale(1.2);
}

/* ==========================================================
   LATEST PRODUCTS (Fixed Slider)
   ========================================================== */
#amelle-latest {
  background: transparent;
}
.amelle-products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.amelle-nav-group {
    display: flex;
    gap: 10px;
}
.amelle-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--amelle-border);
    background: rgba(255,255,255,0.05);
    color: var(--amelle-gold);
    cursor: pointer;
    transition: 0.3s;
}
.amelle-nav-arrow:hover {
    background: var(--amelle-gold);
    color: #000;
}

/* Track */
.amelle-products-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.amelle-products-scroll::-webkit-scrollbar { display: none; }

/* Product Card */
.amelle-product {
  flex: 0 0 300px; /* Fixed width for smooth snap */
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--amelle-border);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.amelle-product:hover {
  transform: translateY(-8px);
  border-color: rgba(214,179,106,0.4);
}
.amelle-product-media {
  height: 320px;
  overflow: hidden;
}
.amelle-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.amelle-product:hover .amelle-product-media img {
  transform: scale(1.1);
}
.amelle-product-body {
  padding: 20px;
}
.amelle-product-title {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
}
.amelle-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.amelle-price {
  color: var(--amelle-gold);
  font-weight: 600;
}
.amelle-pill {
  font-size: 11px;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #fff;
}

/* ==========================================================
   COLLECTIONS (Front Page) — aligned with .amelle-wrap
   ========================================================== */

#amelle-front-page #amelle-collections{
  background: transparent;
}

/* subtle gold glow like other sections, without breaking alignment */
#amelle-front-page #amelle-collections::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(650px 260px at 18% 25%, rgba(214,179,106,.10), transparent 60%),
    radial-gradient(600px 240px at 85% 70%, rgba(214,179,106,.06), transparent 62%);
  opacity: .9;
}

/* cards grid */
#amelle-front-page #amelle-collections .amelle-cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
  margin-top:40px;
}

/* card */
#amelle-front-page #amelle-collections .amelle-card{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--amelle-border);
  text-decoration:none;
  display:block;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

#amelle-front-page #amelle-collections .amelle-card:hover{
  transform: translateY(-6px);
  border-color: rgba(214,179,106,.34);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

/* bg image */
#amelle-front-page #amelle-collections .amelle-card-bg{
  position:absolute;
  inset:0;
  display:block;
  background-size:cover;
  background-position:center;
  opacity:.78;
  transition: transform .6s ease, opacity .6s ease;
}

#amelle-front-page #amelle-collections .amelle-card:hover .amelle-card-bg{
  opacity:.60;
  transform: scale(1.06);
}

/* overlay */
#amelle-front-page #amelle-collections .amelle-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.35) 55%, rgba(0,0,0,.10));
  z-index:1;
}

/* content pinned bottom */
#amelle-front-page #amelle-collections .amelle-card-content{
  position:absolute;
  inset:0;
  z-index:2;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

#amelle-front-page #amelle-collections .amelle-card-title{
  display:block;
  color:#fff;
  font-size:22px;
  font-weight:650;
  margin:0 0 8px;
  letter-spacing:.2px;
}

#amelle-front-page #amelle-collections .amelle-card-desc{
  display:block;
  color: rgba(255,255,255,.72);
  font-size:13.5px;
  line-height:1.5;
  margin:0 0 16px;
  max-width:95%;
}

#amelle-front-page #amelle-collections .amelle-card-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(214,179,106,.35);
  color: var(--amelle-gold);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  background: rgba(0,0,0,.18);
}

#amelle-front-page #amelle-collections .amelle-card:hover .amelle-card-cta{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.12);
}

/* badge */
#amelle-front-page #amelle-collections .amelle-card-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  padding:7px 11px;
  border-radius:999px;
  background: rgba(214,179,106,.16);
  border:1px solid rgba(214,179,106,.35);
  color: var(--amelle-gold);
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* responsive */
@media (max-width: 1100px){
  #amelle-front-page #amelle-collections .amelle-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  #amelle-front-page #amelle-collections .amelle-cards{
    grid-template-columns:1fr;
  }
  #amelle-front-page #amelle-collections .amelle-card{
    height:300px;
    border-radius:20px;
  }
  #amelle-front-page #amelle-collections .amelle-card-content{
    padding:20px;
  }
}



/* ==========================================================
   TEAM (Fixed Grid & Icons)
   ========================================================== */
.amelle-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.amelle-team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--amelle-border);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: .3s;
}
.amelle-team-card:hover { border-color: var(--amelle-gold); transform: translateY(-5px); }
.amelle-team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 2px solid rgba(214,179,106,0.3);
}
.amelle-team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.amelle-team-name { color: #fff; font-size: 18px; margin: 10px 0 5px; line-height: 1.2; }
.amelle-team-role { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 15px; }
.amelle-team-social { display: flex; justify-content: center; gap: 10px; }
.amelle-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s;
}
.amelle-social:hover { background: var(--amelle-gold); color: #000; }

/* ==========================================================
   TEAM (Mobile layout like About page: 2 cards per row)
   ========================================================== */
@media (max-width: 768px) {
  .amelle-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .amelle-team-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .amelle-team-avatar {
    width: 78px;
    height: 78px;
    margin: 0 auto 12px;
  }

  .amelle-team-name {
    font-size: 15px;
    margin: 8px 0 4px;
  }

  .amelle-team-role {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .amelle-social {
    width: 30px;
    height: 30px;
  }
}

/* Extra-small phones: still 2 per row but tighter */
@media (max-width: 380px) {
  .amelle-team-grid {
    gap: 12px;
  }

  .amelle-team-card {
    padding: 16px 12px;
  }

  .amelle-team-avatar {
    width: 72px;
    height: 72px;
  }
}
/* ==========================================================
   TESTIMONIALS (Fixed Profile Pic & Layout)
   ========================================================== */
.amelle-test-shell {
  position: relative;
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--amelle-border);
  border-radius: 30px;
  margin-top: 40px;
  overflow: hidden;
}
.amelle-test-track {
  height: 300px;
  position: relative;
}
.amelle-test-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 80px; /* Space for arrows */
  opacity: 0;
  transform: translateX(20px);
  transition: .6s;
}
.amelle-test-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}
.amelle-test-quote {
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.amelle-test-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.amelle-test-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.amelle-test-user b { display: block; color: var(--amelle-gold); }
.amelle-test-user span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* Testimonial Nav */
.amelle-test-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: .3s;
}
.amelle-test-arrow:hover { background: var(--amelle-gold); color: #000; }
.amelle-test-prev { left: 20px; }
.amelle-test-next { right: 20px; }

.amelle-test-dots {
  position: absolute;
  bottom: 20px;
  left: 0; 
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.amelle-test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
}
.amelle-test-dot.is-active { background: var(--amelle-gold); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  .amelle-products-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .amelle-test-slide { padding: 30px; }
  .amelle-test-arrow { display: none; } /* Hide arrows on mobile, use swipe/dots */
  .amelle-content h1 { font-size: 32px; }
}

/* ===========================
   OUR PARTNERS SECTION
   =========================== */

#amelle-partners {
  background: transparent;
}

#amelle-partners .amelle-kicker {
  text-align: left;
  margin-left: 0;
}

#amelle-partners .amelle-title {
  text-align: left;
  margin-left: 0;
}

#amelle-partners .amelle-subtitle {
  text-align: left;
  margin-left: 0;
}

/* Partners Container */
.amelle-partners-container {
  margin: 60px 0;
  overflow: hidden;
  position: relative;
}

.amelle-partners-track {
  display: flex;
  gap: 40px;
  animation: scroll-partners 30s linear infinite;
  padding: 20px 0;
  width: fit-content;
  align-items: center;
}

.amelle-partner-logo {
  flex: 0 0 auto;
  min-width: 240px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(214, 179, 106, 0.4);
  border-radius: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.amelle-partner-logo:hover {
  background: rgba(214, 179, 106, 0.08);
  border-color: rgba(214, 179, 106, 0.7);
  transform: scale(1.05);
}

.amelle-partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.amelle-partner-logo:hover img {
  filter: grayscale(0%);
}

/* Infinite Scroll Animation - Smooth loop */
@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 3 - 40px * 3));
  }
}

/* CTA - Simple text & button */
.amelle-partners-footer {
  text-align: center;
  margin-top: 20px;
}

.amelle-partners-footer p {
  font-size: 18px;
  color: var(--amelle-text);
  margin: 0 0 25px;
  font-weight: 400;
}

.amelle-partners-footer .amelle-btn {
  padding: 12px 32px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .amelle-partners-container {
    margin: 40px 0;
  }

  .amelle-partner-logo {
    min-width: 180px;
    height: 130px;
    padding: 20px;
  }

  .amelle-partners-track {
    gap: 25px;
  }

  @keyframes scroll-partners {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-180px * 3 - 25px * 3));
    }
  }

  .amelle-partners-footer {
    margin-top: 15px;
  }

  .amelle-partners-footer p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .amelle-partner-logo {
    min-width: 130px;
    height: 100px;
    padding: 15px;
    border-radius: 16px;
  }

  .amelle-partners-track {
    gap: 15px;
  }

  @keyframes scroll-partners {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-130px * 3 - 15px * 3));
    }
  }

  .amelle-partners-footer {
    margin-top: 15px;
  }

  .amelle-partners-footer p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .amelle-partners-footer .amelle-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}

/* =========================================
   FRONT PAGE – REDUCE SPACE BETWEEN SECTIONS
   Paste at END of style.css
   ========================================= */

#amelle-front-page section{
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* Reduce the specific huge gap after Latest Products */
#amelle-front-page #amelle-products{
  padding-bottom: 40px !important;
}

/* Bring Categories closer */
#amelle-front-page #amelle-collections{
  padding-top: 45px !important;
}

/* Reduce space between Categories and Our Team */
#amelle-front-page #amelle-collections{
  padding-bottom: 45px !important;
}
#amelle-front-page #amelle-team{
  padding-top: 55px !important;
}

/* Optional: reduce big title spacing inside each section */
#amelle-front-page .amelle-title{
  margin-bottom: 22px !important;
}
#amelle-front-page .amelle-subtitle{
  margin-bottom: 28px !important;
}

/* ==========================================================
   AMELLE SHOP PAGE (Template: page-amelle-shop.php)
   Scope: #amelle-shop-page
   Lux / dark / gold, smooth animations + working UI
   ========================================================== */

#amelle-shop-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-shadow: 0 18px 45px rgba(0,0,0,.45);
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 22px;

  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);

  color: var(--amelle-text);
  overflow-x: hidden;
  width: 100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-shop-page .amelle-wrap{
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
#amelle-shop-page .amelle-shop-header{
  text-align: left;
  margin-bottom: clamp(26px, 3vw, 38px);
  max-width: 78ch;
}
#amelle-shop-page .amelle-kicker{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-shop-page .amelle-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 650;
  letter-spacing: .4px;
}
#amelle-shop-page .amelle-subtitle{
  margin: 0;
  color: var(--amelle-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Layout */
#amelle-shop-page .amelle-shop-layout{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
}

/* Filters panel (desktop default) */
#amelle-shop-page .amelle-shop-filters{
  position: sticky;
  top: 22px;
  align-self: start;
  border-radius: var(--amelle-radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--amelle-border);
  box-shadow: var(--amelle-soft-shadow);
  overflow: hidden;
  padding: 18px;
}

#amelle-shop-page .amelle-filter-block{
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.06);
}
#amelle-shop-page .amelle-filter-block + .amelle-filter-block{ margin-top: 14px; }

#amelle-shop-page .amelle-filter-title{
  font-weight: 650;
  letter-spacing: .3px;
  color: rgba(255,255,255,.92);
  margin: 0 0 12px;
  font-size: 14px;
  position: relative;
  padding-left: 10px;
}
#amelle-shop-page .amelle-filter-title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: .9;
}

#amelle-shop-page .amelle-filter-list{
  display: grid;
  gap: 10px;
  max-height: 240px;
  overflow: auto;
  padding-right: 4px;
}
#amelle-shop-page .amelle-filter-list::-webkit-scrollbar{ width: 6px; }
#amelle-shop-page .amelle-filter-list::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.25);
  border-radius: 8px;
}

/* checkbox/radio */
#amelle-shop-page .amelle-check,
#amelle-shop-page .amelle-radio{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
#amelle-shop-page .amelle-check input,
#amelle-shop-page .amelle-radio input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#amelle-shop-page .amelle-check-ui{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--amelle-border-2);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
  position: relative;
  transition: .25s ease;
}
#amelle-shop-page .amelle-check input:checked + .amelle-check-ui{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.16);
}
#amelle-shop-page .amelle-check-ui::after{
  content:"";
  position:absolute;
  inset: 3px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: 0;
  transform: scale(.85);
  transition: .25s ease;
}
#amelle-shop-page .amelle-check input:checked + .amelle-check-ui::after{
  opacity: 1;
  transform: scale(1);
}

#amelle-shop-page .amelle-radio-ui{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border-2);
  background: rgba(255,255,255,.04);
  position: relative;
  transition: .25s ease;
}
#amelle-shop-page .amelle-radio-ui::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%) scale(.85);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: 0;
  transition: .25s ease;
}
#amelle-shop-page .amelle-radio input:checked + .amelle-radio-ui{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.12);
}
#amelle-shop-page .amelle-radio input:checked + .amelle-radio-ui::after{
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

#amelle-shop-page .amelle-check-text{ color: rgba(255,255,255,.85); }

#amelle-shop-page .amelle-hint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* Select */
#amelle-shop-page .amelle-select{ position: relative; }
#amelle-shop-page .amelle-select select{
  width: 100%;
  padding: 12px 42px 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  outline: none;
  transition: .25s ease;
  appearance: none;
}
#amelle-shop-page .amelle-select select:focus{
  border-color: rgba(214,179,106,.55);
  box-shadow: 0 0 0 4px rgba(214,179,106,.10);
}
#amelle-shop-page .amelle-select-icon{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
  pointer-events: none;
}

/* Buttons */
#amelle-shop-page .amelle-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  box-shadow: 0 14px 32px rgba(214,179,106,.20);
  border: 1px solid rgba(214,179,106,.25);
  cursor: pointer;
}
#amelle-shop-page .amelle-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 44px rgba(214,179,106,.26);
}
#amelle-shop-page .amelle-btn:active{
  transform: translateY(0px) scale(.99);
}
#amelle-shop-page .amelle-btn.is-ghost{
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1px solid var(--amelle-border);
  box-shadow: none;
}
#amelle-shop-page .amelle-btn.is-ghost:hover{
  border-color: rgba(214,179,106,.65);
  background: rgba(214,179,106,.08);
}
#amelle-shop-page .amelle-filter-clear{ margin-top: 12px; }

/* Icon button (reload + mobile filters) */
#amelle-shop-page .amelle-iconbtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
#amelle-shop-page .amelle-iconbtn:hover{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.10);
  transform: translateY(-2px);
}

/* Topbar */
#amelle-shop-page .amelle-shop-topbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--amelle-soft-shadow);
  margin-bottom: 16px;
}
#amelle-shop-page .amelle-results{
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

/* Products grid + card */
#amelle-shop-page .amelle-shop-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#amelle-shop-page .amelle-pcard{
  display:block;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--amelle-border);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transform: translateY(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  position: relative;
}
#amelle-shop-page .amelle-pcard:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.45);
  box-shadow: 0 22px 50px rgba(0,0,0,.50);
}

#amelle-shop-page .amelle-pmedia{
  position: relative;
  height: 320px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
#amelle-shop-page .amelle-pmedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-shop-page .amelle-pcard:hover .amelle-pmedia img{
  transform: scale(1.10);
  filter: contrast(1.04);
}
#amelle-shop-page .amelle-pimg-fallback{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(800px 320px at 20% 10%, rgba(214,179,106,.14), transparent 55%),
    rgba(255,255,255,.03);
}
#amelle-shop-page .amelle-pglow{
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), transparent 55%);
  opacity: .95;
  transition: opacity .35s ease;
}
#amelle-shop-page .amelle-pcard:hover .amelle-pglow{ opacity: 1; }

#amelle-shop-page .amelle-pbody{ padding: 18px 18px 16px; }
#amelle-shop-page .amelle-ptitle{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 650;
  color: rgba(255,255,255,.95);
  letter-spacing: .2px;
}
#amelle-shop-page .amelle-pmeta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
#amelle-shop-page .amelle-price{
  color: var(--amelle-gold);
  font-weight: 700;
  letter-spacing: .2px;
}
#amelle-shop-page .amelle-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}

#amelle-shop-page .amelle-pcta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-shop-page .amelle-cta-btn{
  font-weight: 650;
  color: rgba(255,255,255,.88);
  transition: color .25s ease, transform .25s ease;
}
#amelle-shop-page .amelle-cta-arrow{
  color: rgba(214,179,106,.95);
  transition: transform .25s ease, opacity .25s ease;
  opacity: .9;
}
#amelle-shop-page .amelle-pcard:hover .amelle-cta-btn{
  color: rgba(214,179,106,.95);
  transform: translateX(2px);
}
#amelle-shop-page .amelle-pcard:hover .amelle-cta-arrow{
  transform: translateX(4px);
  opacity: 1;
}

#amelle-shop-page .amelle-pcard:focus-visible,
#amelle-shop-page .amelle-btn:focus-visible,
#amelle-shop-page .amelle-iconbtn:focus-visible,
#amelle-shop-page select:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(214,179,106,.14);
  border-color: rgba(214,179,106,.55);
}

/* Empty state */
#amelle-shop-page .amelle-empty{ margin-top: 18px; }
#amelle-shop-page .amelle-empty-card{
  border-radius: 26px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--amelle-soft-shadow);
  padding: 26px;
  text-align: center;
}
#amelle-shop-page .amelle-empty-card h3{
  margin: 0 0 8px;
  color: rgba(255,255,255,.94);
}
#amelle-shop-page .amelle-empty-card p{
  margin: 0 0 18px;
  color: rgba(255,255,255,.65);
}

/* Reveal animations */
#amelle-shop-page .amelle-reveal,
#amelle-shop-page .amelle-reveal-card{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-shop-page .amelle-reveal.is-inview,
#amelle-shop-page .amelle-reveal-card.is-inview{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive (desktop->tablet) */
@media (max-width: 1100px){
  #amelle-shop-page .amelle-shop-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   MOBILE FILTERS DRAWER + FIX (ONLY mobile)
   Fixes the big issue: drawer transparency / text behind it
   ========================================================== */
#amelle-shop-page .amelle-btn,
#amelle-shop-page .amelle-iconbtn,
#amelle-shop-page .amelle-pcard{
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 900px){
  #amelle-shop-page{ padding: 56px 0; }
  #amelle-shop-page .amelle-wrap{ width: min(1180px, calc(100% - 26px)); }

  #amelle-shop-page .amelle-shop-layout{ grid-template-columns: 1fr; }

  #amelle-shop-page .amelle-shop-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #amelle-shop-page .amelle-pmedia{ height: 280px; }

  /* Make topbar sticky on mobile (nice) */
  #amelle-shop-page .amelle-shop-topbar{
    position: sticky;
    top: 0;
    z-index: 5;
  }

  /* MOBILE open filters button becomes TEXT */
  #amelle-shop-page .amelle-filter-open{
    width: auto;
    padding: 0 14px;
    height: 42px;
    border-radius: 999px;
    font-weight: 750;
    letter-spacing: .2px;
    background: rgba(255,255,255,.05);
  }

  /* Overlay stronger so page behind disappears (fix) */
  #amelle-shop-page .amelle-filter-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9997;
    opacity: 0;
    transition: opacity .22s ease;
  }
  #amelle-shop-page .amelle-filter-overlay.is-show{ opacity: 1; }

  /* Drawer: SOLID background (fix transparency issue) */
  #amelle-shop-page .amelle-shop-filters{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 9998;

    max-height: 86vh;
    overflow: auto;

    border-radius: 26px 26px 0 0;
    padding: 12px 14px 18px;

    background: rgba(6,6,6,.98);
    border: 1px solid rgba(255,255,255,.10);

    transform: translateY(110%);
    transition: transform .28s cubic-bezier(.2,.9,.2,1);

    box-shadow: 0 -22px 60px rgba(0,0,0,.65);
  }
  #amelle-shop-page .amelle-shop-filters.is-open{
    transform: translateY(0);
  }

  /* Lux handle on top of drawer */
  #amelle-shop-page .amelle-shop-filters::before{
    content:"";
    display:block;
    width: 56px;
    height: 5px;
    border-radius: 999px;
    margin: 4px auto 10px;
    background: rgba(255,255,255,.14);
  }

  /* Drawer header */
  #amelle-shop-page .amelle-filter-mobile-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 8px 4px 12px;
    margin-bottom: 6px;

    position: sticky;
    top: 0;
    z-index: 2;

    background: rgba(6,6,6,.98);
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  #amelle-shop-page .amelle-filter-mobile-title{
    color: rgba(255,255,255,.92);
    font-weight: 800;
    font-size: 15px;
  }
  #amelle-shop-page .amelle-filter-close{
    width: 42px;
    height: 42px;
  }

  #amelle-shop-page .amelle-filter-block{
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
  }

  /* Touch press feel (premium) */
  #amelle-shop-page .amelle-btn:active{
    transform: translateY(0) scale(.985);
    filter: brightness(1.04);
  }
  #amelle-shop-page .amelle-iconbtn:active{
    transform: translateY(0) scale(.96);
    background: rgba(214,179,106,.12);
    border-color: rgba(214,179,106,.55);
  }
  #amelle-shop-page .amelle-pcard:active{
    transform: translateY(-4px) scale(.99);
  }
}

@media (min-width: 901px){
  #amelle-shop-page .amelle-filter-open{ display: none !important; }
  #amelle-shop-page .amelle-filter-mobile-head{ display: none !important; }
}

/* Reduced motion friendly */
@media (prefers-reduced-motion: reduce){
  #amelle-shop-page .amelle-reveal,
  #amelle-shop-page .amelle-reveal-card,
  #amelle-shop-page .amelle-pcard,
  #amelle-shop-page .amelle-btn,
  #amelle-shop-page .amelle-iconbtn,
  #amelle-shop-page .amelle-pmedia img{
    transition: none !important;
    animation: none !important;
  }
}
/* ==========================================================
   PATCH: Fix "Sort" select dropdown (black bg + white text)
   Safe: does NOT affect layout, only select colors
   ========================================================== */

#amelle-shop-page .amelle-select select{
  background-color: rgba(0,0,0,.55) !important;
  color: rgba(255,255,255,.92) !important;
}

#amelle-shop-page .amelle-select select option{
  background: #0b0b0b !important;
  color: rgba(255,255,255,.95) !important;
}

/* On some mobile browsers, the dropdown uses system UI:
   this helps Safari/Chrome keep readable contrast */
#amelle-shop-page select{
  color-scheme: dark;
}
@media (max-width: 900px){
  #amelle-shop-page .amelle-filter-close{ display:none !important; }
}
/* ===== MOBILE: swipe down to close filters ===== */
@media (max-width: 900px){
  #amelle-shop-page .amelle-shop-filters{
    touch-action: pan-y;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
/* ==========================================================
   AMELLE GLOBAL HEADER (V3 - UPDATED)
   corners layout + smart hide + working category + view more
   ========================================================== */

:root{
  --amelle-bg: #060606;
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold: #d6b36a;
  --amelle-gold-2: #b08d3f;
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
}

html, body{ font-family:"Jost", sans-serif !important; }

/* Header */
.amelle-site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  /* MODIFICATION 6: More transparent background (0.75 opacity) */
  background:
    radial-gradient(900px 240px at 20% -50%, rgba(214,179,106,.12), transparent 58%),
    rgba(5,5,5,.75); 
  backdrop-filter: blur(20px); /* Stronger blur for glass effect */
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--amelle-border);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); /* Smooth hide animation */
}

/* MODIFICATION 7: Class to hide header on scroll */
.amelle-site-header.is-hidden {
  transform: translateY(-100%);
}

.amelle-header-wrap{
  /* MODIFICATION 1: Corner the icons (Full width) */
  width: 100%; 
  max-width: none; /* Removed the 1320px limit */
  padding: 10px 40px; /* Padding from edges */
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 24px;
}

/* Left pack */
.amelle-leftpack{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}

/* Hamburger */
.amelle-hamburger{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.amelle-hamburger span{
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: rgba(214,179,106,.92);
}
.amelle-hamburger:hover{
  transform: translateY(-2px);
  background: rgba(214,179,106,.10);
  border-color: rgba(214,179,106,.55);
}

/* Logo */
.amelle-header-logo{ display: inline-flex; align-items: center; }
.amelle-header-logo img{
  width: 84px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
  transition: transform .25s ease, filter .25s ease;
}
.amelle-header-logo:hover img{
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.55));
}

/* Search centered and bigger */
.amelle-header-search{
  position: relative;
  width: min(700px, 100%); /* Adjusted width since container is fluid */
  flex: 1;
  margin: 0 10px;
  z-index: 10000;
}

.amelle-search-shell{
  display: grid;
  grid-template-columns: 1fr 160px 54px; /* input | cat | button */
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.06);
  box-shadow: var(--amelle-soft-shadow);
  overflow: visible; /* Changed to visible for dropdown */
  position: relative;
  min-height: 52px;
}

.amelle-search-input{ display: flex; align-items: center; overflow: hidden; border-radius: 999px 0 0 999px; }
.amelle-search-input input{
  width: 100%;
  height: 52px;
  padding: 0 24px;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255,255,255,.92);
  font-family: "Jost", sans-serif;
  font-size: 15px;
}
.amelle-search-input input::placeholder{ color: rgba(255,255,255,.55); }

/* Category dropdown */
.amelle-cat-dd{
  position: relative;
  border-left: 1px solid rgba(255,255,255,.08);
}
.amelle-cat-btn{
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-family: "Jost", sans-serif;
  font-size: 14px;
}
.amelle-cat-caret{ color: rgba(214,179,106,.90); font-size: 10px; }

.amelle-cat-panel{
  position: absolute;
  right: 0; /* Align to right of category block */
  top: calc(100% + 14px);
  width: 240px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: #080808;
  box-shadow: 0 28px 70px rgba(0,0,0,.65);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .22s ease, visibility .18s;
  visibility: hidden;
  z-index: 99999;
}
.amelle-cat-panel::-webkit-scrollbar { width: 4px; }
.amelle-cat-panel::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

.amelle-cat-panel.is-show{ 
  opacity: 1;
  transform: translateY(0); 
  visibility: visible;
}

.amelle-cat-item{
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  color: rgba(255,255,255,.70);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  transition: all .2s ease;
}
.amelle-cat-item:hover{ background: rgba(214,179,106,.08); color: #fff; }
.amelle-cat-item.is-active{
  background: rgba(214,179,106,.14);
  color: var(--amelle-gold);
  font-weight: 600;
}

/* Search button far right */
.amelle-search-btn{
  height: 52px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  border-radius: 0 999px 999px 0;
  background: rgba(0,0,0,.15);
  color: rgba(214,179,106,.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s ease, transform .22s ease;
}
.amelle-search-btn:hover{
  background: rgba(214,179,106,.10);
}

/* Right icons */
.amelle-header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  justify-content: flex-end;
}
.amelle-header-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(214,179,106,.95);
  position: relative;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.amelle-header-icon:hover{
  transform: translateY(-2px);
  background: rgba(214,179,106,.10);
  border-color: rgba(214,179,106,.55);
}
.amelle-ico svg{ display: block; }

/* Cart badge */
.amelle-badge{
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  font-weight: 800;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* Search results */
.amelle-search-results{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,10,.98); /* Almost solid for readability */
  box-shadow: 0 28px 70px rgba(0,0,0,.75);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .22s ease, visibility 0.18s;
  visibility: hidden;
  z-index: 99999;
}
.amelle-search-results.is-show{ opacity: 1; transform: translateY(0); visibility: visible; }

.amelle-search-results-inner{
  max-height: 420px;
  overflow-y: auto;
}
.amelle-search-results-inner::-webkit-scrollbar{ width: 6px; }
.amelle-search-results-inner::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.25);
  border-radius: 10px;
}
.amelle-search-loading,
.amelle-search-empty{
  padding: 24px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  text-align: center;
}
.amelle-sitem{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s ease;
}
.amelle-sitem:hover{
  background: rgba(214,179,106,.08);
}
.amelle-simg{
  width: 56px; height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.amelle-simg img{ width: 100%; height: 100%; object-fit: cover; }
.amelle-simg-fallback{
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(214,179,106,.2), transparent);
}
.amelle-sname{
  color: rgba(255,255,255,.95);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.amelle-srow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.amelle-scat{ font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.5px; }
.amelle-sprice{ font-size: 13px; color: var(--amelle-gold); font-weight: 700; }

/* MODIFICATION 5: View More Button */
.amelle-view-more-link {
    display: block;
    text-align: center;
    padding: 14px;
    background: rgba(214,179,106, 0.1);
    color: var(--amelle-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.amelle-view-more-link:hover {
    background: rgba(214,179,106, 0.2);
}

/* Menu overlay + drawer (LEFT) */
.amelle-menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s;
}
.amelle-menu-overlay.is-show{ opacity: 1; visibility: visible; }

.amelle-menu-drawer{
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh; /* Dynamic viewport height */
  width: min(380px, 85vw);
  z-index: 9998;
  background: #0a0a0a;
  border-right: 1px solid rgba(255,255,255,.10);
  box-shadow: 26px 0 70px rgba(0,0,0,.60);
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
}
.amelle-menu-drawer.is-open{ transform: translateX(0); }

.amelle-menu-head{
  flex-shrink: 0; /* Prevents shrinking */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.amelle-menu-title{ font-weight: 800; font-size: 18px; color: #fff; }
.amelle-menu-close{
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.amelle-menu-close:hover{ background: rgba(255,255,255,.1); }

/* MODIFICATION 3: Scrollable Area Fix */
.amelle-menu-scroll{
  flex: 1;
  overflow-y: auto; /* Enable vertical scroll */
  padding: 20px;
  min-height: 0; /* Critical for flex child scrolling */
  overscroll-behavior: contain; /* Prevents body scroll chaining */
}
/* Visible scrollbar for user indication */
.amelle-menu-scroll::-webkit-scrollbar{ width: 5px; }
.amelle-menu-scroll::-webkit-scrollbar-track{ background: transparent; }
.amelle-menu-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.2);
  border-radius: 10px;
}

.amelle-menu-section{
  margin-bottom: 24px;
}
.amelle-menu-kicker{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amelle-gold);
  margin: 0 0 16px;
  opacity: 0.8;
}
.amelle-menu-link{
  display: flex;
  padding: 14px 16px;
  border-radius: 12px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: all .2s ease;
  margin-bottom: 4px;
  font-size: 16px;
}
.amelle-menu-link:hover{
  background: rgba(255,255,255,.04);
  color: #fff;
  transform: translateX(4px);
}

/* Mobile tweaks */
@media (max-width: 900px){
  .amelle-header-wrap{
    padding: 10px 16px; /* Smaller padding on mobile */
    gap: 12px;
  }
  .amelle-leftpack{ min-width: auto; gap: 8px; }
  .amelle-header-logo img{ width: 70px; }
  
  /* Compact search on mobile */
  .amelle-search-shell{ 
    grid-template-columns: 1fr 50px; /* Hide category on mobile if too small, or adjust */
  }
  .amelle-cat-dd { display: none; } /* Optional: Hide categories on very small screens to save space */
  .amelle-search-shell{ grid-template-columns: 1fr 48px; } /* Input + Button only */
  
  .amelle-header-search { margin: 0 5px; }
}
/* ... Keep all your existing Desktop CSS ... */

/* NEW UTILITY CLASSES */
.mobile-only { display: none; }
.desktop-only { display: inline-flex; }

/* MOBILE RESPONSIVE LOGIC */
@media (max-width: 1024px) {
    .desktop-only { display: none; }
    .mobile-only { display: inline-flex; }

    /* 1. Header Wrap Tweaks */
    .amelle-header-wrap {
        padding: 10px 20px;
        justify-content: space-between;
    }

    .amelle-leftpack {
        min-width: auto;
        gap: 12px;
    }

    /* 2. The Search "Trick" for Mobile */
    .amelle-header-search {
        position: absolute;
        top: 100%; /* Sits right under the header */
        left: 0;
        width: 100%;
        margin: 0;
        padding: 15px 20px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--amelle-border);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    /* When Search is Toggled Active */
    .amelle-header-search.is-mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    .amelle-search-shell {
        grid-template-columns: 1fr 48px; /* Remove category on mobile to keep it clean */
        background: rgba(255,255,255,0.08);
        min-height: 48px;
    }

    .amelle-cat-dd {
        display: none; /* Hide category selector on mobile for simplicity */
    }

    .amelle-search-input input {
        height: 48px;
        font-size: 16px; /* Prevents iOS zoom-in on focus */
    }

    .amelle-search-btn {
        height: 48px;
        width: 48px;
    }

    /* 3. Results Adjustment */
    .amelle-search-results {
        position: fixed;
        top: 135px; /* Adjust based on your header height */
        left: 10px;
        right: 10px;
        width: auto;
        max-height: 60vh;
    }

    .amelle-header-logo img {
        width: 70px;
    }

    /* 4. Action Icons */
    .amelle-header-actions {
        min-width: auto;
        gap: 8px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .amelle-header-wrap { padding: 8px 15px; }
    .amelle-hamburger { width: 38px; height: 38px; }
    .amelle-header-icon { width: 40px; height: 40px; }
}
/* Keep all your previous base CSS and add/overwrite these: */

.mobile-only { display: none; }

@media (max-width: 1024px) {
    .mobile-only { display: inline-flex; }

    /* 1. Account Icon: Ensure it is always visible on mobile */
    .amelle-header-actions {
        display: flex;
        gap: 8px;
        min-width: auto;
    }

    /* 2. Mobile Search Bar - Re-enable categories */
    .amelle-header-search.is-mobile-active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px;
        background: #0a0a0a;
        z-index: 100;
        border-bottom: 1px solid var(--amelle-border);
    }

    .amelle-search-shell {
        /* Matches your screenshot: Input | Category | Search Icon */
        display: grid;
        grid-template-columns: 1fr 100px 50px; 
        background: rgba(255,255,255,0.06);
        border-radius: 999px;
    }

    .amelle-cat-dd {
        display: block !important; /* Forces categories to show on mobile */
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .amelle-cat-btn {
        padding: 0 10px;
        font-size: 12px;
    }

    .amelle-cat-label {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .amelle-search-input input {
        padding-left: 15px;
        font-size: 14px;
    }

    /* 3. Results position adjustment */
    .amelle-search-results {
        position: fixed;
        top: 130px;
        left: 10px;
        right: 10px;
        width: auto;
    }
}

/* Scroll Hide Logic */
.amelle-site-header.is-hidden {
    transform: translateY(-100%);
}
/* Header Scroll Animation */
.amelle-site-header {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  will-change: transform;
}

/* This class will be added by JavaScript when scrolling down */
.amelle-site-header.is-hidden {
  transform: translateY(-100%);
}

/* Optional: Add a subtle shadow when scrolling starts */
.amelle-site-header.is-scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
/* ==========================================================
   AMELLE FOOTER (matches header: dark glass + gold glow + Jost)
   ========================================================== */

/* ==========================================================
   AMELLE FOOTER – MATCH HEADER GLASS STYLE
   ========================================================== */
.amelle-site-footer{
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;

  font-family: "Jost", sans-serif;
  color: rgba(255,255,255,.88);

  /* Same style as .amelle-site-header */
  background:
    radial-gradient(900px 240px at 20% -50%, rgba(214,179,106,.12), transparent 58%),
    rgba(5,5,5,.75);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-top: 1px solid var(--amelle-border);
  box-shadow: 0 -18px 45px rgba(0,0,0,.55);
}


.amelle-footer-wrap{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 46px 0 26px;

  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  gap: 34px;
  align-items: start;
}

/* Brand */
.amelle-footer-logo{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.amelle-footer-logo img{
  height: 62px;
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 35px rgba(0,0,0,.45));
  transition: transform .25s ease, filter .25s ease;
}
.amelle-footer-logo:hover img{
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.55));
}

.amelle-footer-about{
  margin: 14px 0 0;
  max-width: 52ch;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: 14px;
}

/* Titles */
.amelle-footer-title{
  font-weight: 750;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  margin: 6px 0 14px;
  position: relative;
  padding-left: 12px;
}
.amelle-footer-title::before{
  content:"";
  position:absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: .95;
}

/* Contact list */
.amelle-footer-contact{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 10px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
}

.amelle-footer-contact li{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.amelle-footer-contact a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  transition: color .2s ease;
}
.amelle-footer-contact a:hover{
  color: rgba(214,179,106,.95);
}

.amelle-fi{
  color: rgba(214,179,106,.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Social */
.amelle-footer-social{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.amelle-social{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: rgba(214,179,106,.95);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);

  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.amelle-social:hover{
  transform: translateY(-2px);
  background: rgba(214,179,106,.10);
  border-color: rgba(214,179,106,.38);
}

/* Links column (no title, as requested) */
.amelle-footer-links{
  display: grid;
  gap: 10px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
}

.amelle-footer-links a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.80);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.amelle-footer-links a:hover{
  transform: translateY(-2px);
  color: rgba(214,179,106,.95);
  border-color: rgba(214,179,106,.35);
  background: rgba(214,179,106,.08);
}

/* Bottom */
.amelle-footer-bottom{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 22px;
}
.amelle-footer-line{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(214,179,106,.28), transparent);
  opacity: .9;
  margin: 0 0 14px;
}
.amelle-footer-bottom-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px){
  .amelle-footer-wrap{
    width: min(1200px, calc(100% - 34px));
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0 18px;
  }
  .amelle-footer-bottom{
    width: min(1200px, calc(100% - 34px));
  }
  .amelle-footer-logo img{
    height: 56px;
  }
}
/* ==========================================================
   AMELLE COLLABORATION PAGE (Template: page-collaboration.php)
   Scoped to #amelle-collab to avoid breaking other pages
   ========================================================== */

#amelle-collab{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-shadow: 0 18px 45px rgba(0,0,0,.45);
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 22px;

  font-family: "Jost", sans-serif;
  color: var(--amelle-text);
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);
  padding: clamp(64px, 6vw, 110px) 0;
  overflow-x: hidden;
}

#amelle-collab .amelle-collab-wrap{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* Hero */
#amelle-collab .amelle-collab-hero{ padding-top: 10px; }
#amelle-collab .amelle-c-kicker{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-collab .amelle-c-title{
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.08;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 750;
  letter-spacing: .4px;
}
#amelle-collab .amelle-c-subtitle{
  margin: 0;
  color: var(--amelle-muted);
  line-height: 1.85;
  font-size: 15px;
  max-width: 78ch;
}

#amelle-collab .amelle-c-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

#amelle-collab .amelle-c-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  box-shadow: 0 14px 32px rgba(214,179,106,.20);
  border: 1px solid rgba(214,179,106,.25);
  cursor: pointer;
}
#amelle-collab .amelle-c-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 44px rgba(214,179,106,.26);
}
#amelle-collab .amelle-c-btn:active{ transform: translateY(0) scale(.99); }

#amelle-collab .amelle-c-btn.is-ghost{
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1px solid var(--amelle-border);
  box-shadow: none;
}
#amelle-collab .amelle-c-btn.is-ghost:hover{
  border-color: rgba(214,179,106,.65);
  background: rgba(214,179,106,.08);
}

/* Mini cards */
#amelle-collab .amelle-c-mini{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
#amelle-collab .amelle-c-mini-card{
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--amelle-soft-shadow);
  padding: 14px 14px 12px;
}
#amelle-collab .amelle-c-mini-top{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 750;
  color: rgba(255,255,255,.90);
  letter-spacing: .2px;
}
#amelle-collab .amelle-c-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  box-shadow: 0 0 0 4px rgba(214,179,106,.12);
}
#amelle-collab .amelle-c-mini-text{
  margin-top: 8px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  font-size: 13px;
}

/* Sections */
#amelle-collab .amelle-collab-section{
  padding-top: clamp(36px, 4vw, 62px);
}
#amelle-collab .amelle-c-head{
  margin-bottom: 16px;
  max-width: 80ch;
}
#amelle-collab .amelle-c-h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  color: rgba(255,255,255,.95);
  letter-spacing: .2px;
  font-weight: 800;
}
#amelle-collab .amelle-c-p{
  margin: 0;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  font-size: 14px;
}

/* Cards grid */
#amelle-collab .amelle-c-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
#amelle-collab .amelle-c-card{
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.42);
  padding: 18px 18px 16px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#amelle-collab .amelle-c-card:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.40);
  box-shadow: 0 22px 50px rgba(0,0,0,.55);
}
#amelle-collab .amelle-c-card-top{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 10px;
}
#amelle-collab .amelle-c-badge{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214,179,106,.10);
  border: 1px solid rgba(214,179,106,.25);
  color: rgba(214,179,106,.95);
  font-weight: 750;
  letter-spacing: .2px;
}
#amelle-collab .amelle-c-card h3{
  margin: 0 0 8px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 16px;
}
#amelle-collab .amelle-c-card p{
  margin: 0;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  font-size: 13px;
}

/* Steps */
#amelle-collab .amelle-c-steps{
  display: grid;
  gap: 12px;
}
#amelle-collab .amelle-c-step{
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--amelle-soft-shadow);
  padding: 16px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
}
#amelle-collab .amelle-c-step-num{
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: rgba(214,179,106,.95);
}
#amelle-collab .amelle-c-step-body h3{
  margin: 0 0 6px;
  color: rgba(255,255,255,.92);
  font-weight: 850;
  font-size: 16px;
}
#amelle-collab .amelle-c-step-body p{
  margin: 0;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  font-size: 13px;
}

/* CTA panel */
#amelle-collab .amelle-c-panel{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 280px at 15% 0%, rgba(214,179,106,.14), transparent 62%),
    rgba(255,255,255,.03);
  box-shadow: var(--amelle-shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
#amelle-collab .amelle-c-panel-right{
  display: grid;
  gap: 10px;
  justify-items: end;
}
#amelle-collab .amelle-c-note{
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* Reveal animations */
#amelle-collab .amelle-c-reveal,
#amelle-collab .amelle-c-reveal-card{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-collab .amelle-c-reveal.is-inview,
#amelle-collab .amelle-c-reveal-card.is-inview{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 1100px){
  #amelle-collab .amelle-c-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #amelle-collab .amelle-c-mini{ grid-template-columns: 1fr; }
  #amelle-collab .amelle-c-panel{ grid-template-columns: 1fr; }
  #amelle-collab .amelle-c-panel-right{ justify-items: start; }
}
@media (max-width: 560px){
  #amelle-collab .amelle-collab-wrap{ width: min(1180px, calc(100% - 26px)); }
  #amelle-collab .amelle-c-step{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  #amelle-collab .amelle-c-reveal,
  #amelle-collab .amelle-c-reveal-card,
  #amelle-collab .amelle-c-btn,
  #amelle-collab .amelle-c-card{
    transition: none !important;
    animation: none !important;
  }
}
/* ==========================================================
   AMELLE - CATEGORIES (COPY of Collections styling)
   Target: #amelle-categories-page
   Uses: amelle-col-* classes
   ========================================================== */

#amelle-categories-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-shadow: 0 18px 45px rgba(0,0,0,.45);
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 22px;

  font-family:"Jost",sans-serif;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);
  color: var(--amelle-text);
  overflow-x:hidden;
  width:100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-categories-page .amelle-col-wrap{
  width:min(1180px, calc(100% - 48px));
  margin-inline:auto;
}

/* Head */
#amelle-categories-page .amelle-col-head{
  text-align:left;
  margin-bottom: clamp(26px, 3vw, 38px);
  max-width:78ch;
}
#amelle-categories-page .amelle-col-kicker{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color: rgba(229,199,123,.95);
  margin:0 0 14px;
}
#amelle-categories-page .amelle-col-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height:1.1;
  margin:0 0 12px;
  color: var(--amelle-gold);
  font-weight:750;
  letter-spacing:.4px;
}
#amelle-categories-page .amelle-col-sub{
  margin:0;
  color: var(--amelle-muted);
  line-height:1.75;
  font-size:15px;
}

/* Blocks */
#amelle-categories-page .amelle-col-block{
  border-radius: 26px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.02);
  box-shadow: var(--amelle-soft-shadow);
  padding: 18px 18px 14px;
}
#amelle-categories-page .amelle-col-block + .amelle-col-block{
  margin-top: 16px;
}

#amelle-categories-page .amelle-col-block-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 14px;
}
#amelle-categories-page .amelle-col-h2{
  margin:0 0 6px;
  color: rgba(255,255,255,.95);
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
}
#amelle-categories-page .amelle-col-desc{
  margin:0;
  color: rgba(255,255,255,.65);
  line-height:1.75;
  font-size:13px;
  max-width: 70ch;
}
#amelle-categories-page .amelle-col-viewall{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
  color: rgba(255,255,255,.84);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
#amelle-categories-page .amelle-col-viewall:hover{
  transform: translateY(-2px);
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.08);
}
#amelle-categories-page .amelle-col-arrow{
  color: rgba(214,179,106,.95);
  transition: transform .22s ease;
}
#amelle-categories-page .amelle-col-viewall:hover .amelle-col-arrow{
  transform: translateX(3px);
}

/* Row wrap */
#amelle-categories-page .amelle-col-rowwrap{
  position:relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 12px 44px;
  overflow:hidden;
}

#amelle-categories-page .amelle-col-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(214,179,106,.28) rgba(255,255,255,.05);
}
#amelle-categories-page .amelle-col-row::-webkit-scrollbar{ height:8px; }
#amelle-categories-page .amelle-col-row::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.28);
  border-radius:999px;
}
#amelle-categories-page .amelle-col-row::-webkit-scrollbar-track{
  background: rgba(255,255,255,.05);
  border-radius:999px;
}

/* Row nav arrows */
#amelle-categories-page .amelle-col-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:36px;
  height:36px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.90);
  cursor:pointer;
  transition:.22s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  z-index:2;
}
#amelle-categories-page .amelle-col-nav:hover{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.10);
  transform: translateY(-50%) translateY(-2px);
}
#amelle-categories-page .amelle-col-prev{ left:10px; }
#amelle-categories-page .amelle-col-next{ right:10px; }

/* Cards */
#amelle-categories-page .amelle-col-card{
  flex: 0 0 260px;
  scroll-snap-align:start;
  display:block;
  border-radius:22px;
  overflow:hidden;
  text-decoration:none;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#amelle-categories-page .amelle-col-card:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.45);
  box-shadow: 0 22px 50px rgba(0,0,0,.50);
}

#amelle-categories-page .amelle-col-media{
  position:relative;
  height:240px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
#amelle-categories-page .amelle-col-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-media img{
  transform: scale(1.10);
  filter: contrast(1.04);
}
#amelle-categories-page .amelle-col-fallback{
  width:100%;
  height:100%;
  background:
    radial-gradient(800px 320px at 20% 10%, rgba(214,179,106,.14), transparent 55%),
    rgba(255,255,255,.03);
}
#amelle-categories-page .amelle-col-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), transparent 55%);
  opacity:.95;
  transition: opacity .35s ease;
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-glow{ opacity:1; }

#amelle-categories-page .amelle-col-body{ padding: 16px 16px 14px; }
#amelle-categories-page .amelle-col-name{
  color: rgba(255,255,255,.95);
  font-weight: 750;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.25;
}
#amelle-categories-page .amelle-col-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 14px;
}
#amelle-categories-page .amelle-col-price{
  color: var(--amelle-gold);
  font-weight: 800;
  letter-spacing: .2px;
}
#amelle-categories-page .amelle-col-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}

#amelle-categories-page .amelle-col-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-categories-page .amelle-col-ctatxt{
  font-weight: 750;
  color: rgba(255,255,255,.88);
  transition: color .25s ease, transform .25s ease;
}
#amelle-categories-page .amelle-col-ctaarr{
  color: rgba(214,179,106,.95);
  transition: transform .25s ease, opacity .25s ease;
  opacity:.9;
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-ctatxt{
  color: rgba(214,179,106,.95);
  transform: translateX(2px);
}
#amelle-categories-page .amelle-col-card:hover .amelle-col-ctaarr{
  transform: translateX(4px);
  opacity:1;
}

/* Skeleton */
#amelle-categories-page .amelle-col-skeleton{
  display:flex;
  gap:14px;
  padding: 4px 0;
}
#amelle-categories-page .amelle-col-skelcard{
  flex:0 0 260px;
  height: 320px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.08), rgba(255,255,255,.04));
  background-size: 240% 100%;
  animation: amelleSkel 1.2s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,.08);
}
@keyframes amelleSkel{
  0%{ background-position: 0% 0; }
  100%{ background-position: 100% 0; }
}
#amelle-categories-page .amelle-col-none{
  color: rgba(255,255,255,.65);
  padding: 18px 6px;
  font-size: 13px;
}

/* Empty */
#amelle-categories-page .amelle-col-empty{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 18px;
  color: rgba(255,255,255,.75);
}

/* Reveal animations */
#amelle-categories-page .amelle-col-reveal,
#amelle-categories-page .amelle-col-reveal-card{
  opacity:0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-categories-page .amelle-col-reveal.is-inview,
#amelle-categories-page .amelle-col-reveal-card.is-inview{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 900px){
  #amelle-categories-page{ padding: 56px 0; }
  #amelle-categories-page .amelle-col-wrap{
    width:min(1180px, calc(100% - 26px));
  }

  #amelle-categories-page .amelle-col-block{
    padding: 14px 14px 12px;
    border-radius: 22px;
  }

  #amelle-categories-page .amelle-col-block-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #amelle-categories-page .amelle-col-rowwrap{
    padding: 12px 12px;
  }

  /* hide nav arrows on mobile, swipe is better */
  #amelle-categories-page .amelle-col-nav{
    display:none;
  }

  #amelle-categories-page .amelle-col-card{
    flex: 0 0 84%;
  }
  #amelle-categories-page .amelle-col-media{
    height: 220px;
  }
  #amelle-categories-page .amelle-col-skelcard{
    flex: 0 0 84%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #amelle-categories-page .amelle-col-reveal,
  #amelle-categories-page .amelle-col-reveal-card,
  #amelle-categories-page .amelle-col-card,
  #amelle-categories-page .amelle-col-media img{
    transition:none !important;
    animation:none !important;
  }
}
/* ==========================================================
   AMELLE - COLLECTIONS (6 random collections)
   Target: #amelle-collections-page
   Same lux system as shop/categories pages
   ========================================================== */

#amelle-collections-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);

  font-family:"Jost",sans-serif;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);

  color: rgba(255,255,255,.88);
  overflow-x:hidden;
  width:100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-collections-page .amelle-col-wrap{
  width:min(1180px, calc(100% - 48px));
  margin-inline:auto;
}

/* Header */
#amelle-collections-page .amelle-col-head{
  text-align:left;
  margin-bottom: clamp(26px, 3vw, 38px);
  max-width:78ch;
}
#amelle-collections-page .amelle-col-kicker{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color: rgba(229,199,123,.95);
  margin:0 0 14px;
}
#amelle-collections-page .amelle-col-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height:1.1;
  margin:0 0 12px;
  color: var(--amelle-gold);
  font-weight:750;
  letter-spacing:.4px;
}
#amelle-collections-page .amelle-col-sub{
  margin:0;
  color: var(--amelle-muted);
  line-height:1.75;
  font-size:15px;
}

/* Block */
#amelle-collections-page .amelle-col-block{
  border-radius: 26px;
  border: 1px solid var(--amelle-border);
  background: rgba(255,255,255,.02);
  box-shadow: var(--amelle-soft-shadow);
  padding: 18px 18px 14px;
}
#amelle-collections-page .amelle-col-block + .amelle-col-block{ margin-top: 16px; }

#amelle-collections-page .amelle-col-block-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 14px;
}
#amelle-collections-page .amelle-col-h2{
  margin:0 0 6px;
  color: rgba(255,255,255,.95);
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
}
#amelle-collections-page .amelle-col-desc{
  margin:0;
  color: rgba(255,255,255,.65);
  line-height:1.75;
  font-size:13px;
  max-width: 70ch;
}

/* Row wrap */
#amelle-collections-page .amelle-col-rowwrap{
  position:relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 12px 44px;
  overflow:hidden;
}

#amelle-collections-page .amelle-col-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(214,179,106,.28) rgba(255,255,255,.05);
}
#amelle-collections-page .amelle-col-row::-webkit-scrollbar{ height: 8px; }
#amelle-collections-page .amelle-col-row::-webkit-scrollbar-thumb{
  background: rgba(214,179,106,.28);
  border-radius:999px;
}
#amelle-collections-page .amelle-col-row::-webkit-scrollbar-track{
  background: rgba(255,255,255,.05);
  border-radius:999px;
}

/* Row arrows */
#amelle-collections-page .amelle-col-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:36px;
  height:36px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.90);
  cursor:pointer;
  transition:.22s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  z-index:2;
}
#amelle-collections-page .amelle-col-nav:hover{
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.10);
  transform: translateY(-50%) translateY(-2px);
}
#amelle-collections-page .amelle-col-prev{ left:10px; }
#amelle-collections-page .amelle-col-next{ right:10px; }

/* Cards */
#amelle-collections-page .amelle-col-card{
  flex: 0 0 260px;
  scroll-snap-align:start;
  display:block;
  border-radius:22px;
  overflow:hidden;
  text-decoration:none;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#amelle-collections-page .amelle-col-card:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.45);
  box-shadow: 0 22px 50px rgba(0,0,0,.50);
}

#amelle-collections-page .amelle-col-media{
  position:relative;
  height:240px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
#amelle-collections-page .amelle-col-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-media img{
  transform: scale(1.10);
  filter: contrast(1.04);
}
#amelle-collections-page .amelle-col-fallback{
  width:100%;
  height:100%;
  background:
    radial-gradient(800px 320px at 20% 10%, rgba(214,179,106,.14), transparent 55%),
    rgba(255,255,255,.03);
}
#amelle-collections-page .amelle-col-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), transparent 55%);
  opacity:.95;
  transition: opacity .35s ease;
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-glow{ opacity:1; }

#amelle-collections-page .amelle-col-body{ padding: 16px 16px 14px; }
#amelle-collections-page .amelle-col-name{
  color: rgba(255,255,255,.95);
  font-weight: 750;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.25;
}
#amelle-collections-page .amelle-col-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 14px;
}
#amelle-collections-page .amelle-col-price{
  color: var(--amelle-gold);
  font-weight: 800;
}
#amelle-collections-page .amelle-col-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}
#amelle-collections-page .amelle-col-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-collections-page .amelle-col-ctatxt{
  font-weight: 750;
  color: rgba(255,255,255,.88);
  transition: color .25s ease, transform .25s ease;
}
#amelle-collections-page .amelle-col-ctaarr{
  color: rgba(214,179,106,.95);
  transition: transform .25s ease, opacity .25s ease;
  opacity:.9;
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-ctatxt{
  color: rgba(214,179,106,.95);
  transform: translateX(2px);
}
#amelle-collections-page .amelle-col-card:hover .amelle-col-ctaarr{
  transform: translateX(4px);
  opacity:1;
}

/* Skeleton */
#amelle-collections-page .amelle-col-skeleton{ display:flex; gap:14px; padding: 4px 0; }
#amelle-collections-page .amelle-col-skelcard{
  flex: 0 0 260px;
  height: 320px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.08), rgba(255,255,255,.04));
  background-size: 240% 100%;
  animation: amelleColSkel 1.2s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,.08);
}
@keyframes amelleColSkel{ 0%{background-position:0% 0;} 100%{background-position:100% 0;} }

#amelle-collections-page .amelle-col-empty{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 18px;
  color: rgba(255,255,255,.75);
}

/* Reveal */
#amelle-collections-page .amelle-col-reveal,
#amelle-collections-page .amelle-col-reveal-card{
  opacity:0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .9s ease, filter .9s ease;
  will-change: transform, opacity;
}
#amelle-collections-page .amelle-col-reveal.is-inview,
#amelle-collections-page .amelle-col-reveal-card.is-inview{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* Mobile */
@media (max-width: 900px){
  #amelle-collections-page{ padding: 56px 0; }
  #amelle-collections-page .amelle-col-wrap{ width:min(1180px, calc(100% - 26px)); }
  #amelle-collections-page .amelle-col-block{ padding: 14px 14px 12px; border-radius: 22px; }
  #amelle-collections-page .amelle-col-block-top{ flex-direction: column; align-items:flex-start; gap:10px; }
  #amelle-collections-page .amelle-col-rowwrap{ padding: 12px 12px; }
  #amelle-collections-page .amelle-col-nav{ display:none; }
  #amelle-collections-page .amelle-col-card{ flex: 0 0 84%; }
  #amelle-collections-page .amelle-col-media{ height: 220px; }
  #amelle-collections-page .amelle-col-skelcard{ flex: 0 0 84%; }
}
/* ==========================================================
   AMELLE - ABOUT PAGE (Template: page-about.php)
   Lux / dark / gold + reveal animations + responsive (FIXED MOBILE)
   ========================================================== */

#amelle-about-page{
  --am-bg:#060606;
  --am-text: rgba(255,255,255,.88);
  --am-muted: rgba(255,255,255,.68);
  --am-border: rgba(255,255,255,.10);
  --am-border2: rgba(255,255,255,.14);
  --am-gold:#d6b36a;
  --am-gold2:#b08d3f;
  --am-shadow: 0 18px 45px rgba(0,0,0,.45);
  --am-soft: 0 14px 30px rgba(0,0,0,.35);
  --am-radius: 26px;

  font-family: "Jost", sans-serif;
  color: var(--am-text);
  background: var(--am-bg);
  position: relative;
  overflow-x: hidden;
  width: 100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

/* Full page background */
#amelle-about-page .amelle-about-bg{
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('http://amellepii.local/wp-content/uploads/2025/12/amelle-hero-section-Copie-1.webp');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(1.05);
}
#amelle-about-page .amelle-about-bg::after{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.12), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.86));
}

/* Wrap */
#amelle-about-page .amelle-about-wrap{
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Hero */
#amelle-about-page .amelle-about-hero{
  border-radius: var(--am-radius);
  border: 1px solid var(--am-border);
  background: rgba(0,0,0,.30);
  box-shadow: var(--am-shadow);
  overflow: hidden;
  margin-bottom: 18px;
}

#amelle-about-page .amelle-about-hero-media{
  height: clamp(240px, 36vw, 460px);
  background-image: url('http://amellepii.local/wp-content/uploads/2025/12/banner-amelle-1.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
#amelle-about-page .amelle-about-hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 320px at 30% 25%, rgba(214,179,106,.18), transparent 60%),
    linear-gradient(to top, rgba(0,0,0,.86), transparent 60%);
}

#amelle-about-page .amelle-about-hero-content{
  padding: 22px 22px 26px;
}

#amelle-about-page .amelle-kicker{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 10px;
}

#amelle-about-page .amelle-title{
  margin: 0 0 10px;
  color: var(--am-gold);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .3px;
  text-shadow: 0 0 14px rgba(214,179,106,.14);
}

#amelle-about-page .amelle-subtitle{
  margin: 0;
  color: var(--am-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 78ch;
}

/* Cards / Sections */
#amelle-about-page .amelle-card{
  border-radius: var(--am-radius);
  border: 1px solid var(--am-border);
  background: rgba(0,0,0,.44);
  box-shadow: var(--am-soft);
  padding: 22px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
#amelle-about-page .amelle-card::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background: radial-gradient(420px 240px at 18% 18%, rgba(214,179,106,.10), transparent 62%);
  opacity: .9;
}

/* Titles */
#amelle-about-page .amelle-h2{
  margin: 0 0 12px;
  color: var(--am-gold);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(214,179,106,.10);
}
#amelle-about-page p{
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  font-size: 15px;
}
#amelle-about-page .amelle-card p + p{ margin-top: 12px; }

#amelle-about-page .amelle-highlight{
  color: rgba(229,199,123,.95);
  font-weight: 800;
  font-style: italic;
}

/* Split sections */
#amelle-about-page .amelle-split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: center;
}
#amelle-about-page .amelle-split.is-reverse{
  grid-template-columns: .9fr 1.1fr;
}
#amelle-about-page .amelle-split.is-reverse .amelle-text{ order: 2; }
#amelle-about-page .amelle-split.is-reverse .amelle-media{ order: 1; }

#amelle-about-page .amelle-media{
  border-radius: 20px;
  border: 1px solid var(--am-border2);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.03);
}
#amelle-about-page .amelle-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-about-page .amelle-media:hover img{
  transform: scale(1.08);
  filter: contrast(1.05);
}
#amelle-about-page .amelle-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), transparent 55%);
  opacity: .95;
}

/* Team */
#amelle-about-page .amelle-team-head{ margin-bottom: 14px; }
#amelle-about-page .amelle-muted{ color: var(--am-muted); margin-top: 10px; }

#amelle-about-page .amelle-team-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;
}

#amelle-about-page .amelle-member{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 26px rgba(0,0,0,.32);
  padding: 16px;
  text-align: center;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#amelle-about-page .amelle-member:hover{
  transform: translateY(-8px);
  border-color: rgba(214,179,106,.40);
  box-shadow: 0 22px 46px rgba(0,0,0,.55);
}

#amelle-about-page .amelle-avatar{
  width: 122px;
  height: 122px;
  border-radius: 999px;
  margin: 0 auto 12px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(214,179,106,.70);
  box-shadow: 0 0 18px rgba(214,179,106,.18);
}
#amelle-about-page .amelle-member h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,.95);
}
#amelle-about-page .amelle-role{
  margin: 0;
  color: rgba(229,199,123,.95);
  font-weight: 800;
  font-size: 13px;
}

/* Promise wide image */
#amelle-about-page .amelle-wide-media{
  margin-top: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.03);
}
#amelle-about-page .amelle-wide-img{
  height: clamp(210px, 28vw, 420px);
  background-image: url('http://amellepii.local/wp-content/uploads/2025/12/amelle-Our-Promise-to-You.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .75s ease, filter .75s ease;
}
#amelle-about-page .amelle-wide-media:hover .amelle-wide-img{
  transform: scale(1.06);
  filter: contrast(1.05);
}
#amelle-about-page .amelle-wide-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(520px 300px at 20% 20%, rgba(214,179,106,.16), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.72), transparent 60%);
}

/* Reveal animations */
#amelle-about-page .amelle-reveal,
#amelle-about-page .amelle-reveal-card{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .85s ease, transform .95s ease, filter .95s ease;
  will-change: transform, opacity;
}
#amelle-about-page .amelle-reveal.is-inview,
#amelle-about-page .amelle-reveal-card.is-inview{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ==========================================================
   RESPONSIVE (tablet)
   ========================================================== */
@media (max-width: 1100px){
  #amelle-about-page .amelle-team-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* ==========================================================
   MOBILE FIX (THIS IS THE IMPORTANT PART)
   ========================================================== */
@media (max-width: 900px){
  /* Better rhythm */
  #amelle-about-page{
    padding: 56px 0;
  }
  #amelle-about-page .amelle-about-wrap{
    width: min(1180px, calc(100% - 26px));
  }

  /* Fix mobile scroll/jank from fixed background */
  #amelle-about-page .amelle-about-bg{
    position: absolute;
    height: 100%;
  }

  /* Hero becomes compact + cleaner */
  #amelle-about-page .amelle-about-hero{
    border-radius: 22px;
  }
  #amelle-about-page .amelle-about-hero-media{
    height: 220px; /* mobile: not huge */
    background-position: center;
  }
  #amelle-about-page .amelle-about-hero-content{
    padding: 16px 16px 18px;
    text-align: left;
  }
  #amelle-about-page .amelle-kicker{
    margin-bottom: 8px;
  }
  #amelle-about-page .amelle-title{
    font-size: 26px;
    line-height: 1.12;
    margin-bottom: 10px;
  }
  #amelle-about-page .amelle-subtitle{
    font-size: 14px;
    line-height: 1.75;
  }

  /* Cards */
  #amelle-about-page .amelle-card{
    padding: 16px;
    border-radius: 22px;
  }
  #amelle-about-page .amelle-h2{
    font-size: 18px;
    letter-spacing: .8px;
    margin-bottom: 10px;
  }
  #amelle-about-page p{
    font-size: 14px;
    line-height: 1.8;
  }

  /* Split sections become stacked perfectly */
  #amelle-about-page .amelle-split,
  #amelle-about-page .amelle-split.is-reverse{
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  #amelle-about-page .amelle-split.is-reverse .amelle-text,
  #amelle-about-page .amelle-split.is-reverse .amelle-media{
    order: unset;
  }

  /* Images: consistent height & nicer cropping */
  #amelle-about-page .amelle-media{
    border-radius: 18px;
  }
  #amelle-about-page .amelle-media img{
    height: 210px;
    object-fit: cover;
  }

  /* Team: 2 columns on regular phones */
  #amelle-about-page .amelle-team-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
  }
  #amelle-about-page .amelle-member{
    padding: 14px 12px;
    border-radius: 20px;
  }
  #amelle-about-page .amelle-avatar{
    width: 86px;
    height: 86px;
    margin-bottom: 10px;
  }
  #amelle-about-page .amelle-member h3{
    font-size: 14px;
    margin-bottom: 4px;
  }
  #amelle-about-page .amelle-role{
    font-size: 12px;
  }

  /* Promise image: not too tall */
  #amelle-about-page .amelle-wide-img{
    height: 220px;
  }

  /* Prevent any weird overflow from long words */
  #amelle-about-page *{
    max-width: 100%;
  }
}

/* Extra small phones: 1 column team grid */
@media (max-width: 520px){
  #amelle-about-page .amelle-title{ font-size: 24px; }
  #amelle-about-page .amelle-team-grid{
    grid-template-columns: 1fr;
  }
  #amelle-about-page .amelle-member{
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  #amelle-about-page .amelle-avatar{
    margin: 0;
  }
}

/* Reduced motion friendly */
@media (prefers-reduced-motion: reduce){
  #amelle-about-page .amelle-reveal,
  #amelle-about-page .amelle-reveal-card,
  #amelle-about-page .amelle-media img,
  #amelle-about-page .amelle-wide-img{
    transition: none !important;
    animation: none !important;
  }
}
/* ==========================================================
   ABOUT – MOBILE: OUR TEAM FULL HEIGHT + 2 PER ROW (4 blocks)
   Desktop untouched. Forces no clipping and 2-column grid.
   ========================================================== */
@media (max-width: 900px){

  /* 1) Make sure the TEAM section can grow and never clips */
  #amelle-about-page .amelle-team,
  #amelle-about-page .amelle-team-section,
  #amelle-about-page .amelle-team-wrap,
  #amelle-about-page .amelle-team-card,
  #amelle-about-page .amelle-team-grid{
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* If your about page wrapper uses overflow hidden, stop it for team only */
  #amelle-about-page .amelle-team{
    overflow: visible !important;
  }

  /* 2) Force grid = 2 columns */
  #amelle-about-page .amelle-team-grid{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  /* 3) Compact vertical cards so 2-per-row looks clean */
  #amelle-about-page .amelle-member{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;

    padding: 14px 12px !important;
    min-height: 0 !important;
    height: auto !important;
  }

  #amelle-about-page .amelle-avatar{
    width: 76px !important;
    height: 76px !important;
    margin: 0 0 10px !important;
  }

  #amelle-about-page .amelle-member h3{
    margin: 0 0 8px !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  #amelle-about-page .amelle-role{
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    max-width: 18ch !important;
    overflow-wrap: anywhere !important;
  }

  /* 4) Add extra bottom spacing so last row never feels cut */
  #amelle-about-page .amelle-team{
    padding-bottom: 24px !important;
  }
}

/* Tiny phones fallback: still 2 columns but smaller avatar/text */
@media (max-width: 520px){
  #amelle-about-page .amelle-team-grid{
    gap: 10px !important;
  }
  #amelle-about-page .amelle-avatar{
    width: 68px !important;
    height: 68px !important;
  }
  #amelle-about-page .amelle-member h3{
    font-size: 13px !important;
  }
}
/* ==========================================================
   AMELLE CONTACT PAGE
   Scope: #amelle-contact-page
   ========================================================== */

#amelle-contact-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 24px;

  font-family: "Jost", sans-serif;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);

  color: var(--amelle-text);
  overflow-x:hidden;
  width:100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-contact-page .amelle-c-wrap{
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Head */
#amelle-contact-page .amelle-c-head{
  max-width: 78ch;
  margin-bottom: clamp(26px, 3vw, 38px);
  
  /* ANIMATION ADDED HERE */
  opacity: 0; /* Hidden initially */
  animation: amFadeUp 2.0s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
#amelle-contact-page .amelle-c-kicker{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-contact-page .amelle-c-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 750;
  letter-spacing: .4px;
}
#amelle-contact-page .amelle-c-sub{
  margin: 0;
  color: var(--amelle-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Grid */
#amelle-contact-page .amelle-c-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

/* Cards */
#amelle-contact-page .amelle-c-card{
  border-radius: var(--amelle-radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--amelle-border);
  box-shadow: var(--amelle-soft-shadow);
  padding: 20px;
  overflow: hidden;
  
  /* ANIMATION ADDED HERE */
  opacity: 0; /* Hidden initially */
  animation: amFadeUp 2.0s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered Delays for Cards */
#amelle-contact-page .amelle-c-formcard{
  animation-delay: 0.15s;
}
#amelle-contact-page .amelle-c-detailcard{
  animation-delay: 0.3s;
}

#amelle-contact-page .amelle-c-h2{
  margin: 0 0 16px;
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,.94);
  font-weight: 850;
  letter-spacing: .2px;
}
#amelle-contact-page .amelle-c-bar{
  width: 3px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: .95;
}

/* Form */
#amelle-contact-page .amelle-c-form{ margin-top: 8px; }
#amelle-contact-page .amelle-c-row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#amelle-contact-page .amelle-c-field{ margin-bottom: 14px; }
#amelle-contact-page .amelle-c-field label{
  display:block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin: 0 0 8px;
}
#amelle-contact-page .amelle-c-field input,
#amelle-contact-page .amelle-c-field textarea{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.92);
  padding: 14px 14px;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
  font-family: "Jost", sans-serif;
}
#amelle-contact-page .amelle-c-field textarea{
  min-height: 170px;
  resize: vertical;
}
#amelle-contact-page .amelle-c-field input:focus,
#amelle-contact-page .amelle-c-field textarea:focus{
  border-color: rgba(214,179,106,.55);
  box-shadow: 0 0 0 4px rgba(214,179,106,.10);
  background: rgba(0,0,0,.28);
}

#amelle-contact-page .amelle-c-actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

#amelle-contact-page .amelle-c-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.25);
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  font-weight: 850;
  cursor:pointer;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  box-shadow: 0 12px 30px rgba(214,179,106,.22);
  font-family:"Jost",sans-serif;
}
#amelle-contact-page .amelle-c-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 40px rgba(214,179,106,.26);
}
#amelle-contact-page .amelle-c-btn:disabled{
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
#amelle-contact-page .amelle-c-btn.is-loading{
  filter: grayscale(.1);
}
#amelle-contact-page .amelle-c-arr{
  font-weight: 900;
}

#amelle-contact-page .amelle-c-note{
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* Alert */
#amelle-contact-page .amelle-c-alert{
  display:none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.85);
}
#amelle-contact-page .amelle-c-alert.is-ok{
  border-color: rgba(214,179,106,.40);
  background: rgba(214,179,106,.10);
}
#amelle-contact-page .amelle-c-alert.is-err{
  border-color: rgba(255,120,120,.35);
  background: rgba(255,120,120,.10);
}

/* Details list */
#amelle-contact-page .amelle-c-list{
  display:grid;
  gap: 12px;
  margin-top: 8px;
}

#amelle-contact-page .amelle-c-item{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.07);
}

#amelle-contact-page .amelle-c-ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.22);
  background: rgba(214,179,106,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(214,179,106,.95);
  flex: 0 0 auto;
}

#amelle-contact-page .amelle-c-lbl{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 3px;
}
#amelle-contact-page .amelle-c-val{
  color: rgba(255,255,255,.92);
  font-weight: 400; 
  font-size: 15px; 
}
#amelle-contact-page .amelle-c-val a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
}
#amelle-contact-page .amelle-c-val a:hover{
  color: rgba(214,179,106,.95);
}

/* Socials */
#amelle-contact-page .amelle-c-socialblock{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-contact-page .amelle-c-socialtitle{
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
}
#amelle-contact-page .amelle-c-socials{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
#amelle-contact-page .amelle-c-social{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration:none;
  color: rgba(255,255,255,.90);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
#amelle-contact-page .amelle-c-social:hover{
  transform: translateY(-2px);
  border-color: rgba(214,179,106,.45);
  background: rgba(214,179,106,.08);
}
#amelle-contact-page .amelle-c-sico{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.22);
  background: rgba(214,179,106,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(214,179,106,.95);
}
#amelle-contact-page .amelle-c-handle{
  font-weight: 750;
  letter-spacing: .2px;
}

/* WhatsApp CSS */
#amelle-contact-page .amelle-c-whatsapp{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.25);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.90);
  text-decoration:none;
  font-weight: 850;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
#amelle-contact-page .amelle-c-whatsapp:hover{
  transform: translateY(-2px);
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.08);
}

/* Map */
#amelle-contact-page .amelle-c-map{
  margin-top: 14px;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
#amelle-contact-page .amelle-c-map iframe{
  width:100%;
  height: 280px;
  border:0;
  display:block;
}

/* Mobile */
@media (max-width: 900px){
  #amelle-contact-page{ padding: 56px 0; }
  #amelle-contact-page .amelle-c-wrap{ width: min(1180px, calc(100% - 26px)); }
  #amelle-contact-page .amelle-c-grid{ grid-template-columns: 1fr; gap: 16px; }

  /* Make FORM first, DETAILS second */
  #amelle-contact-page .amelle-c-formcard{ order: 1; }
  #amelle-contact-page .amelle-c-detailcard{ order: 2; }

  #amelle-contact-page .amelle-c-row2{ grid-template-columns: 1fr; }
  #amelle-contact-page .amelle-c-actions{ flex-direction: column; align-items: flex-start; }
  #amelle-contact-page .amelle-c-btn{ width: 100%; justify-content:center; }
  #amelle-contact-page .amelle-c-map iframe{ height: 240px; }
}

/* ==========================================================
   ANIMATION KEYFRAMES (Added)
   ========================================================== */
@keyframes amFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================
   AMELLE 404 PAGE - 4(BOTTLE)4 STYLE
   ========================================================== */

#amelle-404-page {
    --am-bg: #060606;
    --am-gold: #d6b36a;
    --am-gold-dark: #b08d3f;
    
    font-family: "Jost", sans-serif;
    background: 
        radial-gradient(circle at 50% 50%, rgba(214, 179, 106, 0.08), transparent 70%),
        var(--am-bg);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.amelle-404-container {
    max-width: 700px;
    width: 100%;
    animation: amFadeIn 1.2s ease forwards;
}

/* THE 4(BOTTLE)4 ALIGNMENT */
.amelle-404-brand-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.am-digit {
    font-size: clamp(100px, 20vw, 180px);
    font-weight: 700;
    line-height: 1;
    color: var(--am-gold);
    background: linear-gradient(180deg, #fff 20%, var(--am-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

/* BOTTLE REPLACING THE '0' */
.amelle-404-visual {
    position: relative;
    width: clamp(60px, 12vw, 100px);
    height: clamp(100px, 18vw, 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-bottle {
    width: 100%;
    height: 70%; /* Fits perfectly between the 4s */
    position: relative;
    z-index: 2;
}

.am-glass {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px 12px 25px 25px;
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.am-cap {
    position: absolute;
    top: -22%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 20%;
    background: linear-gradient(90deg, var(--am-gold), #fff, var(--am-gold-dark));
    border-radius: 4px 4px 0 0;
}

.am-liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15%;
    background: var(--am-gold);
    box-shadow: 0 0 20px var(--am-gold-dark);
}

.am-shadow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10px;
    background: rgba(0,0,0,0.8);
    border-radius: 50%;
    filter: blur(8px);
}

/* VAPOR */
.am-vapor {
    position: absolute;
    background: radial-gradient(circle, var(--am-gold), transparent 70%);
    border-radius: 50%;
    opacity: 0;
}
.v1 { width: 20px; height: 20px; bottom: 10%; left: 20%; animation: rise 4s infinite; }
.v2 { width: 30px; height: 30px; bottom: 10%; left: 40%; animation: rise 4s 1.2s infinite; }
.v3 { width: 15px; height: 15px; bottom: 10%; left: 65%; animation: rise 4s 0.6s infinite; }

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.4; }
    100% { transform: translateY(-150px) scale(3); opacity: 0; }
}

/* TEXT STYLES FROM PIC */
.amelle-404-sub {
    font-size: clamp(20px, 4vw, 28px);
    color: var(--am-gold);
    margin: 0 0 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: none; /* Matches your screenshot */
}

.amelle-404-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 450px;
}

/* BUTTON */
.amelle-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-dark));
    color: #000;
    text-decoration: none;
    font-weight: 650;
    transition: all 0.3s ease;
}

.amelle-404-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(214, 179, 106, 0.3);
}

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

/* MOBILE */
@media (max-width: 768px) {
    .amelle-404-brand-wrap { gap: 5px; }
    .am-digit { font-size: 100px; }
    .amelle-404-visual { width: 60px; height: 110px; }
}
/* ==========================================================
   AMELLE SINGLE PRODUCT PAGE - COMPLETE CSS 2.0
   Premium Luxury Fragrance E-commerce Design
   ========================================================== */

#amelle-product-page {
    /* ========== AMELLE DESIGN SYSTEM VARIABLES ========== */
    --am-bg: #060606;
    --am-bg-light: #0f0f0f;
    --am-panel: rgba(255,255,255,0.03);
    --am-panel-hover: rgba(255,255,255,0.06);
    --am-border: rgba(255,255,255,0.10);
    --am-border-hover: rgba(255,255,255,0.15);
    --am-gold: #d6b36a;
    --am-gold-light: #e8c895;
    --am-gold-2: #b08d3f;
    --am-gold-dark: #8b6a3a;
    --am-text: rgba(255,255,255,0.88);
    --am-text-light: rgba(255,255,255,0.75);
    --am-muted: rgba(255,255,255,0.60);
    --am-muted-dark: rgba(255,255,255,0.45);
    --am-radius: 24px;
    --am-radius-sm: 12px;
    --am-radius-xs: 8px;
    
    /* Background with luxury gradient */
    background: 
        radial-gradient(1200px 600px at 80% 15%, rgba(214,179,106,0.08), transparent 65%),
        linear-gradient(180deg, rgba(214,179,106,0.02) 0%, transparent 50%),
        var(--am-bg);
    
    color: var(--am-text);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: clamp(80px, 10vw, 140px) 20px;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== WRAPPER CONTAINER ========== */
.amelle-prod-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

/* ========== WOOCOMMERCE NOTICES STYLING ========== */
.amelle-prod-wrap .woocommerce-message,
.amelle-prod-wrap .woocommerce-info,
.amelle-prod-wrap .woocommerce-error {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border-left: 4px solid var(--am-gold);
    border-radius: var(--am-radius-sm);
    color: var(--am-text);
    padding: 18px 24px;
    margin-bottom: 30px;
    font-family: inherit;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.amelle-prod-wrap .woocommerce-message::before {
    color: var(--am-gold);
    font-weight: 700;
    font-size: 18px;
}

.amelle-prod-wrap .woocommerce-message .button {
    background: var(--am-gold);
    color: #000 !important;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-left: auto;
    transition: all 0.3s ease;
}

.amelle-prod-wrap .woocommerce-message .button:hover {
    background: var(--am-gold-light);
    transform: translateY(-2px);
}

/* ========== MAIN PRODUCT GRID ========== */
.amelle-prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    margin-bottom: 100px;
    align-items: start;
}

/* ========== LEFT: PRODUCT MEDIA/IMAGES ========== */
.amelle-prod-media {
    position: relative;
    border-radius: var(--am-radius);
    border: 1px solid var(--am-border);
    padding: 15px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(214,179,106,0.04), transparent 50%),
        var(--am-panel);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.amelle-prod-media:hover {
    border-color: rgba(214,179,106,0.3);
    box-shadow: 0 20px 60px rgba(214,179,106,0.1);
    background: 
        radial-gradient(circle at 30% 30%, rgba(214,179,106,0.06), transparent 50%),
        var(--am-panel-hover);
}

/* Main Product Image Shell */
.amelle-prod-img-shell {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: rgba(0,0,0,0.5);
}

.amelle-prod-img-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.amelle-prod-media:hover .amelle-prod-img-shell img {
    transform: scale(1.08);
}

/* Placeholder for missing image */
.amelle-prod-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,179,106,0.1), rgba(214,179,106,0.05));
    color: var(--am-muted);
    font-size: 16px;
    font-weight: 500;
}

/* Glow effect on images */
.amelle-prod-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(214,179,106,0.12), transparent 70%);
    pointer-events: none;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.amelle-prod-media:hover .amelle-prod-glow {
    opacity: 1;
}

/* Gallery Thumbnails */
.amelle-gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding: 10px 0;
    overflow-x: auto;
}

.amelle-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--am-radius-sm);
    border: 2px solid var(--am-border);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.amelle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amelle-thumb:hover,
.amelle-thumb.active {
    border-color: var(--am-gold);
    box-shadow: 0 0 12px rgba(214,179,106,0.3);
}

.amelle-thumb:hover img,
.amelle-thumb.active img {
    transform: scale(1.1);
}

/* ========== RIGHT: PRODUCT INFORMATION ========== */
.amelle-prod-info {
    display: flex;
    flex-direction: column;
}

/* Meta Top: Category & Stock */
.amelle-prod-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--am-border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    gap: 20px;
}

.amelle-category-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.amelle-prod-cat {
    color: var(--am-gold);
    font-weight: 600;
    transition: color 0.3s ease;
}

.amelle-prod-cat a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.amelle-prod-cat a:hover {
    color: var(--am-gold-light);
}

/* Stock Status */
.amelle-prod-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--am-border);
}

.amelle-prod-stock .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.amelle-prod-stock.is-instock {
    color: #a4d66a;
    border-color: rgba(164,214,106,0.3);
}

.amelle-prod-stock.is-instock .dot {
    background: #a4d66a;
    box-shadow: 0 0 10px rgba(164,214,106,0.5);
    animation: pulse-green 2s ease-in-out infinite;
}

.amelle-prod-stock.is-outstock {
    color: #ff6b6b;
    border-color: rgba(255,107,107,0.3);
}

.amelle-prod-stock.is-outstock .dot {
    background: #ff6b6b;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Product Title */
.amelle-prod-title {
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.15;
    color: var(--am-gold);
    margin: 0 0 20px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(214,179,106,0.1);
}

/* SKU */
.amelle-prod-sku {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--am-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amelle-prod-sku .label {
    font-weight: 600;
    color: var(--am-muted-dark);
}

.amelle-prod-sku .value {
    color: var(--am-text-light);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Price */
.amelle-prod-price {
    font-size: 32px;
    color: var(--am-gold-light);
    font-weight: 700;
    margin: 20px 0 24px;
    padding: 16px 0;
    border-top: 1px solid var(--am-border);
    border-bottom: 1px solid var(--am-border);
}

.amelle-prod-price .amount {
    color: inherit;
}

.amelle-prod-price .woocommerce-price-suffix {
    font-size: 13px;
    color: var(--am-muted);
}

/* Short Description */
.amelle-prod-short-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--am-text);
    margin-bottom: 28px;
    padding: 20px;
    background: var(--am-panel);
    border-radius: var(--am-radius-sm);
    border-left: 3px solid var(--am-gold);
}

.amelle-prod-short-desc p {
    margin: 0;
}

/* ========== ADD TO CART BUTTON ========== */
.amelle-prod-actions {
    margin-bottom: 32px;
}

/* Cart Form Container */
.amelle-prod-actions form.cart {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Quantity Input */
.amelle-prod-actions .quantity {
    display: flex;
    position: relative;
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.amelle-prod-actions .quantity:focus-within {
    border-color: var(--am-gold);
    background: var(--am-panel-hover);
    box-shadow: 0 0 0 3px rgba(214,179,106,0.1);
}

.amelle-prod-actions .quantity input.qty {
    background: transparent;
    border: none;
    color: var(--am-text);
    width: 80px;
    height: 56px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    transition: color 0.3s ease;
}

.amelle-prod-actions .quantity input.qty:focus {
    outline: none;
    color: var(--am-gold);
}

/* Remove spinner arrows */
.amelle-prod-actions input[type=number]::-webkit-inner-spin-button,
.amelle-prod-actions input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.amelle-prod-actions input[type=number] {
    -moz-appearance: textfield;
}

/* Add to Cart Button */
.amelle-prod-actions button[type="submit"].single_add_to_cart_button,
.amelle-prod-actions button[type="submit"].add_to_cart_button {
    background: linear-gradient(135deg, var(--am-gold) 0%, var(--am-gold-2) 100%);
    color: #000000 !important;
    border: none;
    padding: 0 48px;
    height: 56px;
    border-radius: var(--am-radius-sm);
    font-weight: 800;
    font-size: 15px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    flex-grow: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button::before,
.amelle-prod-actions button[type="submit"].add_to_cart_button::before {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button:hover,
.amelle-prod-actions button[type="submit"].add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(214,179,106,0.4);
    letter-spacing: 3px;
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button:hover::before,
.amelle-prod-actions button[type="submit"].add_to_cart_button:hover::before {
    transform: translateX(4px);
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button:active,
.amelle-prod-actions button[type="submit"].add_to_cart_button:active {
    transform: translateY(0);
}

/* Product Add to Cart Variations (for variable products) */
.amelle-prod-actions .variations {
    width: 100%;
}

.amelle-prod-actions .variations table {
    width: 100%;
    margin-bottom: 20px;
}

.amelle-prod-actions .variations td {
    padding: 12px 0;
    border-bottom: 1px solid var(--am-border);
}

.amelle-prod-actions .variations label {
    color: var(--am-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 8px;
    display: block;
}

.amelle-prod-actions .variations select {
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    color: var(--am-text);
    padding: 10px 14px;
    border-radius: var(--am-radius-xs);
    font-family: inherit;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amelle-prod-actions .variations select:hover,
.amelle-prod-actions .variations select:focus {
    border-color: var(--am-gold);
    background: var(--am-panel-hover);
    outline: none;
}

/* ========== EXTRA FEATURES ========== */
.amelle-prod-extra {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--am-border);
}

.amelle-prod-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: var(--am-panel);
    border-radius: var(--am-radius-sm);
    border: 1px solid var(--am-border);
    transition: all 0.3s ease;
}

.amelle-prod-feature:hover {
    background: var(--am-panel-hover);
    border-color: rgba(214,179,106,0.2);
    transform: translateY(-2px);
}

.amelle-prod-feature .icon {
    font-size: 24px;
    color: var(--am-gold);
    line-height: 1;
}

.amelle-prod-feature span:not(.icon) {
    font-size: 13px;
    color: var(--am-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== PRODUCT DESCRIPTION SECTION ========== */
.amelle-prod-description {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: clamp(30px, 5vw, 50px);
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
}

.amelle-desc-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--am-text);
}

.amelle-desc-content p {
    margin-bottom: 16px;
}

.amelle-desc-content p:last-child {
    margin-bottom: 0;
}

.amelle-desc-content ul,
.amelle-desc-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.amelle-desc-content li {
    margin-bottom: 8px;
}

.amelle-desc-content strong {
    color: var(--am-gold);
    font-weight: 700;
}

.amelle-desc-content em {
    color: var(--am-text-light);
    font-style: italic;
}

/* ========== REVIEWS/COMMENTS SECTION ========== */
.amelle-prod-content {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: clamp(30px, 5vw, 50px);
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
}

.amelle-comments-section {
    color: var(--am-text);
}

/* Heading */
.amelle-h2 {
    font-size: 28px;
    color: var(--am-gold);
    margin: 0 0 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--am-border);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Review List */
.amelle-comments-section ol.commentlist {
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}

.amelle-comments-section li.comment {
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius-sm);
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.amelle-comments-section li.comment:hover {
    background: var(--am-panel-hover);
    border-color: rgba(214,179,106,0.2);
}

.amelle-comments-section .comment-text {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 12px;
}

.amelle-comments-section .meta {
    color: var(--am-gold);
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amelle-comments-section .comment-author {
    color: var(--am-text);
    font-weight: 700;
    margin-bottom: 8px;
}

.amelle-comments-section .comment-content p {
    margin-bottom: 0;
    line-height: 1.8;
}

.amelle-comments-section .star-rating {
    margin-bottom: 12px;
}

.amelle-comments-section .star-rating span {
    color: var(--am-gold);
}

/* "No Comments" Message */
.no-comments {
    color: var(--am-muted);
    text-align: center;
    padding: 40px 20px;
    font-size: 15px;
}

/* Review Form - "Leave a Reply" */
#review_form_wrapper {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--am-border);
}

#review_form_wrapper #reply-title,
.comment-form-title {
    color: var(--am-gold);
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Form Labels */
.comment-form label {
    color: var(--am-text);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.comment-form-rating {
    margin-bottom: 24px;
}

.comment-form-rating .stars {
    margin-top: 10px;
}

/* Form Inputs & Textarea */
#review_form textarea,
#review_form input[type="text"],
#review_form input[type="email"],
#review_form input[type="url"] {
    background: var(--am-bg-light);
    border: 1px solid var(--am-border);
    color: var(--am-text);
    padding: 14px 16px;
    border-radius: var(--am-radius-xs);
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#review_form textarea:focus,
#review_form input[type="text"]:focus,
#review_form input[type="email"]:focus,
#review_form input[type="url"]:focus {
    border-color: var(--am-gold);
    background: rgba(214,179,106,0.02);
    outline: none;
    box-shadow: 0 0 0 3px rgba(214,179,106,0.1);
}

#review_form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
#review_form .submit,
.comment-form-submit button {
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000 !important;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#review_form .submit:hover,
.comment-form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214,179,106,0.4);
    filter: brightness(1.08);
}

/* ========== RELATED PRODUCTS SECTION ========== */
.amelle-related {
    margin-bottom: 80px;
}

.amelle-related-head {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.amelle-h3 {
    font-size: 24px;
    color: var(--am-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    margin: 0;
    font-weight: 700;
}

.amelle-line {
    height: 2px;
    background: linear-gradient(90deg, var(--am-border), transparent);
    width: 100%;
}

/* Related Products Grid */
.amelle-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.amelle-rel-card {
    text-decoration: none;
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.amelle-rel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214,179,106,0.4);
    background: var(--am-panel-hover);
    box-shadow: 0 20px 50px rgba(214,179,106,0.15);
}

.amelle-rel-media {
    height: 280px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.amelle-rel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amelle-rel-card:hover .amelle-rel-media img {
    transform: scale(1.08);
}

.amelle-rel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,179,106,0.1), rgba(214,179,106,0.05));
    color: var(--am-muted);
    font-size: 14px;
}

.amelle-rel-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.amelle-rel-info h4 {
    margin: 0 0 12px;
    color: var(--am-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.amelle-rel-card:hover .amelle-rel-info h4 {
    color: var(--am-gold-light);
}

.amelle-rel-info .price {
    color: var(--am-gold);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Show All Products Button */
.amelle-show-all-wrap {
    text-align: center;
}

.amelle-btn-ghost {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--am-border);
    color: var(--am-text);
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.amelle-btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.amelle-btn-ghost:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.amelle-btn-ghost:hover {
    color: #000;
    border-color: var(--am-gold);
}

/* ========== ANIMATIONS ========== */
@keyframes amLuxReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) perspective(1000px) rotateX(10deg);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) perspective(1000px) rotateX(0deg);
        filter: blur(0);
    }
}

.animate-reveal {
    opacity: 0;
    will-change: transform, opacity, filter;
    animation: amLuxReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1024px) {
    .amelle-prod-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .amelle-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #amelle-product-page {
        padding: 60px 16px;
    }
    
    .amelle-prod-grid {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .amelle-prod-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    .amelle-prod-price {
        font-size: 24px;
    }
    
    .amelle-prod-actions form.cart {
        flex-direction: column;
    }
    
    .amelle-prod-actions button[type="submit"],
    .amelle-prod-actions .quantity {
        width: 100%;
    }
    
    .amelle-prod-extra {
        grid-template-columns: 1fr 1fr;
    }
    
    .amelle-prod-content,
    .amelle-prod-description {
        padding: 24px;
    }
    
    .amelle-h2 {
        font-size: 22px;
    }
    
    .amelle-h3 {
        font-size: 18px;
    }
    
    .amelle-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .amelle-rel-media {
        height: 220px;
    }
    
    .amelle-related-head {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #amelle-product-page {
        padding: 40px 12px;
    }
    
    .amelle-prod-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .amelle-prod-title {
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .amelle-prod-price {
        font-size: 20px;
    }
    
    .amelle-prod-extra {
        grid-template-columns: 1fr;
    }
    
    .amelle-prod-actions form.cart {
        flex-direction: column;
        gap: 10px;
    }
    
    .amelle-prod-actions button[type="submit"]::before {
        display: none;
    }
    
    .amelle-related-grid {
        grid-template-columns: 1fr;
    }
    
    .amelle-rel-media {
        height: 200px;
    }
    
    .amelle-gallery-thumbnails {
        gap: 8px;
    }
    
    .amelle-thumb {
        width: 60px;
        height: 60px;
    }
    
    .amelle-h2,
    .amelle-h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .amelle-prod-content,
    .amelle-prod-description {
        padding: 18px;
        margin-bottom: 40px;
    }
    
    #review_form_wrapper {
        margin-top: 24px;
        padding-top: 24px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    #amelle-product-page {
        background: white;
        color: black;
    }
    
    .amelle-prod-media,
    .amelle-prod-actions,
    .amelle-comments-section,
    #review_form_wrapper {
        page-break-inside: avoid;
    }
}

/* ==========================================================
   AMELLE SHOPPING CART - CSS v4.0 FINAL
   FAST ANIMATIONS | WORKING PROMO | NO DELAYS
   ========================================================== */

#amelle-cart-page {
    --am-bg: #060606;
    --am-bg-light: #0f0f0f;
    --am-panel: rgba(255,255,255,0.03);
    --am-panel-hover: rgba(255,255,255,0.06);
    --am-border: rgba(255,255,255,0.10);
    --am-gold: #d6b36a;
    --am-gold-light: #e8c895;
    --am-gold-2: #b08d3f;
    --am-text: rgba(255,255,255,0.88);
    --am-muted: rgba(255,255,255,0.60);
    --am-radius: 24px;
    --am-radius-sm: 12px;
    --am-radius-xs: 8px;
    
    background: 
        radial-gradient(1200px 600px at 80% 15%, rgba(214,179,106,0.08), transparent 65%),
        linear-gradient(180deg, rgba(214,179,106,0.02) 0%, transparent 50%),
        var(--am-bg);
    
    color: var(--am-text);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: clamp(40px, 5vw, 80px) 20px;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.am-cart-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ========== HEADER ========== */
.am-cart-head {
    margin-bottom: 50px;
    text-align: center;
}

.am-cart-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--am-gold);
    font-weight: 700;
    margin: 0 0 12px;
}

.am-cart-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--am-gold);
    margin: 0;
    letter-spacing: -1px;
}

/* ========== GRID LAYOUT ========== */
.am-cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-bottom: 80px;
}

/* ========== CART LIST ========== */
.am-cart-list {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    overflow: hidden;
}

.am-cart-header-row {
    display: grid;
    grid-template-columns: 100px 1fr 100px 80px 80px 50px;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(214,179,106,0.05);
    border-bottom: 2px solid var(--am-border);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--am-gold);
    align-items: center;
}

.am-items-list {
    display: flex;
    flex-direction: column;
}

/* ========== CART ITEM ========== */
.am-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px 80px 80px 50px;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--am-border);
    align-items: center;
    background: transparent;
    transition: background 0.15s ease;
}

.am-cart-item:hover {
    background: var(--am-panel);
}

.am-cart-item:last-child {
    border-bottom: none;
}

/* FAST REMOVE ANIMATION */
.am-cart-item.removing {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: all 0.15s ease;
}

/* Item Image */
.am-item-img {
    width: 100px;
    height: 130px;
    border-radius: var(--am-radius-sm);
    overflow: hidden;
    border: 1px solid var(--am-border);
    background: rgba(0,0,0,0.3);
}

.am-item-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.am-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease;
}

.am-item-img a:hover img {
    transform: scale(1.05);
}

.am-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,179,106,0.1), rgba(214,179,106,0.05));
    color: var(--am-muted);
    font-size: 11px;
}

/* Item Details */
.am-item-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.am-item-name {
    color: var(--am-text);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.15s ease;
}

.am-item-name:hover {
    color: var(--am-gold-light);
}

.am-item-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--am-muted);
    flex-wrap: wrap;
}

.am-variation {
    color: var(--am-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Item Price */
.am-item-price {
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-item-price .amount {
    font-size: 15px;
    color: var(--am-gold);
}

/* Item Qty */
.am-item-qty {
    text-align: center;
    display: flex;
    justify-content: center;
}

.am-qty-badge {
    background: var(--am-gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

/* Item Total */
.am-item-total {
    text-align: right;
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
}

.am-item-total .amount {
    font-size: 15px;
    color: var(--am-gold-light);
}

/* ========== REMOVE BUTTON ========== */
.am-item-remove {
    display: flex;
    justify-content: center;
}

.am-remove-form {
    display: flex;
    margin: 0;
    padding: 0;
}

.am-remove-btn {
    background: transparent;
    border: 1px solid var(--am-border);
    color: var(--am-muted);
    width: 40px;
    height: 40px;
    border-radius: var(--am-radius-xs);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    padding: 0;
    font-size: 0;
}

.am-remove-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: scale(1.08);
}

.am-remove-btn:active {
    transform: scale(0.95);
}

.am-remove-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* ========== SIDEBAR ========== */
.am-cart-sidebar {
    position: sticky;
    top: 100px;
}

.am-cart-summary {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: 28px;
}

.am-sum-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--am-gold);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--am-border);
}

.am-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
}

.am-sum-row .label {
    color: var(--am-muted);
    font-weight: 600;
}

.am-sum-row .value {
    font-weight: 600;
    color: var(--am-text);
}

.am-muted-text {
    color: var(--am-muted) !important;
    font-style: italic;
    font-size: 12px;
}

/* ========== PROMO CODE - WORKING VERSION ========== */
.am-promo-form {
    margin: 16px 0;
}

.am-promo-wrap {
    display: flex;
    gap: 8px;
    border-radius: var(--am-radius-sm);
    border: 1px solid var(--am-border);
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.am-promo-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--am-text);
    padding: 12px 14px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: color 0.15s ease;
}

.am-promo-input::placeholder {
    color: rgba(255,255,255,0.40);
}

.am-promo-input:focus {
    color: var(--am-gold);
}

.am-promo-btn {
    background: transparent;
    border: none;
    color: var(--am-gold);
    padding: 12px 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-promo-btn:hover {
    color: var(--am-gold-light);
    transform: translateX(2px);
}

/* ========== TOTALS ========== */
.am-sum-divider {
    height: 1px;
    background: var(--am-border);
    margin: 16px 0;
}

.am-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--am-border);
    border-bottom: 1px solid var(--am-border);
}

.am-sum-total .label {
    font-weight: 700;
    font-size: 15px;
    color: var(--am-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.am-sum-total .value {
    font-weight: 800;
    font-size: 18px;
    color: var(--am-gold-light);
}

/* ========== BUTTONS ========== */
.am-checkout-btn,
.am-continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000 !important;
    border: none;
    padding: 12px 24px;
    height: 50px;
    border-radius: var(--am-radius-sm);
    font-weight: 800;
    font-size: 13px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    width: 100%;
    margin-bottom: 10px;
}

.am-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214,179,106,0.3);
}

.am-continue-shopping {
    background: transparent;
    border: 1px solid var(--am-border);
    color: var(--am-text) !important;
    margin-bottom: 16px;
}

.am-continue-shopping:hover {
    border-color: var(--am-gold);
    color: var(--am-gold) !important;
}

.am-btn-arrow {
    font-size: 16px;
    transition: transform 0.15s ease;
}

.am-checkout-btn:hover .am-btn-arrow {
    transform: translateX(3px);
}

/* ========== SECURE NOTE ========== */
.am-secure-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--am-muted);
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--am-border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.am-secure-note svg {
    flex-shrink: 0;
    color: var(--am-gold);
}

/* ========== EMPTY STATE ========== */
.am-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.am-empty-icon {
    margin-bottom: 30px;
}

.am-empty-icon svg {
    color: var(--am-gold);
    opacity: 0.6;
}

.am-empty-state h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--am-text);
    margin: 0 0 12px;
}

.am-empty-state p {
    font-size: 15px;
    color: var(--am-muted);
    margin: 0 0 40px;
    max-width: 400px;
}

.am-return-btn {
    margin-top: 20px;
}

/* ========== FAST ANIMATIONS ========== */
@keyframes amReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-reveal {
    animation: amReveal 0.3s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.10s; }
.delay-3 { animation-delay: 0.15s; }

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .am-cart-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .am-cart-sidebar {
        position: static;
    }

    .am-cart-header-row {
        grid-template-columns: 80px 1fr 70px 70px 70px 45px;
    }

    .am-cart-item {
        grid-template-columns: 80px 1fr 70px 70px 70px 45px;
        padding: 16px;
    }

    .am-item-img {
        width: 80px;
        height: 110px;
    }

    .am-hide-mob {
        display: none;
    }
}

@media (max-width: 768px) {
    #amelle-cart-page {
        padding: 30px 16px;
    }

    .am-cart-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .am-cart-header-row,
    .am-cart-item {
        grid-template-columns: 70px 1fr 60px 60px 60px 40px;
        padding: 12px;
        gap: 10px;
        font-size: 10px;
    }

    .am-item-img {
        width: 70px;
        height: 95px;
    }

    .am-item-name {
        font-size: 13px;
    }

    .am-item-price .amount,
    .am-item-total .amount {
        font-size: 13px;
    }

    .am-qty-badge {
        font-size: 13px;
        padding: 6px 12px;
        min-width: 38px;
        min-height: 38px;
    }

    .am-remove-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    #amelle-cart-page {
        padding: 20px 12px;
    }

    .am-cart-title {
        font-size: clamp(20px, 4vw, 28px);
    }

    .am-cart-header-row,
    .am-cart-item {
        grid-template-columns: 60px 1fr 50px 50px 50px 35px;
        padding: 10px 8px;
        gap: 8px;
    }

    .am-item-img {
        width: 60px;
        height: 80px;
    }

    .am-item-name {
        font-size: 12px;
    }

    .am-item-price .amount,
    .am-item-total .amount {
        font-size: 12px;
    }

    .am-qty-badge {
        font-size: 11px;
        padding: 4px 10px;
        min-width: 36px;
        min-height: 36px;
    }

    .am-remove-btn {
        width: 32px;
        height: 32px;
    }

    .am-remove-btn svg {
        width: 16px;
        height: 16px;
    }

    .am-checkout-btn,
    .am-continue-shopping {
        font-size: 11px;
        padding: 10px 14px;
        height: 44px;
    }

    .am-sum-total .label {
        font-size: 13px;
    }

    .am-sum-total .value {
        font-size: 16px;
    }
}

/* ========== PRINT ========== */
@media print {
    #amelle-cart-page {
        background: white;
        color: black;
    }

    .am-checkout-btn,
    .am-continue-shopping,
    .am-remove-btn,
    .am-empty-state {
        display: none;
    }
}
/* ==========================================================
   AMELLE CHECKOUT PAGE - CSS v3.0 FIXED
   100% WooCommerce Integrated | Responsive | Professional
   ========================================================== */

#amelle-checkout {
    --am-bg: #060606;
    --am-panel: rgba(255,255,255,0.03);
    --am-panel-hover: rgba(255,255,255,0.06);
    --am-border: rgba(255,255,255,0.10);
    --am-gold: #d6b36a;
    --am-gold-light: #e8c895;
    --am-gold-2: #b08d3f;
    --am-text: rgba(255,255,255,0.88);
    --am-muted: rgba(255,255,255,0.60);
    --am-radius: 24px;
    --am-radius-sm: 12px;
    --am-radius-xs: 8px;
    
    background: 
        radial-gradient(1200px 600px at 80% 15%, rgba(214,179,106,0.08), transparent 65%),
        linear-gradient(180deg, rgba(214,179,106,0.02) 0%, transparent 50%),
        var(--am-bg);
    
    color: var(--am-text);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 40px 20px 80px;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.am-checkout-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ========== WOOCOMMERCE NOTICES ========== */
.woocommerce-notices-wrapper {
    margin: 0 0 30px 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: rgba(52, 211, 153, 0.1) !important;
    border: 1px solid rgba(52, 211, 153, 0.3) !important;
    border-radius: var(--am-radius-sm) !important;
    color: rgba(52, 211, 153, 0.8) !important;
    padding: 12px 16px !important;
    margin: 0 0 16px 0 !important;
    font-size: 13px !important;
}

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    color: rgba(239, 68, 68, 0.8) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: rgba(52, 211, 153, 0.8) !important;
}

.woocommerce-error::before {
    color: rgba(239, 68, 68, 0.8) !important;
}

/* ========== HEADER ========== */
.am-checkout-head {
    margin-bottom: 50px;
    text-align: center;
}

.am-checkout-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--am-gold);
    font-weight: 700;
    margin: 0 0 12px;
}

.am-checkout-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--am-gold);
    margin: 0;
    letter-spacing: -1px;
}

/* ========== MAIN WRAPPER ========== */
.am-checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* ========== MAIN FORM SECTION ========== */
.am-checkout-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.am-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ========== CHECKOUT SECTIONS ========== */
.am-checkout-section {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: 28px;
    margin-bottom: 24px;
}

.am-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--am-border);
}

.am-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.am-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--am-gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FORM GROUPS ========== */
.am-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.am-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.am-form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--am-text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.am-form-input,
.am-form-textarea,
select.am-form-input {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--am-border);
    color: var(--am-text);
    padding: 12px 14px;
    border-radius: var(--am-radius-sm);
    font-family: inherit;
    font-size: 13px;
    transition: all 0.15s ease;
    outline: none;
}

.am-form-input::placeholder,
.am-form-textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.am-form-input:focus,
.am-form-textarea:focus,
select.am-form-input:focus {
    background: rgba(0,0,0,0.3);
    border-color: var(--am-gold);
    box-shadow: 0 0 0 3px rgba(214,179,106,0.1);
}

.am-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

select.am-form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d6b36a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

select.am-form-input option {
    background: #0f0f0f;
    color: rgba(255,255,255,0.88);
    padding: 8px 12px;
}

select.am-form-input option:checked {
    background: linear-gradient(135deg, #d6b36a, #b08d3f);
    color: #000;
    font-weight: 700;
}

/* ========== PAYMENT OPTIONS ========== */
.am-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.am-payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border: 2px solid var(--am-border);
    border-radius: var(--am-radius-sm);
    cursor: pointer;
    transition: all 0.15s ease;
}

.am-payment-option:hover {
    background: rgba(0,0,0,0.3);
    border-color: var(--am-gold);
}

.am-payment-radio {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--am-gold);
    flex-shrink: 0;
}

.am-payment-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.am-payment-title {
    font-weight: 700;
    color: var(--am-text);
    font-size: 13px;
}

.am-payment-desc {
    font-size: 12px;
    color: var(--am-muted);
}

/* ========== CARD DETAILS ========== */
.am-card-details {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--am-border);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.am-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--am-radius-xs);
    font-size: 11px;
    color: rgba(52, 211, 153, 0.8);
}

.am-security-note svg {
    color: rgba(52, 211, 153, 0.8);
    flex-shrink: 0;
}

/* ========== PLACE ORDER BUTTON ========== */
.am-place-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000 !important;
    border: none;
    padding: 12px 28px;
    height: 50px;
    border-radius: var(--am-radius-sm);
    font-weight: 800;
    font-size: 13px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 100%;
    margin: 16px 0 0 0;
}

.am-place-order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214,179,106,0.3);
}

.am-place-order-btn:active:not(:disabled) {
    transform: translateY(0);
}

.am-place-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.am-btn-arrow {
    font-size: 14px;
    transition: transform 0.15s ease;
}

.am-place-order-btn:hover:not(:disabled) .am-btn-arrow {
    transform: translateX(3px);
}

/* ========== SIDEBAR ========== */
.am-checkout-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.am-order-summary {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: 28px;
}

.am-sum-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--am-gold);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--am-border);
}

/* ========== ORDER ITEMS ========== */
.am-order-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    max-height: 250px;
    overflow-y: auto;
    padding-bottom: 10px;
}

.am-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--am-border);
    font-size: 12px;
}

.am-order-item:last-child {
    border-bottom: none;
}

.am-item-name {
    color: var(--am-muted);
    font-weight: 600;
    flex: 1;
}

.am-item-price {
    color: var(--am-gold-light);
    font-weight: 700;
    text-align: right;
}

/* ========== SUMMARY ROWS ========== */
.am-sum-divider {
    height: 1px;
    background: var(--am-border);
    margin: 14px 0;
}

.am-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 12px;
}

.am-sum-row .label {
    color: var(--am-muted);
    font-weight: 600;
}

.am-sum-row .value {
    color: var(--am-text);
    font-weight: 600;
}

.am-text-gold {
    color: var(--am-gold) !important;
}

.am-sum-row.am-discount .value {
    color: rgba(52, 211, 153, 0.8);
}

/* ========== TOTAL ========== */
.am-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin: 14px 0;
    border-top: 2px solid var(--am-border);
    border-bottom: 2px solid var(--am-border);
}

.am-sum-total .label {
    font-weight: 700;
    font-size: 14px;
    color: var(--am-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.am-sum-total .value {
    font-weight: 800;
    font-size: 18px;
    color: var(--am-gold-light);
}

/* ========== SECURE BADGE ========== */
.am-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(214,179,106,0.05);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius-xs);
    font-size: 11px;
    color: var(--am-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 16px 0;
}

.am-secure-badge svg {
    color: var(--am-gold);
    flex-shrink: 0;
}

/* ========== EDIT CART LINK ========== */
.am-edit-cart-link {
    display: block;
    text-align: center;
    color: var(--am-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.15s ease;
    padding: 8px;
}

.am-edit-cart-link:hover {
    color: var(--am-gold);
}

/* ========== SCROLLBAR ========== */
.am-order-items::-webkit-scrollbar {
    width: 6px;
}

.am-order-items::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.am-order-items::-webkit-scrollbar-thumb {
    background: var(--am-gold);
    border-radius: 10px;
}

.am-order-items::-webkit-scrollbar-thumb:hover {
    background: var(--am-gold-light);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .am-checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .am-checkout-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    #amelle-checkout {
        padding: 30px 16px 60px;
    }

    .am-checkout-title {
        font-size: clamp(24px, 5vw, 32px);
    }

    .am-checkout-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .am-section-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .am-step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .am-section-title {
        font-size: 14px;
    }

    .am-form-input,
    .am-form-textarea,
    select.am-form-input {
        font-size: 14px;
        padding: 11px 12px;
    }

    .am-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .am-place-order-btn {
        height: 48px;
        font-size: 12px;
    }

    .am-payment-option {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    #amelle-checkout {
        padding: 20px 12px 40px;
    }

    .am-checkout-title {
        font-size: clamp(20px, 4vw, 26px);
    }

    .am-checkout-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .am-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .am-step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .am-section-title {
        font-size: 12px;
    }

    .am-form-label {
        font-size: 11px;
    }

    .am-form-input,
    .am-form-textarea,
    select.am-form-input {
        font-size: 14px;
        padding: 10px 12px;
    }

    .am-form-group {
        margin-bottom: 14px;
    }

    .am-form-row {
        gap: 12px;
    }

    .am-place-order-btn {
        height: 46px;
        font-size: 11px;
        margin-top: 16px;
        padding: 10px 20px;
    }

    .am-payment-option {
        padding: 12px;
    }

    .am-order-summary {
        padding: 20px;
    }

    .am-sum-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .am-order-item {
        font-size: 11px;
        padding: 8px 0;
    }

    .am-sum-row {
        font-size: 11px;
        padding: 8px 0;
    }

    .am-sum-total {
        padding: 12px 0;
        margin: 12px 0;
    }

    .am-sum-total .label {
        font-size: 12px;
    }

    .am-sum-total .value {
        font-size: 16px;
    }
}

/* ==========================================================
   AMELLE – FULL WEBSITE BACKGROUND VIDEO (FIXED)
   ========================================================== */

html, body{
  background: #000 !important;
}

/* Put the video behind all content */
#amelle-bgvideo{
  position: fixed;
  inset: 0;
  z-index: -9999;
  pointer-events: none;
  overflow: hidden;
}

/* Videos cover the entire viewport */
#amelle-bgvideo .amelle-bgv{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .35s ease;
}

/* Start with A visible */
#amelle-bgvideo .amelle-bgv-a{
  opacity: 1;
}

/* Dark overlay to keep content readable */
#amelle-bgvideo .amelle-bgv-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

/* Make sure common wrappers don't paint a solid background over the video */
#amelle-front-page,
#amelle-shop-page,
#page,
.site,
.site-content{
  background: transparent !important;
}

/* Optional: reduce motion users – keep first frame (still) */
@media (prefers-reduced-motion: reduce){
  #amelle-bgvideo .amelle-bgv{
    transition: none;
  }
}

/* ==========================================================
   AMELLE – BG VIDEO FIX (ensure visible behind everything)
   ========================================================== */
#amelle-bgvideo{ z-index: 0 !important; }
body{ position: relative; }
body > *{ position: relative; z-index: 1; }

/* ==========================================================
   AMELLE – ABOUT PAGE: ENABLE GLOBAL BG VIDEO
   Fix: #amelle-about-page was painting a solid background that hides the video.
   Non-destructive: overrides only (no removals).
   ========================================================== */
#amelle-about-page{
  background: transparent !important;
}

/* If any legacy about background layer sits above the video in some setups, keep it behind */
#amelle-about-page .amelle-about-bg{
  z-index: -5 !important;
}

/* ==========================================================
   AMELLE – ABOUT PAGE: REMOVE LEGACY BACKGROUND LAYER
   Keeps everything else intact; allows global BG video to show.
   ========================================================== */
#amelle-about-page{
  background: transparent !important;
}
#amelle-about-page .amelle-about-bg{
  display: none !important;
}

/* ==========================================================
   AMELLE CONTACT PAGE
   Scope: #amelle-contact-page
   ========================================================== */

#amelle-contact-page{
  --amelle-bg:#060606;
  --amelle-panel: rgba(255,255,255,.03);
  --amelle-panel-2: rgba(255,255,255,.05);
  --amelle-text: rgba(255,255,255,.88);
  --amelle-muted: rgba(255,255,255,.68);
  --amelle-border: rgba(255,255,255,.10);
  --amelle-border-2: rgba(255,255,255,.16);
  --amelle-gold:#d6b36a;
  --amelle-gold-2:#b08d3f;
  --amelle-soft-shadow: 0 14px 30px rgba(0,0,0,.35);
  --amelle-radius: 24px;

  font-family: "Jost", sans-serif;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(214,179,106,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
    var(--amelle-bg);

  color: var(--amelle-text);
  overflow-x:hidden;
  width:100%;
  padding: clamp(70px, 7vw, 110px) 0;
}

#amelle-contact-page .amelle-c-wrap{
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Head */
#amelle-contact-page .amelle-c-head{
  max-width: 78ch;
  margin-bottom: clamp(26px, 3vw, 38px);
  
  /* ANIMATION ADDED HERE */
  opacity: 0; /* Hidden initially */
  animation: amFadeUp 2.0s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
#amelle-contact-page .amelle-c-kicker{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,199,123,.95);
  margin: 0 0 14px;
}
#amelle-contact-page .amelle-c-title{
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--amelle-gold);
  font-weight: 750;
  letter-spacing: .4px;
}
#amelle-contact-page .amelle-c-sub{
  margin: 0;
  color: var(--amelle-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Grid */
#amelle-contact-page .amelle-c-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

/* Cards */
#amelle-contact-page .amelle-c-card{
  border-radius: var(--amelle-radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--amelle-border);
  box-shadow: var(--amelle-soft-shadow);
  padding: 20px;
  overflow: hidden;
  
  /* ANIMATION ADDED HERE */
  opacity: 0; /* Hidden initially */
  animation: amFadeUp 2.0s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered Delays for Cards */
#amelle-contact-page .amelle-c-formcard{
  animation-delay: 0.15s;
}
#amelle-contact-page .amelle-c-detailcard{
  animation-delay: 0.3s;
}

#amelle-contact-page .amelle-c-h2{
  margin: 0 0 16px;
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,.94);
  font-weight: 850;
  letter-spacing: .2px;
}
#amelle-contact-page .amelle-c-bar{
  width: 3px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amelle-gold), var(--amelle-gold-2));
  opacity: .95;
}

/* Form */
#amelle-contact-page .amelle-c-form{ margin-top: 8px; }
#amelle-contact-page .amelle-c-row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#amelle-contact-page .amelle-c-field{ margin-bottom: 14px; }
#amelle-contact-page .amelle-c-field label{
  display:block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin: 0 0 8px;
}
#amelle-contact-page .amelle-c-field input,
#amelle-contact-page .amelle-c-field textarea{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.92);
  padding: 14px 14px;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
  font-family: "Jost", sans-serif;
}
#amelle-contact-page .amelle-c-field textarea{
  min-height: 170px;
  resize: vertical;
}
#amelle-contact-page .amelle-c-field input:focus,
#amelle-contact-page .amelle-c-field textarea:focus{
  border-color: rgba(214,179,106,.55);
  box-shadow: 0 0 0 4px rgba(214,179,106,.10);
  background: rgba(0,0,0,.28);
}

#amelle-contact-page .amelle-c-actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

#amelle-contact-page .amelle-c-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.25);
  background: linear-gradient(135deg, var(--amelle-gold), var(--amelle-gold-2));
  color: #111;
  font-weight: 850;
  cursor:pointer;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  box-shadow: 0 12px 30px rgba(214,179,106,.22);
  font-family:"Jost",sans-serif;
}
#amelle-contact-page .amelle-c-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 40px rgba(214,179,106,.26);
}
#amelle-contact-page .amelle-c-btn:disabled{
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
#amelle-contact-page .amelle-c-btn.is-loading{
  filter: grayscale(.1);
}
#amelle-contact-page .amelle-c-arr{
  font-weight: 900;
}

#amelle-contact-page .amelle-c-note{
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* Alert */
#amelle-contact-page .amelle-c-alert{
  display:none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.85);
}
#amelle-contact-page .amelle-c-alert.is-ok{
  border-color: rgba(214,179,106,.40);
  background: rgba(214,179,106,.10);
}
#amelle-contact-page .amelle-c-alert.is-err{
  border-color: rgba(255,120,120,.35);
  background: rgba(255,120,120,.10);
}

/* Details list */
#amelle-contact-page .amelle-c-list{
  display:grid;
  gap: 12px;
  margin-top: 8px;
}

#amelle-contact-page .amelle-c-item{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.07);
}

#amelle-contact-page .amelle-c-ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.22);
  background: rgba(214,179,106,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(214,179,106,.95);
  flex: 0 0 auto;
}

#amelle-contact-page .amelle-c-lbl{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 3px;
}
#amelle-contact-page .amelle-c-val{
  color: rgba(255,255,255,.92);
  font-weight: 400; 
  font-size: 15px; 
}
#amelle-contact-page .amelle-c-val a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
}
#amelle-contact-page .amelle-c-val a:hover{
  color: rgba(214,179,106,.95);
}

/* Socials */
#amelle-contact-page .amelle-c-socialblock{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
#amelle-contact-page .amelle-c-socialtitle{
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
}
#amelle-contact-page .amelle-c-socials{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
#amelle-contact-page .amelle-c-social{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration:none;
  color: rgba(255,255,255,.90);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
#amelle-contact-page .amelle-c-social:hover{
  transform: translateY(-2px);
  border-color: rgba(214,179,106,.45);
  background: rgba(214,179,106,.08);
}
#amelle-contact-page .amelle-c-sico{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.22);
  background: rgba(214,179,106,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(214,179,106,.95);
}
#amelle-contact-page .amelle-c-handle{
  font-weight: 750;
  letter-spacing: .2px;
}

/* WhatsApp CSS */
#amelle-contact-page .amelle-c-whatsapp{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,106,.25);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.90);
  text-decoration:none;
  font-weight: 850;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
#amelle-contact-page .amelle-c-whatsapp:hover{
  transform: translateY(-2px);
  border-color: rgba(214,179,106,.55);
  background: rgba(214,179,106,.08);
}

/* Map */
#amelle-contact-page .amelle-c-map{
  margin-top: 14px;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
#amelle-contact-page .amelle-c-map iframe{
  width:100%;
  height: 280px;
  border:0;
  display:block;
}

/* Mobile */
@media (max-width: 900px){
  #amelle-contact-page{ padding: 56px 0; }
  #amelle-contact-page .amelle-c-wrap{ width: min(1180px, calc(100% - 26px)); }
  #amelle-contact-page .amelle-c-grid{ grid-template-columns: 1fr; gap: 16px; }

  /* Make FORM first, DETAILS second */
  #amelle-contact-page .amelle-c-formcard{ order: 1; }
  #amelle-contact-page .amelle-c-detailcard{ order: 2; }

  #amelle-contact-page .amelle-c-row2{ grid-template-columns: 1fr; }
  #amelle-contact-page .amelle-c-actions{ flex-direction: column; align-items: flex-start; }
  #amelle-contact-page .amelle-c-btn{ width: 100%; justify-content:center; }
  #amelle-contact-page .amelle-c-map iframe{ height: 240px; }
}

/* ==========================================================
   ANIMATION KEYFRAMES (Added)
   ========================================================== */
@keyframes amFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================
   AMELLE 404 PAGE - 4(BOTTLE)4 STYLE
   ========================================================== */

#amelle-404-page {
    --am-bg: #060606;
    --am-gold: #d6b36a;
    --am-gold-dark: #b08d3f;
    
    font-family: "Jost", sans-serif;
    background: 
        radial-gradient(circle at 50% 50%, rgba(214, 179, 106, 0.08), transparent 70%),
        var(--am-bg);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.amelle-404-container {
    max-width: 700px;
    width: 100%;
    animation: amFadeIn 1.2s ease forwards;
}

/* THE 4(BOTTLE)4 ALIGNMENT */
.amelle-404-brand-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.am-digit {
    font-size: clamp(100px, 20vw, 180px);
    font-weight: 700;
    line-height: 1;
    color: var(--am-gold);
    background: linear-gradient(180deg, #fff 20%, var(--am-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

/* BOTTLE REPLACING THE '0' */
.amelle-404-visual {
    position: relative;
    width: clamp(60px, 12vw, 100px);
    height: clamp(100px, 18vw, 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-bottle {
    width: 100%;
    height: 70%; /* Fits perfectly between the 4s */
    position: relative;
    z-index: 2;
}

.am-glass {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px 12px 25px 25px;
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.am-cap {
    position: absolute;
    top: -22%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 20%;
    background: linear-gradient(90deg, var(--am-gold), #fff, var(--am-gold-dark));
    border-radius: 4px 4px 0 0;
}

.am-liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15%;
    background: var(--am-gold);
    box-shadow: 0 0 20px var(--am-gold-dark);
}

.am-shadow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10px;
    background: rgba(0,0,0,0.8);
    border-radius: 50%;
    filter: blur(8px);
}

/* VAPOR */
.am-vapor {
    position: absolute;
    background: radial-gradient(circle, var(--am-gold), transparent 70%);
    border-radius: 50%;
    opacity: 0;
}
.v1 { width: 20px; height: 20px; bottom: 10%; left: 20%; animation: rise 4s infinite; }
.v2 { width: 30px; height: 30px; bottom: 10%; left: 40%; animation: rise 4s 1.2s infinite; }
.v3 { width: 15px; height: 15px; bottom: 10%; left: 65%; animation: rise 4s 0.6s infinite; }

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.4; }
    100% { transform: translateY(-150px) scale(3); opacity: 0; }
}

/* TEXT STYLES FROM PIC */
.amelle-404-sub {
    font-size: clamp(20px, 4vw, 28px);
    color: var(--am-gold);
    margin: 0 0 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: none; /* Matches your screenshot */
}

.amelle-404-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 450px;
}

/* BUTTON */
.amelle-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-dark));
    color: #000;
    text-decoration: none;
    font-weight: 650;
    transition: all 0.3s ease;
}

.amelle-404-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(214, 179, 106, 0.3);
}

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

/* MOBILE */
@media (max-width: 768px) {
    .amelle-404-brand-wrap { gap: 5px; }
    .am-digit { font-size: 100px; }
    .amelle-404-visual { width: 60px; height: 110px; }
}
/* ==========================================================
   AMELLE SINGLE PRODUCT PAGE - COMPLETE CSS 2.0
   Premium Luxury Fragrance E-commerce Design
   ========================================================== */

#amelle-product-page {
    /* ========== AMELLE DESIGN SYSTEM VARIABLES ========== */
    --am-bg: #060606;
    --am-bg-light: #0f0f0f;
    --am-panel: rgba(255,255,255,0.03);
    --am-panel-hover: rgba(255,255,255,0.06);
    --am-border: rgba(255,255,255,0.10);
    --am-border-hover: rgba(255,255,255,0.15);
    --am-gold: #d6b36a;
    --am-gold-light: #e8c895;
    --am-gold-2: #b08d3f;
    --am-gold-dark: #8b6a3a;
    --am-text: rgba(255,255,255,0.88);
    --am-text-light: rgba(255,255,255,0.75);
    --am-muted: rgba(255,255,255,0.60);
    --am-muted-dark: rgba(255,255,255,0.45);
    --am-radius: 24px;
    --am-radius-sm: 12px;
    --am-radius-xs: 8px;
    
    /* Background with luxury gradient */
    background: 
        radial-gradient(1200px 600px at 80% 15%, rgba(214,179,106,0.08), transparent 65%),
        linear-gradient(180deg, rgba(214,179,106,0.02) 0%, transparent 50%),
        var(--am-bg);
    
    color: var(--am-text);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: clamp(80px, 10vw, 140px) 20px;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== WRAPPER CONTAINER ========== */
.amelle-prod-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

/* ========== WOOCOMMERCE NOTICES STYLING ========== */
.amelle-prod-wrap .woocommerce-message,
.amelle-prod-wrap .woocommerce-info,
.amelle-prod-wrap .woocommerce-error {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border-left: 4px solid var(--am-gold);
    border-radius: var(--am-radius-sm);
    color: var(--am-text);
    padding: 18px 24px;
    margin-bottom: 30px;
    font-family: inherit;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.amelle-prod-wrap .woocommerce-message::before {
    color: var(--am-gold);
    font-weight: 700;
    font-size: 18px;
}

.amelle-prod-wrap .woocommerce-message .button {
    background: var(--am-gold);
    color: #000 !important;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-left: auto;
    transition: all 0.3s ease;
}

.amelle-prod-wrap .woocommerce-message .button:hover {
    background: var(--am-gold-light);
    transform: translateY(-2px);
}

/* ========== MAIN PRODUCT GRID ========== */
.amelle-prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    margin-bottom: 100px;
    align-items: start;
}

/* ========== LEFT: PRODUCT MEDIA/IMAGES ========== */
.amelle-prod-media {
    position: relative;
    border-radius: var(--am-radius);
    border: 1px solid var(--am-border);
    padding: 15px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(214,179,106,0.04), transparent 50%),
        var(--am-panel);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.amelle-prod-media:hover {
    border-color: rgba(214,179,106,0.3);
    box-shadow: 0 20px 60px rgba(214,179,106,0.1);
    background: 
        radial-gradient(circle at 30% 30%, rgba(214,179,106,0.06), transparent 50%),
        var(--am-panel-hover);
}

/* Main Product Image Shell */
.amelle-prod-img-shell {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: rgba(0,0,0,0.5);
}

.amelle-prod-img-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.amelle-prod-media:hover .amelle-prod-img-shell img {
    transform: scale(1.08);
}

/* Placeholder for missing image */
.amelle-prod-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,179,106,0.1), rgba(214,179,106,0.05));
    color: var(--am-muted);
    font-size: 16px;
    font-weight: 500;
}

/* Glow effect on images */
.amelle-prod-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(214,179,106,0.12), transparent 70%);
    pointer-events: none;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.amelle-prod-media:hover .amelle-prod-glow {
    opacity: 1;
}

/* Gallery Thumbnails */
.amelle-gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding: 10px 0;
    overflow-x: auto;
}

.amelle-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--am-radius-sm);
    border: 2px solid var(--am-border);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.amelle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amelle-thumb:hover,
.amelle-thumb.active {
    border-color: var(--am-gold);
    box-shadow: 0 0 12px rgba(214,179,106,0.3);
}

.amelle-thumb:hover img,
.amelle-thumb.active img {
    transform: scale(1.1);
}

/* ========== RIGHT: PRODUCT INFORMATION ========== */
.amelle-prod-info {
    display: flex;
    flex-direction: column;
}

/* Meta Top: Category & Stock */
.amelle-prod-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--am-border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    gap: 20px;
}

.amelle-category-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.amelle-prod-cat {
    color: var(--am-gold);
    font-weight: 600;
    transition: color 0.3s ease;
}

.amelle-prod-cat a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.amelle-prod-cat a:hover {
    color: var(--am-gold-light);
}

/* Stock Status */
.amelle-prod-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--am-border);
}

.amelle-prod-stock .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.amelle-prod-stock.is-instock {
    color: #a4d66a;
    border-color: rgba(164,214,106,0.3);
}

.amelle-prod-stock.is-instock .dot {
    background: #a4d66a;
    box-shadow: 0 0 10px rgba(164,214,106,0.5);
    animation: pulse-green 2s ease-in-out infinite;
}

.amelle-prod-stock.is-outstock {
    color: #ff6b6b;
    border-color: rgba(255,107,107,0.3);
}

.amelle-prod-stock.is-outstock .dot {
    background: #ff6b6b;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Product Title */
.amelle-prod-title {
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.15;
    color: var(--am-gold);
    margin: 0 0 20px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(214,179,106,0.1);
}

/* SKU */
.amelle-prod-sku {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--am-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amelle-prod-sku .label {
    font-weight: 600;
    color: var(--am-muted-dark);
}

.amelle-prod-sku .value {
    color: var(--am-text-light);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Price */
.amelle-prod-price {
    font-size: 32px;
    color: var(--am-gold-light);
    font-weight: 700;
    margin: 20px 0 24px;
    padding: 16px 0;
    border-top: 1px solid var(--am-border);
    border-bottom: 1px solid var(--am-border);
}

.amelle-prod-price .amount {
    color: inherit;
}

.amelle-prod-price .woocommerce-price-suffix {
    font-size: 13px;
    color: var(--am-muted);
}

/* Short Description */
.amelle-prod-short-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--am-text);
    margin-bottom: 28px;
    padding: 20px;
    background: var(--am-panel);
    border-radius: var(--am-radius-sm);
    border-left: 3px solid var(--am-gold);
}

.amelle-prod-short-desc p {
    margin: 0;
}

/* ========== ADD TO CART BUTTON ========== */
.amelle-prod-actions {
    margin-bottom: 32px;
}

/* Cart Form Container */
.amelle-prod-actions form.cart {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Quantity Input */
.amelle-prod-actions .quantity {
    display: flex;
    position: relative;
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.amelle-prod-actions .quantity:focus-within {
    border-color: var(--am-gold);
    background: var(--am-panel-hover);
    box-shadow: 0 0 0 3px rgba(214,179,106,0.1);
}

.amelle-prod-actions .quantity input.qty {
    background: transparent;
    border: none;
    color: var(--am-text);
    width: 80px;
    height: 56px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    transition: color 0.3s ease;
}

.amelle-prod-actions .quantity input.qty:focus {
    outline: none;
    color: var(--am-gold);
}

/* Remove spinner arrows */
.amelle-prod-actions input[type=number]::-webkit-inner-spin-button,
.amelle-prod-actions input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.amelle-prod-actions input[type=number] {
    -moz-appearance: textfield;
}

/* Add to Cart Button */
.amelle-prod-actions button[type="submit"].single_add_to_cart_button,
.amelle-prod-actions button[type="submit"].add_to_cart_button {
    background: linear-gradient(135deg, var(--am-gold) 0%, var(--am-gold-2) 100%);
    color: #000000 !important;
    border: none;
    padding: 0 48px;
    height: 56px;
    border-radius: var(--am-radius-sm);
    font-weight: 800;
    font-size: 15px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    flex-grow: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button::before,
.amelle-prod-actions button[type="submit"].add_to_cart_button::before {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button:hover,
.amelle-prod-actions button[type="submit"].add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(214,179,106,0.4);
    letter-spacing: 3px;
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button:hover::before,
.amelle-prod-actions button[type="submit"].add_to_cart_button:hover::before {
    transform: translateX(4px);
}

.amelle-prod-actions button[type="submit"].single_add_to_cart_button:active,
.amelle-prod-actions button[type="submit"].add_to_cart_button:active {
    transform: translateY(0);
}

/* Product Add to Cart Variations (for variable products) */
.amelle-prod-actions .variations {
    width: 100%;
}

.amelle-prod-actions .variations table {
    width: 100%;
    margin-bottom: 20px;
}

.amelle-prod-actions .variations td {
    padding: 12px 0;
    border-bottom: 1px solid var(--am-border);
}

.amelle-prod-actions .variations label {
    color: var(--am-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 8px;
    display: block;
}

.amelle-prod-actions .variations select {
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    color: var(--am-text);
    padding: 10px 14px;
    border-radius: var(--am-radius-xs);
    font-family: inherit;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amelle-prod-actions .variations select:hover,
.amelle-prod-actions .variations select:focus {
    border-color: var(--am-gold);
    background: var(--am-panel-hover);
    outline: none;
}

/* ========== EXTRA FEATURES ========== */
.amelle-prod-extra {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--am-border);
}

.amelle-prod-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: var(--am-panel);
    border-radius: var(--am-radius-sm);
    border: 1px solid var(--am-border);
    transition: all 0.3s ease;
}

.amelle-prod-feature:hover {
    background: var(--am-panel-hover);
    border-color: rgba(214,179,106,0.2);
    transform: translateY(-2px);
}

.amelle-prod-feature .icon {
    font-size: 24px;
    color: var(--am-gold);
    line-height: 1;
}

.amelle-prod-feature span:not(.icon) {
    font-size: 13px;
    color: var(--am-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== PRODUCT DESCRIPTION SECTION ========== */
.amelle-prod-description {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: clamp(30px, 5vw, 50px);
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
}

.amelle-desc-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--am-text);
}

.amelle-desc-content p {
    margin-bottom: 16px;
}

.amelle-desc-content p:last-child {
    margin-bottom: 0;
}

.amelle-desc-content ul,
.amelle-desc-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.amelle-desc-content li {
    margin-bottom: 8px;
}

.amelle-desc-content strong {
    color: var(--am-gold);
    font-weight: 700;
}

.amelle-desc-content em {
    color: var(--am-text-light);
    font-style: italic;
}

/* ========== REVIEWS/COMMENTS SECTION ========== */
.amelle-prod-content {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: clamp(30px, 5vw, 50px);
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
}

.amelle-comments-section {
    color: var(--am-text);
}

/* Heading */
.amelle-h2 {
    font-size: 28px;
    color: var(--am-gold);
    margin: 0 0 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--am-border);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Review List */
.amelle-comments-section ol.commentlist {
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}

.amelle-comments-section li.comment {
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius-sm);
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.amelle-comments-section li.comment:hover {
    background: var(--am-panel-hover);
    border-color: rgba(214,179,106,0.2);
}

.amelle-comments-section .comment-text {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 12px;
}

.amelle-comments-section .meta {
    color: var(--am-gold);
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amelle-comments-section .comment-author {
    color: var(--am-text);
    font-weight: 700;
    margin-bottom: 8px;
}

.amelle-comments-section .comment-content p {
    margin-bottom: 0;
    line-height: 1.8;
}

.amelle-comments-section .star-rating {
    margin-bottom: 12px;
}

.amelle-comments-section .star-rating span {
    color: var(--am-gold);
}

/* "No Comments" Message */
.no-comments {
    color: var(--am-muted);
    text-align: center;
    padding: 40px 20px;
    font-size: 15px;
}

/* Review Form - "Leave a Reply" */
#review_form_wrapper {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--am-border);
}

#review_form_wrapper #reply-title,
.comment-form-title {
    color: var(--am-gold);
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Form Labels */
.comment-form label {
    color: var(--am-text);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.comment-form-rating {
    margin-bottom: 24px;
}

.comment-form-rating .stars {
    margin-top: 10px;
}

/* Form Inputs & Textarea */
#review_form textarea,
#review_form input[type="text"],
#review_form input[type="email"],
#review_form input[type="url"] {
    background: var(--am-bg-light);
    border: 1px solid var(--am-border);
    color: var(--am-text);
    padding: 14px 16px;
    border-radius: var(--am-radius-xs);
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#review_form textarea:focus,
#review_form input[type="text"]:focus,
#review_form input[type="email"]:focus,
#review_form input[type="url"]:focus {
    border-color: var(--am-gold);
    background: rgba(214,179,106,0.02);
    outline: none;
    box-shadow: 0 0 0 3px rgba(214,179,106,0.1);
}

#review_form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
#review_form .submit,
.comment-form-submit button {
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000 !important;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#review_form .submit:hover,
.comment-form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214,179,106,0.4);
    filter: brightness(1.08);
}

/* ========== RELATED PRODUCTS SECTION ========== */
.amelle-related {
    margin-bottom: 80px;
}

.amelle-related-head {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.amelle-h3 {
    font-size: 24px;
    color: var(--am-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    margin: 0;
    font-weight: 700;
}

.amelle-line {
    height: 2px;
    background: linear-gradient(90deg, var(--am-border), transparent);
    width: 100%;
}

/* Related Products Grid */
.amelle-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.amelle-rel-card {
    text-decoration: none;
    background: var(--am-panel);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.amelle-rel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214,179,106,0.4);
    background: var(--am-panel-hover);
    box-shadow: 0 20px 50px rgba(214,179,106,0.15);
}

.amelle-rel-media {
    height: 280px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.amelle-rel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amelle-rel-card:hover .amelle-rel-media img {
    transform: scale(1.08);
}

.amelle-rel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,179,106,0.1), rgba(214,179,106,0.05));
    color: var(--am-muted);
    font-size: 14px;
}

.amelle-rel-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.amelle-rel-info h4 {
    margin: 0 0 12px;
    color: var(--am-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.amelle-rel-card:hover .amelle-rel-info h4 {
    color: var(--am-gold-light);
}

.amelle-rel-info .price {
    color: var(--am-gold);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Show All Products Button */
.amelle-show-all-wrap {
    text-align: center;
}

.amelle-btn-ghost {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--am-border);
    color: var(--am-text);
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.amelle-btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.amelle-btn-ghost:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.amelle-btn-ghost:hover {
    color: #000;
    border-color: var(--am-gold);
}

/* ========== ANIMATIONS ========== */
@keyframes amLuxReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) perspective(1000px) rotateX(10deg);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) perspective(1000px) rotateX(0deg);
        filter: blur(0);
    }
}

.animate-reveal {
    opacity: 0;
    will-change: transform, opacity, filter;
    animation: amLuxReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1024px) {
    .amelle-prod-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .amelle-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #amelle-product-page {
        padding: 60px 16px;
    }
    
    .amelle-prod-grid {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .amelle-prod-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    .amelle-prod-price {
        font-size: 24px;
    }
    
    .amelle-prod-actions form.cart {
        flex-direction: column;
    }
    
    .amelle-prod-actions button[type="submit"],
    .amelle-prod-actions .quantity {
        width: 100%;
    }
    
    .amelle-prod-extra {
        grid-template-columns: 1fr 1fr;
    }
    
    .amelle-prod-content,
    .amelle-prod-description {
        padding: 24px;
    }
    
    .amelle-h2 {
        font-size: 22px;
    }
    
    .amelle-h3 {
        font-size: 18px;
    }
    
    .amelle-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .amelle-rel-media {
        height: 220px;
    }
    
    .amelle-related-head {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #amelle-product-page {
        padding: 40px 12px;
    }
    
    .amelle-prod-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .amelle-prod-title {
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .amelle-prod-price {
        font-size: 20px;
    }
    
    .amelle-prod-extra {
        grid-template-columns: 1fr;
    }
    
    .amelle-prod-actions form.cart {
        flex-direction: column;
        gap: 10px;
    }
    
    .amelle-prod-actions button[type="submit"]::before {
        display: none;
    }
    
    .amelle-related-grid {
        grid-template-columns: 1fr;
    }
    
    .amelle-rel-media {
        height: 200px;
    }
    
    .amelle-gallery-thumbnails {
        gap: 8px;
    }
    
    .amelle-thumb {
        width: 60px;
        height: 60px;
    }
    
    .amelle-h2,
    .amelle-h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .amelle-prod-content,
    .amelle-prod-description {
        padding: 18px;
        margin-bottom: 40px;
    }
    
    #review_form_wrapper {
        margin-top: 24px;
        padding-top: 24px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    #amelle-product-page {
        background: white;
        color: black;
    }
    
    .amelle-prod-media,
    .amelle-prod-actions,
    .amelle-comments-section,
    #review_form_wrapper {
        page-break-inside: avoid;
    }
}

/* ==========================================================
   AMELLE SHOPPING CART - CSS v4.0 FINAL
   FAST ANIMATIONS | WORKING PROMO | NO DELAYS
   ========================================================== */

#amelle-cart-page {
    --am-bg: #060606;
    --am-bg-light: #0f0f0f;
    --am-panel: rgba(255,255,255,0.03);
    --am-panel-hover: rgba(255,255,255,0.06);
    --am-border: rgba(255,255,255,0.10);
    --am-gold: #d6b36a;
    --am-gold-light: #e8c895;
    --am-gold-2: #b08d3f;
    --am-text: rgba(255,255,255,0.88);
    --am-muted: rgba(255,255,255,0.60);
    --am-radius: 24px;
    --am-radius-sm: 12px;
    --am-radius-xs: 8px;
    
    background: 
        radial-gradient(1200px 600px at 80% 15%, rgba(214,179,106,0.08), transparent 65%),
        linear-gradient(180deg, rgba(214,179,106,0.02) 0%, transparent 50%),
        var(--am-bg);
    
    color: var(--am-text);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: clamp(40px, 5vw, 80px) 20px;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.am-cart-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ========== HEADER ========== */
.am-cart-head {
    margin-bottom: 50px;
    text-align: center;
}

.am-cart-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--am-gold);
    font-weight: 700;
    margin: 0 0 12px;
}

.am-cart-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--am-gold);
    margin: 0;
    letter-spacing: -1px;
}

/* ========== GRID LAYOUT ========== */
.am-cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-bottom: 80px;
}

/* ========== CART LIST ========== */
.am-cart-list {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    overflow: hidden;
}

.am-cart-header-row {
    display: grid;
    grid-template-columns: 100px 1fr 100px 80px 80px 50px;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(214,179,106,0.05);
    border-bottom: 2px solid var(--am-border);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--am-gold);
    align-items: center;
}

.am-items-list {
    display: flex;
    flex-direction: column;
}

/* ========== CART ITEM ========== */
.am-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px 80px 80px 50px;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--am-border);
    align-items: center;
    background: transparent;
    transition: background 0.15s ease;
}

.am-cart-item:hover {
    background: var(--am-panel);
}

.am-cart-item:last-child {
    border-bottom: none;
}

/* FAST REMOVE ANIMATION */
.am-cart-item.removing {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: all 0.15s ease;
}

/* Item Image */
.am-item-img {
    width: 100px;
    height: 130px;
    border-radius: var(--am-radius-sm);
    overflow: hidden;
    border: 1px solid var(--am-border);
    background: rgba(0,0,0,0.3);
}

.am-item-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.am-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease;
}

.am-item-img a:hover img {
    transform: scale(1.05);
}

.am-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,179,106,0.1), rgba(214,179,106,0.05));
    color: var(--am-muted);
    font-size: 11px;
}

/* Item Details */
.am-item-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.am-item-name {
    color: var(--am-text);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.15s ease;
}

.am-item-name:hover {
    color: var(--am-gold-light);
}

.am-item-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--am-muted);
    flex-wrap: wrap;
}

.am-variation {
    color: var(--am-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Item Price */
.am-item-price {
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-item-price .amount {
    font-size: 15px;
    color: var(--am-gold);
}

/* Item Qty */
.am-item-qty {
    text-align: center;
    display: flex;
    justify-content: center;
}

.am-qty-badge {
    background: var(--am-gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

/* Item Total */
.am-item-total {
    text-align: right;
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
}

.am-item-total .amount {
    font-size: 15px;
    color: var(--am-gold-light);
}

/* ========== REMOVE BUTTON ========== */
.am-item-remove {
    display: flex;
    justify-content: center;
}

.am-remove-form {
    display: flex;
    margin: 0;
    padding: 0;
}

.am-remove-btn {
    background: transparent;
    border: 1px solid var(--am-border);
    color: var(--am-muted);
    width: 40px;
    height: 40px;
    border-radius: var(--am-radius-xs);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    padding: 0;
    font-size: 0;
}

.am-remove-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: scale(1.08);
}

.am-remove-btn:active {
    transform: scale(0.95);
}

.am-remove-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* ========== SIDEBAR ========== */
.am-cart-sidebar {
    position: sticky;
    top: 100px;
}

.am-cart-summary {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: 28px;
}

.am-sum-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--am-gold);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--am-border);
}

.am-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
}

.am-sum-row .label {
    color: var(--am-muted);
    font-weight: 600;
}

.am-sum-row .value {
    font-weight: 600;
    color: var(--am-text);
}

.am-muted-text {
    color: var(--am-muted) !important;
    font-style: italic;
    font-size: 12px;
}

/* ========== PROMO CODE - WORKING VERSION ========== */
.am-promo-form {
    margin: 16px 0;
}

.am-promo-wrap {
    display: flex;
    gap: 8px;
    border-radius: var(--am-radius-sm);
    border: 1px solid var(--am-border);
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.am-promo-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--am-text);
    padding: 12px 14px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: color 0.15s ease;
}

.am-promo-input::placeholder {
    color: rgba(255,255,255,0.40);
}

.am-promo-input:focus {
    color: var(--am-gold);
}

.am-promo-btn {
    background: transparent;
    border: none;
    color: var(--am-gold);
    padding: 12px 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-promo-btn:hover {
    color: var(--am-gold-light);
    transform: translateX(2px);
}

/* ========== TOTALS ========== */
.am-sum-divider {
    height: 1px;
    background: var(--am-border);
    margin: 16px 0;
}

.am-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--am-border);
    border-bottom: 1px solid var(--am-border);
}

.am-sum-total .label {
    font-weight: 700;
    font-size: 15px;
    color: var(--am-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.am-sum-total .value {
    font-weight: 800;
    font-size: 18px;
    color: var(--am-gold-light);
}

/* ========== BUTTONS ========== */
.am-checkout-btn,
.am-continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000 !important;
    border: none;
    padding: 12px 24px;
    height: 50px;
    border-radius: var(--am-radius-sm);
    font-weight: 800;
    font-size: 13px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    width: 100%;
    margin-bottom: 10px;
}

.am-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214,179,106,0.3);
}

.am-continue-shopping {
    background: transparent;
    border: 1px solid var(--am-border);
    color: var(--am-text) !important;
    margin-bottom: 16px;
}

.am-continue-shopping:hover {
    border-color: var(--am-gold);
    color: var(--am-gold) !important;
}

.am-btn-arrow {
    font-size: 16px;
    transition: transform 0.15s ease;
}

.am-checkout-btn:hover .am-btn-arrow {
    transform: translateX(3px);
}

/* ========== SECURE NOTE ========== */
.am-secure-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--am-muted);
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--am-border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.am-secure-note svg {
    flex-shrink: 0;
    color: var(--am-gold);
}

/* ========== EMPTY STATE ========== */
.am-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.am-empty-icon {
    margin-bottom: 30px;
}

.am-empty-icon svg {
    color: var(--am-gold);
    opacity: 0.6;
}

.am-empty-state h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--am-text);
    margin: 0 0 12px;
}

.am-empty-state p {
    font-size: 15px;
    color: var(--am-muted);
    margin: 0 0 40px;
    max-width: 400px;
}

.am-return-btn {
    margin-top: 20px;
}

/* ========== FAST ANIMATIONS ========== */
@keyframes amReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-reveal {
    animation: amReveal 0.3s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.10s; }
.delay-3 { animation-delay: 0.15s; }

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .am-cart-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .am-cart-sidebar {
        position: static;
    }

    .am-cart-header-row {
        grid-template-columns: 80px 1fr 70px 70px 70px 45px;
    }

    .am-cart-item {
        grid-template-columns: 80px 1fr 70px 70px 70px 45px;
        padding: 16px;
    }

    .am-item-img {
        width: 80px;
        height: 110px;
    }

    .am-hide-mob {
        display: none;
    }
}

@media (max-width: 768px) {
    #amelle-cart-page {
        padding: 30px 16px;
    }

    .am-cart-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .am-cart-header-row,
    .am-cart-item {
        grid-template-columns: 70px 1fr 60px 60px 60px 40px;
        padding: 12px;
        gap: 10px;
        font-size: 10px;
    }

    .am-item-img {
        width: 70px;
        height: 95px;
    }

    .am-item-name {
        font-size: 13px;
    }

    .am-item-price .amount,
    .am-item-total .amount {
        font-size: 13px;
    }

    .am-qty-badge {
        font-size: 13px;
        padding: 6px 12px;
        min-width: 38px;
        min-height: 38px;
    }

    .am-remove-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    #amelle-cart-page {
        padding: 20px 12px;
    }

    .am-cart-title {
        font-size: clamp(20px, 4vw, 28px);
    }

    .am-cart-header-row,
    .am-cart-item {
        grid-template-columns: 60px 1fr 50px 50px 50px 35px;
        padding: 10px 8px;
        gap: 8px;
    }

    .am-item-img {
        width: 60px;
        height: 80px;
    }

    .am-item-name {
        font-size: 12px;
    }

    .am-item-price .amount,
    .am-item-total .amount {
        font-size: 12px;
    }

    .am-qty-badge {
        font-size: 11px;
        padding: 4px 10px;
        min-width: 36px;
        min-height: 36px;
    }

    .am-remove-btn {
        width: 32px;
        height: 32px;
    }

    .am-remove-btn svg {
        width: 16px;
        height: 16px;
    }

    .am-checkout-btn,
    .am-continue-shopping {
        font-size: 11px;
        padding: 10px 14px;
        height: 44px;
    }

    .am-sum-total .label {
        font-size: 13px;
    }

    .am-sum-total .value {
        font-size: 16px;
    }
}

/* ========== PRINT ========== */
@media print {
    #amelle-cart-page {
        background: white;
        color: black;
    }

    .am-checkout-btn,
    .am-continue-shopping,
    .am-remove-btn,
    .am-empty-state {
        display: none;
    }
}
/* ==========================================================
   AMELLE CHECKOUT PAGE - CSS v3.0 FIXED
   100% WooCommerce Integrated | Responsive | Professional
   ========================================================== */

#amelle-checkout {
    --am-bg: #060606;
    --am-panel: rgba(255,255,255,0.03);
    --am-panel-hover: rgba(255,255,255,0.06);
    --am-border: rgba(255,255,255,0.10);
    --am-gold: #d6b36a;
    --am-gold-light: #e8c895;
    --am-gold-2: #b08d3f;
    --am-text: rgba(255,255,255,0.88);
    --am-muted: rgba(255,255,255,0.60);
    --am-radius: 24px;
    --am-radius-sm: 12px;
    --am-radius-xs: 8px;
    
    background: 
        radial-gradient(1200px 600px at 80% 15%, rgba(214,179,106,0.08), transparent 65%),
        linear-gradient(180deg, rgba(214,179,106,0.02) 0%, transparent 50%),
        var(--am-bg);
    
    color: var(--am-text);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 40px 20px 80px;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.am-checkout-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ========== WOOCOMMERCE NOTICES ========== */
.woocommerce-notices-wrapper {
    margin: 0 0 30px 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: rgba(52, 211, 153, 0.1) !important;
    border: 1px solid rgba(52, 211, 153, 0.3) !important;
    border-radius: var(--am-radius-sm) !important;
    color: rgba(52, 211, 153, 0.8) !important;
    padding: 12px 16px !important;
    margin: 0 0 16px 0 !important;
    font-size: 13px !important;
}

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    color: rgba(239, 68, 68, 0.8) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: rgba(52, 211, 153, 0.8) !important;
}

.woocommerce-error::before {
    color: rgba(239, 68, 68, 0.8) !important;
}

/* ========== HEADER ========== */
.am-checkout-head {
    margin-bottom: 50px;
    text-align: center;
}

.am-checkout-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--am-gold);
    font-weight: 700;
    margin: 0 0 12px;
}

.am-checkout-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--am-gold);
    margin: 0;
    letter-spacing: -1px;
}

/* ========== MAIN WRAPPER ========== */
.am-checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* ========== MAIN FORM SECTION ========== */
.am-checkout-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.am-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ========== CHECKOUT SECTIONS ========== */
.am-checkout-section {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: 28px;
    margin-bottom: 24px;
}

.am-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--am-border);
}

.am-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.am-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--am-gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FORM GROUPS ========== */
.am-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.am-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.am-form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--am-text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.am-form-input,
.am-form-textarea,
select.am-form-input {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--am-border);
    color: var(--am-text);
    padding: 12px 14px;
    border-radius: var(--am-radius-sm);
    font-family: inherit;
    font-size: 13px;
    transition: all 0.15s ease;
    outline: none;
}

.am-form-input::placeholder,
.am-form-textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.am-form-input:focus,
.am-form-textarea:focus,
select.am-form-input:focus {
    background: rgba(0,0,0,0.3);
    border-color: var(--am-gold);
    box-shadow: 0 0 0 3px rgba(214,179,106,0.1);
}

.am-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

select.am-form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d6b36a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

select.am-form-input option {
    background: #0f0f0f;
    color: rgba(255,255,255,0.88);
    padding: 8px 12px;
}

select.am-form-input option:checked {
    background: linear-gradient(135deg, #d6b36a, #b08d3f);
    color: #000;
    font-weight: 700;
}

/* ========== PAYMENT OPTIONS ========== */
.am-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.am-payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border: 2px solid var(--am-border);
    border-radius: var(--am-radius-sm);
    cursor: pointer;
    transition: all 0.15s ease;
}

.am-payment-option:hover {
    background: rgba(0,0,0,0.3);
    border-color: var(--am-gold);
}

.am-payment-radio {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--am-gold);
    flex-shrink: 0;
}

.am-payment-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.am-payment-title {
    font-weight: 700;
    color: var(--am-text);
    font-size: 13px;
}

.am-payment-desc {
    font-size: 12px;
    color: var(--am-muted);
}

/* ========== CARD DETAILS ========== */
.am-card-details {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--am-border);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.am-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--am-radius-xs);
    font-size: 11px;
    color: rgba(52, 211, 153, 0.8);
}

.am-security-note svg {
    color: rgba(52, 211, 153, 0.8);
    flex-shrink: 0;
}

/* ========== PLACE ORDER BUTTON ========== */
.am-place-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-2));
    color: #000 !important;
    border: none;
    padding: 12px 28px;
    height: 50px;
    border-radius: var(--am-radius-sm);
    font-weight: 800;
    font-size: 13px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 100%;
    margin: 16px 0 0 0;
}

.am-place-order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214,179,106,0.3);
}

.am-place-order-btn:active:not(:disabled) {
    transform: translateY(0);
}

.am-place-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.am-btn-arrow {
    font-size: 14px;
    transition: transform 0.15s ease;
}

.am-place-order-btn:hover:not(:disabled) .am-btn-arrow {
    transform: translateX(3px);
}

/* ========== SIDEBAR ========== */
.am-checkout-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.am-order-summary {
    background: linear-gradient(135deg, var(--am-panel), var(--am-panel-hover));
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius);
    padding: 28px;
}

.am-sum-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--am-gold);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--am-border);
}

/* ========== ORDER ITEMS ========== */
.am-order-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    max-height: 250px;
    overflow-y: auto;
    padding-bottom: 10px;
}

.am-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--am-border);
    font-size: 12px;
}

.am-order-item:last-child {
    border-bottom: none;
}

.am-item-name {
    color: var(--am-muted);
    font-weight: 600;
    flex: 1;
}

.am-item-price {
    color: var(--am-gold-light);
    font-weight: 700;
    text-align: right;
}

/* ========== SUMMARY ROWS ========== */
.am-sum-divider {
    height: 1px;
    background: var(--am-border);
    margin: 14px 0;
}

.am-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 12px;
}

.am-sum-row .label {
    color: var(--am-muted);
    font-weight: 600;
}

.am-sum-row .value {
    color: var(--am-text);
    font-weight: 600;
}

.am-text-gold {
    color: var(--am-gold) !important;
}

.am-sum-row.am-discount .value {
    color: rgba(52, 211, 153, 0.8);
}

/* ========== TOTAL ========== */
.am-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin: 14px 0;
    border-top: 2px solid var(--am-border);
    border-bottom: 2px solid var(--am-border);
}

.am-sum-total .label {
    font-weight: 700;
    font-size: 14px;
    color: var(--am-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.am-sum-total .value {
    font-weight: 800;
    font-size: 18px;
    color: var(--am-gold-light);
}

/* ========== SECURE BADGE ========== */
.am-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(214,179,106,0.05);
    border: 1px solid var(--am-border);
    border-radius: var(--am-radius-xs);
    font-size: 11px;
    color: var(--am-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 16px 0;
}

.am-secure-badge svg {
    color: var(--am-gold);
    flex-shrink: 0;
}

/* ========== EDIT CART LINK ========== */
.am-edit-cart-link {
    display: block;
    text-align: center;
    color: var(--am-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.15s ease;
    padding: 8px;
}

.am-edit-cart-link:hover {
    color: var(--am-gold);
}

/* ========== SCROLLBAR ========== */
.am-order-items::-webkit-scrollbar {
    width: 6px;
}

.am-order-items::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.am-order-items::-webkit-scrollbar-thumb {
    background: var(--am-gold);
    border-radius: 10px;
}

.am-order-items::-webkit-scrollbar-thumb:hover {
    background: var(--am-gold-light);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .am-checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .am-checkout-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    #amelle-checkout {
        padding: 30px 16px 60px;
    }

    .am-checkout-title {
        font-size: clamp(24px, 5vw, 32px);
    }

    .am-checkout-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .am-section-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .am-step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .am-section-title {
        font-size: 14px;
    }

    .am-form-input,
    .am-form-textarea,
    select.am-form-input {
        font-size: 14px;
        padding: 11px 12px;
    }

    .am-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .am-place-order-btn {
        height: 48px;
        font-size: 12px;
    }

    .am-payment-option {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    #amelle-checkout {
        padding: 20px 12px 40px;
    }

    .am-checkout-title {
        font-size: clamp(20px, 4vw, 26px);
    }

    .am-checkout-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .am-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .am-step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .am-section-title {
        font-size: 12px;
    }

    .am-form-label {
        font-size: 11px;
    }

    .am-form-input,
    .am-form-textarea,
    select.am-form-input {
        font-size: 14px;
        padding: 10px 12px;
    }

    .am-form-group {
        margin-bottom: 14px;
    }

    .am-form-row {
        gap: 12px;
    }

    .am-place-order-btn {
        height: 46px;
        font-size: 11px;
        margin-top: 16px;
        padding: 10px 20px;
    }

    .am-payment-option {
        padding: 12px;
    }

    .am-order-summary {
        padding: 20px;
    }

    .am-sum-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .am-order-item {
        font-size: 11px;
        padding: 8px 0;
    }

    .am-sum-row {
        font-size: 11px;
        padding: 8px 0;
    }

    .am-sum-total {
        padding: 12px 0;
        margin: 12px 0;
    }

    .am-sum-total .label {
        font-size: 12px;
    }

    .am-sum-total .value {
        font-size: 16px;
    }
}

/* ==========================================================
   AMELLE – FULL WEBSITE BACKGROUND VIDEO (FIXED)
   ========================================================== */

html, body{
  background: #000 !important;
}

/* Put the video behind all content */
#amelle-bgvideo{
  position: fixed;
  inset: 0;
  z-index: -9999;
  pointer-events: none;
  overflow: hidden;
}

/* Videos cover the entire viewport */
#amelle-bgvideo .amelle-bgv{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .35s ease;
}

/* Start with A visible */
#amelle-bgvideo .amelle-bgv-a{
  opacity: 1;
}

/* Dark overlay to keep content readable */
#amelle-bgvideo .amelle-bgv-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

/* Make sure common wrappers don't paint a solid background over the video */
#amelle-front-page,
#amelle-shop-page,
#page,
.site,
.site-content{
  background: transparent !important;
}

/* Optional: reduce motion users – keep first frame (still) */
@media (prefers-reduced-motion: reduce){
  #amelle-bgvideo .amelle-bgv{
    transition: none;
  }
}

/* ==========================================================
   AMELLE – BG VIDEO FIX (ensure visible behind everything)
   ========================================================== */
#amelle-bgvideo{ z-index: 0 !important; }
body{ position: relative; }
body > *{ position: relative; z-index: 1; }

/* ==========================================================
   AMELLE – FORCE VIDEO BACKGROUND ON ALL PAGES
   (Keep existing designs, just let the global bg video show through)
   ========================================================== */
#amelle-front-page,
#amelle-shop-page,
#amelle-collab,
#amelle-categories-page,
#amelle-collections-page,
#amelle-about-page,
#amelle-contact-page,
#amelle-cart-page,
#amelle-checkout,
#amelle-thankyou,
#amelle-404-page,
#amelle-product-page{
  background: transparent !important;
}
