/* ============================================
   WILDFLOWER RANCH BOUTIQUE
   Western Chic | Canton, TX
   ============================================ */

:root {
  --rose: #b5636b;
  --rose-hover: #9e555c;
  --rose-light: #f2e0e2;
  --rose-pale: #faf2f3;
  --cream: #fdf8f3;
  --brown: #5c3a21;
  --brown-light: #8b6f55;
  --gold: #c4a265;
  --gold-light: #e8d5b0;
  --sage: #7a9b6d;
  --dark: #1e1410;
  --text: #2d2017;
  --text-mid: #6b5c50;
  --text-light: #9a8b7f;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(30,20,16,0.06);
  --shadow-md: 0 4px 20px rgba(30,20,16,0.08);
  --shadow-lg: 0 8px 40px rgba(30,20,16,0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --ease: 0.3s ease;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Montserrat', -apple-system, sans-serif;
  --font-s: 'Dancing Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--rose-light); color: var(--brown); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ======== ANNOUNCEMENT BAR ======== */
.announcement {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 10px 40px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}
.announcement-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 1.2rem; opacity: 0.7; transition: opacity var(--ease);
}
.announcement-close:hover { opacity: 1; }
.announcement.is-hidden { display: none; }

/* ======== NAVIGATION ======== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,243,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow var(--ease), top var(--ease);
}
.nav.has-announcement { top: 38px; }
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main {
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 600;
  color: var(--brown); letter-spacing: 0.5px;
}
.nav-logo-sub {
  font-size: 0.55rem; letter-spacing: 4px; color: var(--text-mid);
  font-weight: 500; margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-mid);
  position: relative; padding: 4px 0; transition: color var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--rose); transition: width var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--rose); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-action {
  color: var(--text-mid); font-size: 1.05rem; transition: color var(--ease); position: relative;
}
.nav-action:hover { color: var(--rose); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--rose); color: var(--white);
  font-size: 0.58rem; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; width: 22px; padding: 4px 0;
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: all var(--ease); transform-origin: center;
}
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 300px; max-width: 80vw;
  height: 100vh; background: var(--cream); z-index: 1100;
  padding: 80px 36px 40px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.is-open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 1099; opacity: 0; visibility: hidden; transition: all var(--ease);
}
.mobile-overlay.is-visible { opacity: 1; visibility: visible; }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px; font-size: 1.6rem; color: var(--text);
}
.mobile-link {
  display: block; padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.06); transition: color var(--ease);
}
.mobile-link:hover, .mobile-link.active { color: var(--rose); }
.mobile-socials { display: flex; gap: 20px; margin-top: 32px; }
.mobile-socials a { color: var(--text-mid); font-size: 1.1rem; transition: color var(--ease); }
.mobile-socials a:hover { color: var(--rose); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ======== HERO ======== */
.hero {
  position: relative; height: 100vh; min-height: 550px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--brown);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #5c3a21 0%, #8b6f55 35%, #c4a265 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; animation: fadeUp 1s ease both; }
.hero-script {
  font-family: var(--font-s); font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gold-light); margin-bottom: 10px;
}
.hero-title {
  font-family: var(--font-h); font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 14px; letter-spacing: 1px;
}
.hero-sub {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem); color: rgba(255,255,255,0.75);
  letter-spacing: 3px; text-transform: uppercase; font-weight: 400; margin-bottom: 36px;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.5); font-size: 1.1rem;
  animation: float 2.5s ease-in-out infinite;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 130px 0 50px; text-align: center;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-family: var(--font-h); font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown); margin-bottom: 10px;
}
.page-hero .page-hero-script {
  font-family: var(--font-s); font-size: 1.2rem; color: var(--rose); margin-bottom: 8px;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-light);
}
.breadcrumb a:hover { color: var(--rose); }

/* ======== SECTIONS ======== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-script {
  font-family: var(--font-s); font-size: 1.2rem;
  color: var(--rose); display: block; margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--brown); font-weight: 600; margin-bottom: 12px;
}
.section-divider { width: 50px; height: 2px; background: var(--gold); margin: 0 auto; }
.section-cta { text-align: center; margin-top: 36px; }

/* ======== BUTTONS ======== */
.btn {
  display: inline-block; padding: 13px 34px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border-radius: var(--radius);
  transition: all var(--ease); text-align: center;
}
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(181,99,107,0.25); }
.btn-outline { border: 1.5px solid var(--brown); color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b08e50; transform: translateY(-2px); }

/* ======== CATEGORY CARDS ======== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,20,16,0.55) 0%, rgba(30,20,16,0.05) 60%);
  transition: background var(--ease);
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(30,20,16,0.65) 0%, rgba(30,20,16,0.15) 60%);
}
.cat-card-name {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  font-family: var(--font-h); font-size: 1.2rem; color: var(--white); font-weight: 600; letter-spacing: 0.5px;
}
@media (max-width: 768px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ======== PRODUCT GRID ======== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--rose-pale); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.p-badge {
  position: absolute; top: 10px; left: 10px; padding: 4px 10px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 2px; z-index: 2;
}
.p-badge-new { background: var(--brown); color: var(--white); }
.p-badge-sale { background: var(--rose); color: var(--white); }
.product-card-body { padding: 14px 16px 18px; }
.product-card-name {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 500;
  color: var(--text); margin-bottom: 5px; line-height: 1.4;
}
.product-card-price { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; margin-bottom: 10px; }
.product-card-price .og { text-decoration: line-through; color: var(--text-light); margin-right: 6px; font-weight: 400; }
.product-card-price .sp { color: var(--rose); font-weight: 600; }
.product-card-btn {
  width: 100%; padding: 9px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--brown);
  border: 1.5px solid var(--brown); border-radius: var(--radius);
  transition: all var(--ease);
}
.product-card-btn:hover { background: var(--brown); color: var(--white); }

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-body { padding: 10px 12px 14px; }
  .product-card-name { font-size: 0.82rem; }
}

/* ======== STORY / ABOUT BLOCKS ======== */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.story-grid.flip { direction: rtl; }
.story-grid.flip > * { direction: ltr; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; }
.story-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-script { font-family: var(--font-s); font-size: 1.2rem; color: var(--rose); margin-bottom: 6px; display: block; }
.story-heading {
  font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--brown); font-weight: 600; margin-bottom: 18px; line-height: 1.3;
}
.story-text { color: var(--text-mid); margin-bottom: 14px; line-height: 1.8; font-size: 0.92rem; }
@media (max-width: 768px) {
  .story-grid, .story-grid.flip { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
}

/* ======== TESTIMONIALS ======== */
.testimonials-section { background: var(--rose-pale); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; }
.test-stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 14px; display: flex; justify-content: center; gap: 2px; }
.test-text { font-style: italic; color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }
.test-author { font-weight: 600; font-size: 0.8rem; color: var(--brown); letter-spacing: 0.5px; }
@media (max-width: 768px) { .test-grid { grid-template-columns: 1fr; } }

/* ======== INSTAGRAM ======== */
.insta-handle {
  display: block; text-align: center; font-size: 0.95rem; color: var(--rose);
  font-weight: 500; margin-bottom: 24px; transition: opacity var(--ease);
}
.insta-handle:hover { opacity: 0.7; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-over {
  position: absolute; inset: 0; background: rgba(181,99,107,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease); color: var(--white); font-size: 1.3rem;
}
.insta-item:hover .insta-over { opacity: 1; }
@media (max-width: 600px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ======== NEWSLETTER ======== */
.newsletter { background: var(--rose-pale); text-align: center; }
.newsletter-title { font-family: var(--font-h); font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--brown); margin-bottom: 6px; }
.newsletter-sub { font-family: var(--font-s); font-size: 1.1rem; color: var(--rose); margin-bottom: 24px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto 10px; }
.newsletter-input {
  flex: 1; padding: 13px 18px; border: 1.5px solid rgba(0,0,0,0.1);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  background: var(--white); font-size: 0.85rem; outline: none; transition: border-color var(--ease);
}
.newsletter-input:focus { border-color: var(--rose); }
.newsletter-submit {
  padding: 13px 24px; background: var(--rose); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 0 var(--radius) var(--radius) 0; transition: background var(--ease);
}
.newsletter-submit:hover { background: var(--rose-hover); }
.newsletter-fine { font-size: 0.72rem; color: var(--text-light); }
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; gap: 8px; }
  .newsletter-input { border-right: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius); }
  .newsletter-submit { border-radius: var(--radius); }
}

/* ======== FOOTER ======== */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { display: flex; flex-direction: column; margin-bottom: 14px; }
.footer-logo-main { font-family: var(--font-h); font-size: 1.2rem; color: var(--white); font-weight: 600; }
.footer-logo-sub { font-size: 0.5rem; letter-spacing: 4px; color: var(--gold); font-weight: 500; }
.footer-about { font-size: 0.82rem; line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  transition: all var(--ease); color: rgba(255,255,255,0.6);
}
.footer-socials a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.footer-heading {
  font-family: var(--font-h); color: var(--white); font-size: 0.95rem;
  font-weight: 600; margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.82rem; transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.82rem; }
.footer-contact i { color: var(--gold); margin-top: 3px; font-size: 0.75rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0;
  text-align: center; font-size: 0.75rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ======== SHOP PAGE FILTER BAR ======== */
.filter-bar {
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  background: var(--white); position: sticky; top: 70px; z-index: 50;
}
.filter-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 18px; font-size: 0.72rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 20px;
  color: var(--text-mid); transition: all var(--ease);
}
.filter-pill:hover { border-color: var(--rose); color: var(--rose); }
.filter-pill.active { background: var(--rose); border-color: var(--rose); color: var(--white); }
.filter-controls { display: flex; align-items: center; gap: 14px; }
.filter-count { font-size: 0.8rem; color: var(--text-light); }
.filter-sort {
  padding: 7px 14px; border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius);
  font-size: 0.8rem; color: var(--text-mid); background: var(--white); outline: none;
}

/* ======== PRODUCT DETAIL ======== */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pd-main-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--rose-pale); position: relative; }
.pd-main-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.pd-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.pd-thumb {
  width: 68px; height: 85px; border-radius: var(--radius); overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: all var(--ease); opacity: 0.5;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--rose); opacity: 1; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-name {
  font-family: var(--font-h); font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600; color: var(--brown); margin-bottom: 8px;
}
.pd-price { font-size: 1.15rem; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.pd-price .og { text-decoration: line-through; color: var(--text-light); font-weight: 400; margin-right: 8px; }
.pd-price .sp { color: var(--rose); }
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.pd-stars { color: var(--gold); font-size: 0.82rem; }
.pd-review-ct { font-size: 0.8rem; color: var(--text-light); }
.pd-desc { color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.pd-option { margin-bottom: 20px; }
.pd-option-label {
  display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text); margin-bottom: 8px;
}
.size-btns { display: flex; gap: 6px; }
.size-btn {
  width: 42px; height: 42px; border: 1.5px solid rgba(0,0,0,0.12); border-radius: var(--radius);
  font-size: 0.75rem; font-weight: 500; color: var(--text-mid); transition: all var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.size-btn:hover { border-color: var(--rose); color: var(--rose); }
.size-btn.active { background: var(--brown); border-color: var(--brown); color: var(--white); }
.qty-control {
  display: flex; align-items: center; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius); width: fit-content;
}
.qty-btn {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--text-mid); transition: color var(--ease);
}
.qty-btn:hover { color: var(--rose); }
.qty-input {
  width: 44px; height: 42px; text-align: center; border: none;
  border-left: 1.5px solid rgba(0,0,0,0.08); border-right: 1.5px solid rgba(0,0,0,0.08);
  font-size: 0.88rem; font-weight: 500; background: transparent; outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-atc {
  width: 100%; padding: 15px; background: var(--rose); color: var(--white);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: var(--radius); margin-top: 6px; transition: all var(--ease);
}
.btn-atc:hover { background: var(--rose-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(181,99,107,0.25); }
.pd-ship { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.8rem; color: var(--text-light); }
.pd-ship i { color: var(--sage); }
/* Accordion */
.acc { border-top: 1px solid rgba(0,0,0,0.08); }
.acc:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.acc-header {
  width: 100%; padding: 16px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; color: var(--text); text-align: left;
}
.acc-header i { font-size: 0.65rem; transition: transform var(--ease); color: var(--text-light); }
.acc.is-open .acc-header i { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc.is-open .acc-body { max-height: 600px; }
.acc-content { padding-bottom: 18px; font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.acc-content ul { padding-left: 18px; margin-top: 6px; }
.acc-content li { list-style: disc; margin-bottom: 3px; }
.size-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.size-table th, .size-table td { padding: 7px 14px; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.8rem; }
.size-table th { font-weight: 600; color: var(--text); }
@media (max-width: 768px) { .pd-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ======== CART PAGE ======== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-title {
  font-family: var(--font-h); font-size: 1.8rem; color: var(--brown); margin-bottom: 28px;
}
.cart-title span { font-size: 0.95rem; font-weight: 400; color: var(--text-light); }
.cart-item {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.06); align-items: center;
}
.cart-item-img { width: 90px; height: 110px; border-radius: var(--radius); overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-h); font-size: 0.92rem; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.cart-item-size { font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; }
.cart-item-price { font-weight: 500; font-size: 0.88rem; }
.cart-item-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item-remove { color: var(--text-light); font-size: 0.82rem; transition: color var(--ease); }
.cart-item-remove:hover { color: var(--rose); }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty i { font-size: 2.5rem; color: var(--text-light); margin-bottom: 14px; display: block; }
.cart-empty h2 { font-family: var(--font-h); color: var(--brown); margin-bottom: 8px; font-size: 1.3rem; }
.cart-empty p { color: var(--text-mid); margin-bottom: 20px; font-size: 0.9rem; }
.cart-summary-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: 110px; box-shadow: var(--shadow-sm);
}
.cart-summary-heading { font-family: var(--font-h); font-size: 1.1rem; color: var(--brown); margin-bottom: 20px; }
.sum-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 10px; }
.sum-line.total {
  font-size: 1.05rem; font-weight: 600; color: var(--text); padding-top: 14px;
  margin-top: 14px; border-top: 1.5px solid rgba(0,0,0,0.08);
}
.btn-checkout {
  width: 100%; padding: 15px; background: var(--gold); color: var(--white);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: var(--radius); margin-top: 18px; transition: all var(--ease);
}
.btn-checkout:hover { background: #b08e50; }
.cart-secure { text-align: center; font-size: 0.72rem; color: var(--text-light); margin-top: 10px; }
.cart-secure i { margin-right: 3px; }
.cart-continue { display: block; text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--text-mid); transition: color var(--ease); }
.cart-continue:hover { color: var(--rose); }
.pay-icons { display: flex; justify-content: center; gap: 10px; margin-top: 14px; font-size: 1.4rem; color: var(--text-light); }
.free-ship-note { text-align: center; font-size: 0.75rem; color: var(--sage); margin-top: 10px; }
.free-ship-note i { margin-right: 4px; }
@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-right { flex-direction: row; align-items: center; grid-column: 1 / -1; justify-content: space-between; }
}

/* ======== VALUES ======== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius-lg);
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 56px; height: 56px; background: var(--rose-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--rose); font-size: 1.1rem;
}
.value-title { font-family: var(--font-h); font-size: 1.05rem; color: var(--brown); margin-bottom: 10px; }
.value-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* ======== VISIT ======== */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 28px; align-items: start; }
.map-placeholder {
  width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--gold-light) 0%, #d4c4a0 100%);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--brown); gap: 6px;
}
.map-placeholder i { font-size: 1.8rem; }
.map-placeholder span { font-size: 1rem; font-weight: 500; letter-spacing: 1px; }
.visit-item { display: flex; gap: 14px; margin-bottom: 20px; }
.visit-item i { color: var(--rose); font-size: 0.95rem; margin-top: 3px; }
.visit-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--brown); margin-bottom: 3px; }
.visit-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
@media (max-width: 600px) { .visit-grid { grid-template-columns: 1fr; } }

/* ======== TOAST ======== */
.toast-box { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 6px; }
.toast {
  background: var(--dark); color: var(--white); padding: 12px 22px; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 500; box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease both; display: flex; align-items: center; gap: 8px;
}
.toast.out { animation: toastOut 0.3s ease both; }
.toast i { color: var(--gold); }

/* ======== BACK TO TOP ======== */
.btt {
  position: fixed; bottom: 20px; right: 20px; width: 42px; height: 42px;
  background: var(--rose); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all var(--ease); z-index: 100;
}
.btt.show { opacity: 1; visibility: visible; }
.btt:hover { background: var(--rose-hover); transform: translateY(-3px); }

/* ======== ANIMATIONS ======== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-7px); } }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(30px); } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.07s; }
.stagger > *:nth-child(3) { transition-delay: 0.14s; }
.stagger > *:nth-child(4) { transition-delay: 0.21s; }
.stagger > *:nth-child(5) { transition-delay: 0.28s; }
.stagger > *:nth-child(6) { transition-delay: 0.35s; }
.stagger > *:nth-child(7) { transition-delay: 0.42s; }
.stagger > *:nth-child(8) { transition-delay: 0.49s; }
