/* ==========================================================================
   Forshe Homepage — Luxury Editorial x Gen-Z Glam
   Mobile-first. Base styles = phone. min-width media queries scale up.
   ========================================================================== */

:root, body, .forshe-home {
  --rose: #C4617A;
  --rose-deep: #9E4A61;
  --gold: #BFA07A;
  --gold-light: #D8C4A5;
  --dark: #1A0F15;
  --ivory: #FAF7F4;
  --white: #FFFFFF;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  background: var(--ivory);
  color: var(--dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.forshe-home * { box-sizing: border-box; }
.forshe-home img { max-width: 100%; display: block; }
.forshe-home a { text-decoration: none; color: inherit; }
.forshe-home ul { list-style: none; margin: 0; padding: 0; }

.fh-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------- Announcement bar -------------------- */
.fh-announce {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 12px;
}

/* -------------------- Sticky nav -------------------- */
.fh-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 244, 0.96);
  
  border-bottom: 1px solid rgba(26, 15, 21, 0.08);
}
.fh-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.fh-nav-icon-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
}
.fh-nav-icon-btn svg { width: 22px; height: 22px; }
.fh-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-align: center;
}
.fh-logo img { height: 34px; width: auto; margin: 0 auto; }
.fh-nav-right { display: flex; align-items: center; gap: 4px; }

/* Slide-out drawer */
.fh-drawer-check { display: none; }
.fh-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 84%;
  max-width: 340px;
  height: 100%;
  background: var(--dark);
  color: var(--ivory);
  z-index: 100;
  padding: 28px 26px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.fh-drawer-check:checked ~ .fh-drawer { transform: translateX(0); }
.fh-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.fh-drawer-check:checked ~ .fh-drawer-overlay { opacity: 1; pointer-events: auto; }
.fh-drawer-close {
  display: block; margin-left: auto; width: 34px; height: 34px;
  color: var(--gold-light); cursor: pointer; margin-bottom: 20px;
}
.fh-drawer-links { display: flex; flex-direction: column; gap: 2px; }
.fh-drawer-links a {
  font-family: var(--font-serif);
  font-size: 26px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--ivory);
}
.fh-drawer-sub { margin-top: 28px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); opacity: 0.85; }
.fh-drawer-sub a { display: block; padding: 8px 0; }

/* -------------------- Hero -------------------- */
.fh-hero {
  position: relative;
  height: 82vh;
  min-height: 460px;
  max-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.fh-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  animation: fh-kenburns 18s ease-in-out infinite alternate;
}
@keyframes fh-kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.09); }
}
.fh-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,15,21,0.15) 0%, rgba(26,15,21,0.15) 40%, rgba(26,15,21,0.75) 100%);
}
.fh-hero-content {
  position: relative; z-index: 2;
  padding: 0 20px 40px;
  color: var(--white);
  width: 100%;
}
.fh-hero-eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px; font-weight: 600;
}
.fh-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 10vw, 76px);
  line-height: 1.02;
  font-weight: 500;
  margin: 0 0 16px;
}
.fh-hero h1 em { font-style: italic; color: var(--gold-light); }
.fh-hero p {
  font-size: 15px; max-width: 420px; margin: 0 0 22px; opacity: 0.92; line-height: 1.5;
}
.fh-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer; transition: all .25s ease;
}
.fh-btn-primary { background: var(--rose); color: var(--white); }
.fh-btn-primary:hover { background: var(--rose-deep); transform: translateY(-1px); }
.fh-btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.fh-btn-outline:hover { background: rgba(255,255,255,0.12); }
.fh-btn-dark { background: var(--dark); color: var(--gold-light); }
.fh-btn-dark:hover { background: #2a1a22; }

/* -------------------- Marquee -------------------- */
.fh-marquee {
  background: var(--rose);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
}
.fh-marquee-track {
  display: inline-flex;
  animation: fh-scroll 26s linear infinite;
}
.fh-marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  padding: 0 28px;
  white-space: nowrap;
}
@keyframes fh-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------- Section heading -------------------- */
.fh-section { padding: 56px 0; }
.fh-section-head { text-align: center; margin-bottom: 30px; padding: 0 20px; }
.fh-section-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose); font-weight: 700; margin-bottom: 8px;
}
.fh-section-title {
  font-family: var(--font-serif); font-size: clamp(30px, 6vw, 44px);
  font-weight: 500; margin: 0;
}
.fh-section-title em { font-style: italic; color: var(--rose); }

/* -------------------- Category grid -------------------- */
.fh-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px;
}
.fh-cat-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark);
}
.fh-cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.fh-cat-tile:hover img { transform: scale(1.06); }
.fh-cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,15,21,0.82) 100%);
}
.fh-cat-label {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  color: var(--white); font-family: var(--font-serif);
  font-size: 21px; font-style: italic;
}
.fh-cat-label small {
  display: block; font-family: var(--font-sans); font-style: normal;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-top: 4px;
}

/* -------------------- Product carousel -------------------- */
.fh-carousel-wrap { padding-left: 20px; }
.fh-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  padding-right: 20px;
  scrollbar-width: none;
}
.fh-carousel::-webkit-scrollbar { display: none; }
.fh-card {
  scroll-snap-align: start;
  flex: 0 0 68%;
  max-width: 300px;
}
.fh-card-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
  margin-bottom: 12px;
}
.fh-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fh-card:hover .fh-card-img img { transform: scale(1.05); }
.fh-card-cat { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); font-weight: 700; margin-bottom: 4px; }
.fh-card-title { font-family: var(--font-serif); font-size: 19px; line-height: 1.25; margin: 0 0 6px; }
.fh-card-price { font-size: 14px; color: var(--dark); font-weight: 500; }
.fh-carousel-cta { text-align: center; margin-top: 30px; padding: 0 20px; }

/* -------------------- Editorial split -------------------- */
.fh-split {
  display: grid;
  grid-template-columns: 1fr;
}
.fh-split-img { aspect-ratio: 4/5; overflow: hidden; }
.fh-split-img img { width: 100%; height: 100%; object-fit: cover; }
.fh-split-copy {
  background: var(--dark); color: var(--ivory);
  padding: 44px 26px;
  display: flex; flex-direction: column; justify-content: center;
}
.fh-split-copy .fh-section-eyebrow { color: var(--gold-light); }
.fh-split-copy h2 { font-family: var(--font-serif); font-size: clamp(28px,7vw,42px); font-weight: 500; margin: 0 0 14px; font-style: italic; }
.fh-split-copy p { font-size: 14px; line-height: 1.7; opacity: 0.85; margin: 0 0 24px; max-width: 440px; }

/* -------------------- Instagram -------------------- */
.fh-ig-head { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 24px; padding: 0 20px; }
.fh-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.fh-ig-grid a { position: relative; aspect-ratio: 4/5; overflow: hidden; display: block; }
.fh-ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fh-ig-grid a:hover img { transform: scale(1.08); }
.fh-ig-grid a::after {
  content: ""; position: absolute; inset: 0; background: rgba(196,97,122,0); transition: background .25s;
}
.fh-ig-grid a:hover::after { background: rgba(196,97,122,0.28); }

.fh-ig-float {
  position: fixed;
  right: 16px; bottom: 16px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4617A, #BFA07A);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(26,15,21,0.28);
  z-index: 55;
}
.fh-ig-float svg { width: 24px; height: 24px; }

/* -------------------- Newsletter -------------------- */
.fh-newsletter {
  background: var(--rose);
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
}
.fh-newsletter h2 { font-family: var(--font-serif); font-size: clamp(26px,6vw,36px); font-style: italic; font-weight: 500; margin: 0 0 8px; }
.fh-newsletter p { font-size: 13px; opacity: 0.9; margin: 0 0 22px; }
.fh-news-form { display: flex; flex-direction: column; gap: 10px; max-width: 380px; margin: 0 auto; }
.fh-news-form input[type=email] {
  padding: 14px 18px; border-radius: 100px; border: none;
  font-family: var(--font-sans); font-size: 14px; width: 100%;
}
.fh-news-form button { width: 100%; }

/* -------------------- Trust strip -------------------- */
.fh-trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  padding: 30px 20px; text-align: center; background: var(--white);
}
.fh-trust-item svg { width: 26px; height: 26px; color: var(--rose); margin: 0 auto 8px; }
.fh-trust-item span { display: block; font-size: 11.5px; letter-spacing: 0.03em; color: var(--dark); font-weight: 600; }

/* -------------------- Footer -------------------- */
.fh-footer { background: var(--dark); color: var(--ivory); padding: 50px 20px 26px; }
.fh-footer-logo { font-family: var(--font-serif); font-size: 24px; font-style: italic; color: var(--gold-light); margin-bottom: 14px; }
.fh-footer-cols { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 30px; }
.fh-footer-col h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 12px; }
.fh-footer-col a, .fh-footer-col p { display: block; font-size: 13.5px; opacity: 0.78; padding: 5px 0; line-height: 1.5; }
.fh-footer-social { display: flex; gap: 14px; margin-top: 6px; }
.fh-footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fh-footer-social svg { width: 16px; height: 16px; }
.fh-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 11.5px; opacity: 0.55; text-align: center; }

/* -------------------- Scroll reveal -------------------- */
.fh-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fh-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Tablet / Desktop
   ========================================================================== */
@media (min-width: 640px) {
  .fh-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .fh-trust { grid-template-columns: repeat(4, 1fr); }
  .fh-footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .fh-nav-row { padding: 16px 32px; }
  .fh-logo img { height: 42px; }
  .fh-hero-content { padding: 0 60px 64px; }
  .fh-card { flex: 0 0 26%; }
  .fh-split { grid-template-columns: 1fr 1fr; }
  .fh-split-copy { padding: 70px; }
  .fh-news-form { flex-direction: row; }
  .fh-news-form input[type=email] { flex: 1; }
  .fh-news-form button { width: auto; white-space: nowrap; }
  .fh-footer-cols { grid-template-columns: repeat(4, 1fr); }
  .fh-section { padding: 84px 0; }
}


/* ==========================================================================
   SPACIOUS LUXURY EDITORIAL DRAWER & GLOBAL CONTRAST ENHANCEMENTS
   ========================================================================== */

/* High-Contrast Body & Announcement Bar */
.fh-announce {
  background: #0d0a0c !important;
  color: #f3e5ab !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  padding: 10px 14px !important;
}

.fh-desktop-cats {
    display: none;
    align-items: center;
    gap: 22px;
    margin-left: 14px;
}
@media (min-width: 992px) {
    .fh-desktop-cats {
        display: flex;
    }
}
.fh-desktop-cats a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a0f15;
    text-decoration: none;
    transition: color 0.2s ease;
}
.fh-desktop-cats a:hover {
    color: #bfa07a;
}
.fh-desktop-cats a.fh-gold-link {
    color: #9e4a61;
    border-bottom: 2px solid #bfa07a;
    padding-bottom: 2px;
}

/* Spacious Luxury Drawer Panel */
.fh-drawer {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: 90% !important;
    max-width: 440px !important;
    height: 100% !important;
    background: #0d0a0c !important;
    color: #ffffff !important;
    z-index: 10000 !important;
    padding: 30px 28px 50px !important;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.4,0,.2,1) !important;
    overflow-y: auto !important;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5) !important;
}

.fh-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 25px;
}
.fh-drawer-brand {
    font-family: var(--font-serif);
    font-size: 22px;
    letter-spacing: 0.1em;
    color: #d8c4a5;
    font-weight: 600;
}
.fh-drawer-close {
    cursor: pointer;
    color: #d8c4a5;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fh-drawer-section {
    margin-bottom: 32px;
}
.fh-drawer-cat-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #bfa07a;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.fh-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fh-drawer-links a {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: color 0.2s ease;
}
.fh-drawer-links a:hover {
    color: #d8c4a5;
}
.fh-badge-tag {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}
.fh-badge-tag.gold {
    background: rgba(191, 160, 122, 0.25);
    color: #f3e5ab;
    border: 1px solid rgba(191, 160, 122, 0.4);
}
.fh-badge-tag.green {
    background: rgba(46, 125, 50, 0.25);
    color: #a5d6a7;
}

.fh-drawer-featured-card {
    background: linear-gradient(135deg, #1e151a 0%, #140d12 100%);
    border: 1.5px solid #bfa07a;
    border-radius: 16px;
    padding: 22px;
    margin-top: 8px;
}
.fh-dfc-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: #d8c4a5;
    margin-bottom: 8px;
}
.fh-dfc-sub {
    font-size: 14px;
    color: #dddddd;
    line-height: 1.5;
    margin-bottom: 16px;
}
.fh-dfc-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #c5a059 0%, #b38728 100%);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 20px;
    border-radius: 40px;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
}

.fh-drawer-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 10px;
}
.fh-drawer-sub-grid a {
    font-size: 14px;
    color: #eeeeee;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}
.fh-drawer-sub-grid a:hover {
    color: #d8c4a5;
}


/* Strict Hiding for Drawer Checkbox Trigger & Styling for Close X Button */
input.fh-drawer-check,
input#fh-drawer-toggle {
    display: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
}

.fh-drawer-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    color: #d8c4a5 !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: 1px solid rgba(216, 196, 165, 0.35) !important;
}
.fh-drawer-close:hover {
    background: #c5a059 !important;
    color: #ffffff !important;
}
.fh-drawer-close svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    stroke-width: 2.5 !important;
}

.fh-drawer, .fh-nav, .fh-announce { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }


/* ==========================================================================
   BRIGHT LUMINOUS LUXURY DRAWER & LIGHT OVERLAY SYSTEM
   ========================================================================== */

.fh-announce {
  background: #1a0f15 !important;
  color: #f3e5ab !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  padding: 10px 14px !important;
}

.fh-drawer {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: 90% !important;
    max-width: 440px !important;
    height: 100% !important;
    background: #fbf8f5 !important;
    color: #1a0f15 !important;
    z-index: 100000 !important;
    padding: 30px 28px 50px !important;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.4,0,.2,1) !important;
    overflow-y: auto !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12) !important;
    border-left: 2px solid #e8dec8 !important;
}

.fh-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(26, 15, 21, 0.1);
    margin-bottom: 25px;
}
.fh-drawer-brand {
    font-family: var(--font-serif);
    font-size: 22px;
    letter-spacing: 0.1em;
    color: #9e7b3b;
    font-weight: 600;
}

.fh-drawer-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    color: #1a0f15 !important;
    background: #f0e6d5 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: 1px solid #d8c8a8 !important;
}
.fh-drawer-close:hover {
    background: #c5a059 !important;
    color: #ffffff !important;
}

.fh-drawer-cat-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #9e7b3b;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.fh-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fh-drawer-links a {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 15, 21, 0.08);
    color: #1a0f15;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: color 0.2s ease;
}
.fh-drawer-links a:hover {
    color: #9e7b3b;
}

.fh-badge-tag {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: #ede3d1;
    color: #1a0f15;
}
.fh-badge-tag.gold {
    background: #fff4db;
    color: #8c6827;
    border: 1px solid #e0c890;
}
.fh-badge-tag.green {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.fh-drawer-featured-card {
    background: #f4ebd9;
    border: 1.5px solid #d4c098;
    border-radius: 16px;
    padding: 22px;
    margin-top: 8px;
}
.fh-dfc-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: #1a0f15;
    margin-bottom: 8px;
}
.fh-dfc-sub {
    font-size: 14px;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 16px;
}
.fh-dfc-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #c5a059 0%, #b38728 100%);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 20px;
    border-radius: 40px;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.3);
}

.fh-drawer-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 10px;
}
.fh-drawer-sub-grid a {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}
.fh-drawer-sub-grid a:hover {
    color: #9e7b3b;
}

.fh-drawer-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.35) !important;
    z-index: 99998 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease !important;
}

/* ==========================================================================
   Forshe Desktop Width Optimization — Elegant Centered Container
   Applied to WooCommerce Shop Archive, Category Pages, and Single Product Pages
   ========================================================================== */
@media (min-width: 1200px) {
  body.woocommerce-page .container,
  body.post-type-archive-product .container,
  body.tax-product_cat .container,
  body.tax-product_tag .container,
  body.single-product .container,
  .woocommerce-page #contents,
  .woocommerce-page #main-content,
  .woocommerce #contents,
  .category-contents,
  .single-product-container {
    max-width: 1280px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ==========================================================================
   Single Product / Dress Detail Page — Elegant Desktop Layout
   ========================================================================== */
@media (min-width: 1024px) {
  .single-product div.product,
  .single-product #content,
  .single-product .emarket_breadcrumbs .container,
  .single-product .site-main {
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .single-product div.product {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    align-items: flex-start !important;
    padding-top: 30px !important;
    padding-bottom: 50px !important;
  }

  .single-product div.product div.images,
  .single-product div.product .images {
    flex: 1 1 48% !important;
    max-width: 48% !important;
    margin: 0 !important;
  }

  .single-product div.product div.summary,
  .single-product div.product .summary {
    flex: 1 1 calc(52% - 40px) !important;
    max-width: calc(52% - 40px) !important;
    margin: 0 !important;
  }

  .single-product div.product .woocommerce-tabs,
  .single-product div.product .related.products,
  .single-product div.product .upsells.products,
  .single-product div.product .up-sells {
    flex: 1 1 100% !important;
    width: 100% !important;
    margin-top: 40px !important;
  }
}
