/* ==========================================================================
   Dust & Ridge - Premium Print & Apparel E-Commerce Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  --primary: #111111;
  --primary-dark: #292725;
  --earth-rust: #9A4F32;
  --deep-brown: #4A3428;
  --sand: #C8B08A;
  --warm-cream: #F2E8D5;
  --charcoal: #292725;
  --eucalyptus: #526653;
  --secondary: #9A4F32;
  --secondary-hover: #7e3e26;
  --accent: #C8B08A;
  --bg-cream: #FBF8F2;
  --bg-sand: #F2E8D5;
  --bg-card: #ffffff;
  --text-main: #292725;
  --text-muted: #5C554E;
  --text-light: #8A8077;
  --border-color: #E2D7C5;
  --border-dark: #292725;
  --gold-star: #D9822B;
  
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(41, 39, 37, 0.04);
  --shadow-md: 0 10px 30px rgba(41, 39, 37, 0.06);
  --shadow-lg: 0 20px 45px rgba(41, 39, 37, 0.10);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==========================================================================
   Top Announcement Bar (Clean Minimal Rotating Slider)
   ========================================================================== */
.top-bar {
  background-color: #1a1a1a;
  color: #e5ded2;
  padding: 8px 16px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  gap: 8px;
}

.top-bar-slider {
  position: relative;
  width: 100%;
  height: 24px;
  overflow: hidden;
  text-align: center;
}

.top-bar-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.top-bar-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-bar-slide span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F2E8D5;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.top-bar-slide i {
  color: var(--sand);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.top-bar-arrow-btn {
  background: none;
  border: none;
  color: #a89f91;
  font-size: 1.1rem;
  padding: 0 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.top-bar-arrow-btn:hover {
  color: #ffffff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background-color: var(--bg-cream);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header .container {
  max-width: 1440px;
  padding: 0 28px;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(251, 249, 245, 0.98);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
  width: 100%;
  position: relative;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #3d2f24;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.brand-logo-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #2b1f17;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.62rem;
  font-family: var(--font-sans);
  letter-spacing: 2.2px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  white-space: nowrap;
  padding: 8px 0;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-dropdown-item {
  position: static;
}

.nav-caret {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.nav-dropdown-item:hover .nav-caret,
.nav-dropdown-item.menu-open .nav-caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.02);
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  max-width: calc(100vw - 32px);
}

.dropdown-menu::before {
  display: none;
}

.nav-dropdown-item:hover .dropdown-menu,
.nav-dropdown-item.menu-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Force close desktop mega menu dropdown when an item inside is clicked */
.nav-dropdown-item.menu-closed:hover .dropdown-menu,
.nav-dropdown-item.menu-closed .dropdown-menu,
.dropdown-menu.menu-closed {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(8px) !important;
}

.nav-dropdown-item.menu-closed:hover .nav-caret,
.nav-dropdown-item.menu-closed .nav-caret {
  transform: rotate(0deg) !important;
}

.nav-dropdown-item.nav-dropdown-relative {
  position: relative;
}

.clothing-dropdown-menu {
  width: 250px;
  min-width: 230px;
  padding: 16px 14px;
  border-radius: 16px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.clothing-dropdown-menu .mega-col-header {
  margin-bottom: 8px;
  padding-bottom: 8px;
  padding-left: 6px;
  border-bottom: 1px solid #f1f5f9;
}

.mega-menu-dropdown {
  width: 1040px;
  max-width: min(1040px, calc(100vw - 32px));
  padding: 0;
  overflow: hidden;
}

.mega-menu-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 20px 22px;
  gap: 16px;
}

.mega-menu-body.mega-menu-3col {
  display: grid;
  grid-template-columns: 1.15fr auto 1.05fr auto 1.15fr;
  padding: 20px 22px;
  gap: 14px;
}

.mega-menu-body.mega-menu-4col {
  display: grid;
  grid-template-columns: 1.1fr auto 1.05fr auto 1.15fr auto 1fr;
  padding: 20px 22px;
  gap: 12px;
}

@media (max-width: 1100px) {
  .mega-menu-body.mega-menu-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .mega-menu-body.mega-menu-4col .mega-divider {
    display: none;
  }
}

.mega-col {
  min-width: 0;
}

.mega-divider {
  width: 1px;
  background-color: #f1f5f9;
  height: 100%;
}

.mega-col-header {
  margin-bottom: 12px;
  padding-left: 6px;
}

.mega-col-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #94a3b8;
  display: block;
}

.mega-col-header h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2px;
}

.mega-link-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 0;
}

.mega-link-item:hover {
  background-color: #f8fafc;
  transform: translateX(4px);
}

.mega-link-item.highlight {
  background: linear-gradient(135deg, rgba(194, 105, 56, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
}

.mega-link-item.highlight:hover {
  background: linear-gradient(135deg, rgba(194, 105, 56, 0.14) 0%, rgba(245, 158, 11, 0.14) 100%);
}

.mega-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-link-item:hover .mega-icon-box {
  background: #ffffff;
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(194, 105, 56, 0.2);
}

.mega-text-box {
  flex: 1;
  min-width: 0;
}

.mega-item-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.25;
}

.mega-badge.live {
  font-size: 0.60rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #10b981;
  color: #ffffff;
  padding: 1px 6px;
  border-radius: 6px;
  flex-shrink: 0;
}

.mega-badge.new {
  font-size: 0.60rem;
  font-weight: 800;
  background: var(--secondary);
  color: #ffffff;
  padding: 1px 6px;
  border-radius: 6px;
  flex-shrink: 0;
}

.mega-badge.coming-soon,
.mega-badge.soon {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #f3f0eb;
  color: #7d7268;
  border: 1px solid #e5dfd6;
  padding: 1px 6px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.4px;
}

/* Subtle TikTok product indicator */
.mega-tt-icon,
.mobile-tt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #111827;
  opacity: 0.65;
  margin-left: 5px;
  vertical-align: middle;
  transition: all 0.2s ease;
}

.mega-badge i.ri-tiktok-fill,
.mobile-sub-link .mega-badge i.ri-tiktok-fill {
  font-size: 0.68rem;
  margin-right: 3px;
  vertical-align: 0;
  display: inline-block;
}

.mega-link-item:hover .mega-tt-icon,
.mobile-sub-link:hover .mobile-tt-icon {
  opacity: 1;
  color: #fe2c55;
  transform: scale(1.2);
}

.mega-item-sub {
  font-size: 0.73rem;
  color: #64748b;
  margin-top: 2px;
  white-space: normal;
  line-height: 1.35;
  word-break: normal;
}

.mega-menu-footer {
  background: #fafaf9;
  border-top: 1px solid #f1f5f9;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #475569;
}

.mega-footer-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.mega-footer-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mega-footer-cta:hover {
  text-decoration: underline;
}

/* Header Action Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.action-btn {
  color: var(--text-main);
  font-size: 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.action-btn:hover {
  background-color: var(--bg-sand);
  color: var(--secondary);
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--primary-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-cream);
}

.header-cta-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn,
.hamburger-btn {
  display: none;
  font-size: 1.4rem;
  color: var(--text-main);
  padding: 6px 10px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #faf8f5;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover,
.hamburger-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(194, 105, 56, 0.08);
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-menu-btn,
  .hamburger-btn {
    display: inline-flex !important;
  }
}

/* ==========================================================================
   Mobile Nav Drawer (Matches AussiePrint Screenshot style)
   ========================================================================== */
.mobile-drawer-overlay,
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.open,
.drawer-backdrop.open,
.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  overflow-y: auto;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open,
.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header,
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0ede6;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #2c2724;
  text-decoration: none;
  border-bottom: 1px solid #f4f0eb;
  transition: all 0.2s ease;
}

.mobile-nav-link i {
  font-size: 1.15rem;
  color: #8c827a;
  width: 22px;
  text-align: center;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: #faf7f2;
  color: var(--secondary);
  padding-left: 24px;
}

.mobile-nav-link:hover i {
  color: var(--secondary);
}

.mobile-nav-link.active {
  background-color: #fbf5ef;
  color: var(--secondary);
  font-weight: 700;
  border-left: 4px solid var(--secondary);
}

.mobile-nav-link.active i {
  color: var(--secondary);
}

/* Mobile Shop Accordion & Sub-links */
.mobile-shop-accordion {
  border-bottom: 1px solid #f4f0eb;
  transition: all 0.3s ease;
}

.mobile-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-accordion-btn:hover,
.mobile-shop-accordion.open .mobile-accordion-btn {
  background: #fbf5ef;
  color: var(--secondary);
}

.mobile-shop-caret {
  font-size: 1.2rem;
  color: #8c827a;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.mobile-shop-accordion.open .mobile-shop-caret {
  transform: rotate(180deg);
  color: var(--secondary);
}

.mobile-shop-sub-drawer {
  display: none;
  background: #f8f6f2;
  padding: 12px 14px 18px;
  border-top: 1px solid #eee8df;
  animation: slideDownFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-shop-accordion.open .mobile-shop-sub-drawer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Category Groups as Tidy Cards */
.mobile-cat-group {
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.mobile-cat-group.locked-group {
  background: #faf8f5;
  border: 1px dashed #dcd3c5;
}

.mobile-cat-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 2px 6px;
  border-bottom: 1px solid #f3ece3;
  margin-bottom: 6px;
}

.mobile-cat-title.locked {
  color: #b45309;
}

.mobile-cat-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #37302a;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.mobile-sub-link:hover, .mobile-sub-link:active {
  background: #fbf4eb;
  color: var(--secondary);
}

.mobile-sub-link i {
  font-size: 0.95rem;
  color: var(--secondary);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-sub-link i.star-icon {
  color: #d97706;
}

.mobile-sub-link span:first-of-type {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-sub-link .sub-price-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #8c827a;
  margin-left: auto;
  background: #f0ebe4;
  padding: 1px 6px;
  border-radius: 10px;
}

.mobile-sub-link.coming-soon-link {
  opacity: 0.8;
  cursor: default;
  color: #6b5e52;
}
.mobile-sub-link.coming-soon-link i {
  color: #b45309;
}
.mobile-sub-link.coming-soon-link:hover {
  background: transparent;
  color: #6b5e52;
}

.mobile-coming-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 4px 4px;
  padding-top: 8px;
  border-top: 1px dashed #dcd3c5;
}

.mobile-coming-divider span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #b45309;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mobile-coming-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #e7ded3, transparent);
}

.mega-link-item.coming-soon-item {
  cursor: default;
  opacity: 0.8;
}
.mega-link-item.coming-soon-item .mega-icon-box {
  color: #7d7268;
  background: #f5f1eb;
}
.mega-link-item.coming-soon-item .mega-item-title {
  color: #475569;
}
.mega-link-item.coming-soon-item:hover {
  background-color: transparent;
  transform: none;
}
.mega-link-item.coming-soon-item:hover .mega-icon-box {
  background: #f5f1eb;
  color: #7d7268;
  box-shadow: none;
}

.drawer-close-btn {
  border: 1px solid #222;
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

.drawer-close-btn:hover {
  background-color: #111;
  color: #fff;
}

.drawer-nav-list {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}

.drawer-item {
  border-bottom: 1px solid #f3f4f6;
}

.drawer-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
}

.drawer-row-item.sub-row {
  padding: 12px 22px 12px 36px;
  background-color: #fafaf9;
  border-bottom: 1px solid #f3f4f6;
}

.drawer-row-link {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
  text-decoration: none;
  transition: var(--transition);
}

.drawer-row-link:hover {
  color: var(--secondary);
}

.drawer-pill-toggle-btn {
  width: 36px;
  height: 24px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4b5563;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.drawer-pill-toggle-btn.sm {
  width: 30px;
  height: 20px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.drawer-pill-toggle-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.drawer-pill-toggle-btn.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
  transform: rotate(180deg);
}

.drawer-submenu {
  display: none;
  background-color: #ffffff;
  list-style: none;
}

.drawer-submenu.show {
  display: block;
}

.drawer-sub-submenu {
  display: none;
  background-color: #f9f8f6;
  list-style: none;
}

.drawer-sub-submenu.show {
  display: block;
}

.drawer-sublink {
  display: block;
  padding: 11px 22px 11px 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-bottom: 1px solid #f9fafb;
  transition: var(--transition);
}

.drawer-sublink:hover {
  color: var(--secondary);
  padding-left: 56px;
  background-color: #fdfbf7;
}

.drawer-sublink.highlight {
  font-weight: 700;
  color: var(--secondary);
  background-color: rgba(194, 105, 56, 0.05);
}

/* Direct Sub-Items (Matching AussiePrint Screenshot) */
.drawer-item-direct-sub {
  border-bottom: 1px solid #f8fafc;
}

.drawer-direct-link {
  display: block;
  padding: 13px 24px;
  font-size: 0.96rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: var(--transition);
}

.drawer-direct-link:hover {
  background-color: #f8fafc;
  color: var(--secondary);
  padding-left: 28px;
}

.drawer-item-direct-sub.highlight .drawer-direct-link {
  background-color: #f8fafc;
  font-weight: 600;
  color: var(--secondary);
}

.drawer-footer {
  padding: 18px 22px;
  background-color: #fafaf9;
  border-top: 1px solid #f3f4f6;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Header CTA & Highlight Styles
   ========================================================================== */
.header-cta-btn {
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(194, 105, 56, 0.25);
}

.nav-highlight {
  color: var(--secondary) !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   Category Story Highlights Bar (Instagram-Style Bubbles)
   ========================================================================== */
.story-highlights-section {
  padding: 20px 0 16px;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.story-bubbles-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 10px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.story-bubbles-wrapper::-webkit-scrollbar {
  display: none;
}

.story-bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.story-bubble-item:hover {
  transform: translateY(-3px);
}

.bubble-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #C8B08A 0%, #9A4F32 50%, #4A3428 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(41, 39, 37, 0.12);
  transition: all 0.25s ease;
}

.story-bubble-item:hover .bubble-ring {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(154, 79, 50, 0.35);
}

.bubble-ring.live {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.bubble-ring.studio {
  background: linear-gradient(135deg, #9A4F32 0%, #D9822B 100%);
}

.bubble-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ffffff;
}

.bubble-icon-box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #292725;
  color: #F2E8D5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 2px solid #ffffff;
}

.bubble-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-slide-bg.hero-slide-ladies { object-position: center 25%; }
.hero-slide-bg.hero-slide-mens { object-position: center 25%; }
.hero-slide-bg.hero-slide-outback { object-position: center center; }
.hero-slide-bg.hero-slide-custom { object-position: center 48%; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%); }
.hero-slide-content { position: absolute; bottom: 15%; left: 8%; z-index: 3; color: #fff; max-width: 650px; }
.hero-slide-kicker { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.hero-slide-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.08; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-slide-desc { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 1.15rem; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 500px; }
.btn-hero-cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 38px; background: #fff; color: #1a1a1a; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-hero-cta:hover { background: var(--primary, #c8553d); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 12px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s ease; }
.hero-dot.active { background: #fff; transform: scale(1.2); }

/* ==========================================================================
   Brand Essence Statement ("BUILT FROM THE COUNTRY.")
   ========================================================================== */
.brand-statement-section {
  padding: 65px 0;
  background-color: var(--bg-sand);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.brand-statement-inner {
  max-width: 820px;
  margin: 0 auto;
}

.brand-statement-section .brand-statement-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.brand-statement-img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; }
@media (max-width: 768px) {
  .brand-statement-section .brand-statement-inner { grid-template-columns: 1fr; gap: 30px; }
  .brand-statement-img { height: 350px; }
}

.statement-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 10px;
}

.statement-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.statement-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ==========================================================================
   High-Fashion 3:4 Product Cards with Quick-Add Size Strip
   ========================================================================== */
.shop-products-section {
  padding: 70px 0;
  background-color: var(--bg-cream);
}

.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.28s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}

.product-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f7efe4;
}

.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.35s ease;
}

.product-thumb-img.hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
}

.product-card:hover .product-thumb-img.main-img {
  transform: scale(1.05);
}

.product-card:hover .product-thumb-img.hover-img {
  opacity: 1;
  transform: scale(1.05);
}

/* Wishlist Heart Icon */
.wishlist-heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
}

.wishlist-heart-btn:hover {
  background: #ffffff;
  color: #e11d48;
  transform: scale(1.12);
}

.wishlist-heart-btn.active {
  color: #e11d48;
}

.wishlist-heart-btn.active i::before {
  content: "\ee0e"; /* filled heart */
}

/* Quick-Add Size Strip on Hover */
.card-quick-size-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  z-index: 5;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover .card-quick-size-strip {
  transform: translateY(0);
}

.quick-size-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #777;
  text-align: center;
}

.quick-size-btns {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.size-btn {
  background: #f1ede6;
  border: 1px solid #e2d7c5;
  color: #292725;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  transition: all 0.18s ease;
  min-width: 32px;
}

.size-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

/* Swatches */
.card-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.swatch-dot:hover, .swatch-dot.active {
  transform: scale(1.25);
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px var(--secondary);
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.compare-price {
  font-size: 0.84rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.price-unit {
  font-size: 0.78rem;
  color: #777;
}

/* ==========================================================================
   Interactive "Shop The Look" Lookbook Stage
   ========================================================================== */
.lookbook-section {
  background-color: var(--bg-sand);
  padding: 80px 0;
}

.lookbook-stage {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.lookbook-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.lookbook-pin {
  position: absolute;
  z-index: 20;
}

.pin-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  animation: pulsePin 2s infinite;
  transition: transform 0.2s ease;
}

.pin-btn:hover {
  transform: scale(1.2);
  background: var(--secondary);
  color: #ffffff;
}

@keyframes pulsePin {
  0% { box-shadow: 0 0 0 0 rgba(154, 79, 50, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(154, 79, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(154, 79, 50, 0); }
}

.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.lookbook-pin:hover .pin-tooltip,
.lookbook-pin.active .pin-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.pin-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  background: #f5f0eb;
}

.pin-info {
  flex: 1;
}

.pin-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.pin-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 2px 0 6px;
}

.btn-pin-add {
  background: #111111;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-pin-add:hover {
  background: var(--secondary);
}

/* ==========================================================================
   Verified Australian Customer Reviews Grid
   ========================================================================== */
.reviews-section {
  padding: 70px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
}

.reviews-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-quote-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.review-stars {
  color: var(--gold-star);
  font-size: 1.05rem;
}

.review-quote-text {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.65;
}

.review-author-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #f1f1f1;
  padding-top: 14px;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
}

.author-location {
  font-size: 0.76rem;
  color: #777;
}

/* ==========================================================================
   Instagram UGC Gallery (#DustandridgeStyle)
   ========================================================================== */
.ugc-gallery-section {
  padding: 60px 0 0;
  background-color: #ffffff;
}

.ugc-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}

.ugc-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.ugc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ugc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.65);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.85rem;
  font-weight: 700;
}

.ugc-item:hover .ugc-img {
  transform: scale(1.08);
}

.ugc-item:hover .ugc-overlay {
  opacity: 1;
}

/* ==========================================================================
   Slide-Out Cart with Free Shipping Progress Bar

/* ==========================================================================
   Wishlist Drawer
   ========================================================================== */
.wishlist-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.wishlist-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: #ffffff;
  z-index: 2001;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.wishlist-drawer.open {
  transform: translateX(0);
}

.wishlist-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wishlist-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wishlist-drawer-close {
  font-size: 1.2rem;
  cursor: pointer;
  color: #666;
}

.wishlist-drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.wishlist-empty-state {
  text-align: center;
  padding: 40px 0;
  color: #999;
}

.wishlist-empty-state i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.gender-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.editorial-gender-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.editorial-gender-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}

.editorial-img-container {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  background-color: #f7efe4;
  overflow: hidden;
}

.editorial-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-gender-card:hover .editorial-card-img {
  transform: scale(1.05);
}

.editorial-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0) 0%, rgba(20, 18, 16, 0.72) 40%, rgba(20, 18, 16, 0.94) 100%);
  color: #ffffff;
}

.editorial-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 6px;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #F2E8D5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.15;
}

.editorial-subtitle {
  font-size: 0.92rem;
  color: #E2D7C5;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 440px;
}

.btn-editorial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-editorial:hover {
  background: var(--secondary);
  color: #ffffff;
  gap: 12px;
}

.lifestyle-band-section { position: relative; width: 100%; height: 360px; overflow: hidden; }
.lifestyle-band-section img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lifestyle-band-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.38); display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center; }
.lifestyle-band-text { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 4.5vw, 3.2rem); letter-spacing: clamp(3px, 0.8vw, 7px); color: #fff; text-transform: uppercase; text-align: center; max-width: 92%; line-height: 1.15; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

.about-banner-section { position: relative; width: 100%; height: 450px; overflow: hidden; margin: 60px 0; }
.about-banner-section img { width: 100%; height: 100%; object-fit: cover; }
.about-banner-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.about-banner-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.about-banner-text { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 600px; line-height: 1.6; }

/* ==========================================================================
   Interactive Product Filter Tabs
   ========================================================================== */
.product-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tab-btn {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.filter-tab-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.filter-tab-btn.active {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  box-shadow: 0 4px 14px rgba(154, 79, 50, 0.25);
}

.product-card.hidden {
  display: none !important;
}

@keyframes cardLuxuryGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 105, 56, 0.75), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
  }
  30% {
    box-shadow: 0 0 0 3.5px rgba(194, 105, 56, 0.95), 0 0 24px rgba(194, 105, 56, 0.45), 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
  }
  65% {
    box-shadow: 0 0 0 2.5px rgba(194, 105, 56, 0.7), 0 0 14px rgba(194, 105, 56, 0.25), 0 8px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(194, 105, 56, 0), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
  }
}

.product-card.product-highlight {
  position: relative;
  z-index: 5;
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 3px rgba(194, 105, 56, 0.4), 0 12px 30px rgba(194, 105, 56, 0.25) !important;
  animation: cardLuxuryGlow 1.4s ease-in-out 2.5;
  scroll-margin-top: 120px;
}

.product-card.product-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #c26938, #f59e0b, #c26938);
  z-index: 20;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* ==========================================================================
   Wide Lifestyle Editorial Banner
   ========================================================================== */
.lifestyle-editorial-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1470246973918-29a93221c455?auto=format&fit=crop&w=2000&q=85');
  background-size: cover;
  background-position: center 40%;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.55) 0%, rgba(41, 39, 37, 0.82) 100%);
  z-index: 1;
}

.lifestyle-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lifestyle-banner-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C8B08A;
}

.lifestyle-banner-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: #F2E8D5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lifestyle-banner-sub {
  font-size: 1.05rem;
  color: #E2D7C5;
  line-height: 1.7;
  max-width: 620px;
}

.lifestyle-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}


/* Price & Stock Row */
.product-price-row,
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}

.card-stock-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2px 7px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

@media (max-width: 576px) {
  .card-stock-pill {
    font-size: 0.64rem;
    padding: 1px 5px;
    gap: 2px;
  }
}

/* ==========================================================================
   Value Pillars Bar
   ========================================================================== */
.value-pillars-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
}

.value-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f7efe4;
  color: var(--secondary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-pillar-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.value-pillar-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Bento Category Showcase Grid
   ========================================================================== */
/* ==========================================================================
   Featured Apparel Slider Section (Screenshot 5)
   ========================================================================== */
.featured-slider-section {
  padding: 40px 0 20px;
  background: var(--bg-cream);
}

.slider-container-box {
  max-width: 680px;
  margin: 0 auto;
}

.fashion-slide-wrapper {
  position: relative;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.fashion-slide-item {
  position: relative;
  width: 100%;
}

.fashion-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.fashion-slide-bar-label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 14px 20px;
  text-align: center;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.slider-controls-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}

.slider-arrow-btn:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* Dot indicators */
.slider-dots-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--secondary);
  width: 22px;
  border-radius: 4px;
}

.slider-dot:hover {
  background: #9ca3af;
}


/* ==========================================================================
   Brand Intro Section ("BUILT FROM THE COUNTRY.")
   ========================================================================== */
.brand-intro-section {
  padding: 60px 0 20px;
  background: var(--bg-cream);
  text-align: center;
}

.brand-intro-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.brand-intro-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
}

.brand-intro-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.brand-intro-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   4-Pillar Category Showcase ("SHOP DUSTANDRIDGE")
   ========================================================================== */
.shop-categories-section {
  background: var(--bg-cream);
}

.four-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-cat-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pillar-cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.pillar-cat-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2e8d5;
}

.pillar-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pillar-cat-card:hover .pillar-cat-img {
  transform: scale(1.05);
}

.pillar-cat-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-cat-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.pillar-cat-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.pillar-cat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.pillar-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-dark);
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.pillar-cat-btn:hover {
  color: var(--secondary);
  gap: 10px;
}

/* ==========================================================================
   Custom Spotlight Section ("YOUR DESIGN. YOUR NAME. YOUR PIECE.")
   ========================================================================== */
.custom-spotlight-section {
  padding: 70px 0;
  background: #292725;
  color: #ffffff;
  border-top: 1px solid #4a3428;
  border-bottom: 1px solid #4a3428;
}

.custom-spotlight-card { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.custom-spotlight-img { width: 100%; height: 450px; object-fit: cover; border-radius: 4px; }
@media (max-width: 768px) {
  .custom-spotlight-card { grid-template-columns: 1fr; }
  .custom-spotlight-img { height: 300px; }
}

.custom-spotlight-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8b08a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.custom-spotlight-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 600;
  color: #f2e8d5;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.custom-spotlight-desc {
  font-size: 1.05rem;
  color: #c8b08a;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 24px;
}

.custom-spotlight-email-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 176, 138, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.94rem;
  color: #f2e8d5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.custom-spotlight-email-box a {
  color: #f2e8d5;
  text-decoration: underline;
  font-weight: 600;
}

.custom-spotlight-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--secondary, #9A4F32);
  color: #ffffff !important;
  border: 1.5px solid var(--secondary, #9A4F32);
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(154, 79, 50, 0.25);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--secondary-hover, #7e3e26);
  border-color: var(--secondary-hover, #7e3e26);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154, 79, 50, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #f2e8d5;
  border: 1.5px solid #c8b08a;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: #c8b08a;
  color: #292725;
}

/* ==========================================================================
   Why Dustandridge Section
   ========================================================================== */
.why-brand-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   Style Journal Editorial Feed (Screenshots 2 & 3)
   ========================================================================== */
.style-journal-section {
  padding: 60px 0 80px;
  background: var(--bg-cream);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.style-journal-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.journal-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.3rem;
  font-weight: 500;
  color: #111315;
  margin-bottom: 12px;
}

.journal-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
}

.style-journal-feed {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.journal-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  background: #ffffff;
}

.journal-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.journal-card:hover .journal-img {
  transform: scale(1.02);
}

.journal-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journal-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #374151;
}

.journal-card-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.35;
  color: #111827;
}

.journal-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.journal-card-title a:hover {
  color: var(--secondary);
}

.journal-excerpt {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.65;
}

/* Discover Brand Banner (Matching Screenshot 2) */
.discover-brand-section {
  padding: 50px 0 60px;
  background: #fbf9f4;
  border-top: 1px solid #f0ece3;
  text-align: center;
}

.discover-brand-inner {
  max-width: 680px;
  margin: 0 auto;
}

.discover-brand-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: #111315;
  margin-bottom: 12px;
}

.discover-brand-text {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ==========================================================================
   Customer Reviews Grid
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.96rem;
  color: #333;
  line-height: 1.6;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #10b981;
}

.reviewer-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

.hero-prev {

  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 10px;
}

/* ==========================================================================
   150 Years Wooden Banner Section
   ========================================================================== */
.promo-banner-section {
  padding: 24px 0 0;
}

.wood-banner-container {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.wood-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   Ticker Marquee Bar
   ========================================================================== */
.marquee-bar {
  background-color: var(--bg-sand);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 40px;
  animation: scrollMarquee 26s linear infinite;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #3b3732;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  font-style: normal;
}

.marquee-item span.star {
  font-size: 1.2rem;
  color: var(--secondary);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 46px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-padding {
  padding: 70px 0;
}

/* ==========================================================================
   Products Grid (Shop Specials & Hoodies)
   ========================================================================== */
.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #d6ccbc;
}

.product-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background-color: #f7f5f0;
  overflow: hidden;
}

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

.product-card:hover .product-thumb-img {
  transform: scale(1.06);
}

.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.badge-tag.sale {
  background: var(--secondary);
}

.product-card {
  cursor: pointer;
}

.product-thumb-wrap {
  cursor: pointer;
}

.product-details {
  cursor: pointer;
}

.catalog-card {
  cursor: pointer;
}

.quick-view-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
  opacity: 0.9;
  transform: scale(1);
  transition: all 0.25s ease;
  z-index: 8;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: scale(1.08);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.card-action-bar {
  display: flex;
  width: 100%;
  margin-top: 10px;
  gap: 6px;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.btn-card-action,
.card-quick-add {
  width: 100%;
  padding: 9px 12px;
  background: #1c1917;
  color: #ffffff;
  border: 1px solid #1c1917;
  border-radius: 8px;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-card-action:hover,
.card-quick-add:hover {
  background: var(--secondary, #c26938);
  border-color: var(--secondary, #c26938);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(194, 105, 56, 0.25);
}

.btn-card-action:active,
.card-quick-add:active {
  background: var(--secondary, #c26938);
  transform: scale(0.97);
}

.product-details {
  padding: 18px 16px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 6px;
  line-height: 1.35;
  letter-spacing: -0.15px;
}

.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-name a:hover,
.product-name:hover {
  color: var(--secondary);
}

.product-rating {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: var(--gold-star);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2b2b2b;
}

.product-price .old-price {
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

/* ==========================================================================
   Category Showcase Grid (Apparel & Custom T-Shirts)
   ========================================================================== */
.category-showcase-section {
  background-color: var(--bg-cream);
}

.category-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  background-color: #e9e4dc;
  box-shadow: var(--shadow-sm);
  group: true;
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-card:hover .category-card-img {
  transform: scale(1.05);
}

.category-card-banner {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background-color: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 14px 20px;
  text-align: center;
  transition: var(--transition);
}

.category-card:hover .category-card-banner {
  background-color: #111111;
  padding: 16px 20px;
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   Style Journal / Blog Section
   ========================================================================== */
.journal-section {
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.journal-image-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #e4dec8;
}

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

.journal-card:hover .journal-img {
  transform: scale(1.06);
}

.journal-meta-date {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.journal-title {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  transition: var(--transition);
}

.journal-card:hover .journal-title {
  color: var(--secondary);
}

.journal-excerpt {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.journal-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.journal-read-more:hover {
  color: var(--secondary);
  gap: 10px;
}

/* ==========================================================================
   Brand Story & Value Proposition Section ("Discover Dust & Ridge")
   ========================================================================== */
.brand-discover-section {
  background-color: var(--bg-sand);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.feature-box {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.feature-icon-circle {
  width: 60px;
  height: 60px;
  background-color: #f7f1e7;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* (Newsletter styles moved to new .newsletter-section block below) */

/* ==========================================================================
   Footer (Luxury Australian Country Style)
   ========================================================================== */
.site-footer {
  background-color: #141210;
  color: #b5aea5;
  padding: 60px 0 28px;
  font-size: 0.88rem;
  border-top: 2px solid var(--secondary);
}

.site-footer .container {
  max-width: 1440px;
  padding: 0 28px;
}

.footer-grid,
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h4,
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after,
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.footer-col.brand-col .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-col.brand-col .brand-logo-img {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-col.brand-col .brand-name {
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
}

.footer-col.brand-col .brand-sub {
  color: var(--secondary);
  font-size: 0.6rem;
  letter-spacing: 2px;
}

.footer-brand-desc {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #a39c93;
  margin: 0;
}

.footer-links,
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links li,
.footer-links-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links-list a {
  color: #b5aea5;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
}

.footer-links a:hover,
.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f4ede4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(194, 105, 56, 0.35);
}

.footer-badge-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: #d1c8bd;
}

.footer-badge-box div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-badge-box i {
  color: var(--secondary);
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: #8c857c;
}

.footer-bottom p {
  margin: 0;
}

.footer-payment-badges,
.payment-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  color: #b5aea5;
}

.footer-payment-badges i,
.payment-badges i {
  transition: color 0.2s;
}

.footer-payment-badges i:hover,
.payment-badges i:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .footer-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ==========================================================================
   Scroll To Top Floating Button
   ========================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Interactive Modals & Drawers (Cart, Search, Quick View)
   ========================================================================== */
.modal-overlay,
.cart-drawer-overlay,
.wishlist-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open,
.cart-drawer-overlay.open,
.wishlist-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Cart Drawer (Right Side) */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: #ffffff;
  z-index: 10002;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.cart-items-body,
.cart-drawer-body,
#cartItemsContainer {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.cart-empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
}

.cart-empty-state i {
  font-size: 3rem;
  color: var(--border-color);
  margin-bottom: 14px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f0ece5;
  align-items: center;
}

.cart-item-img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f7f4ed;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 600;
}

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  background: #f7f4ed;
  border: 1px solid #dfd8cc;
  border-radius: 6px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: #f7f4ed;
  color: #292725;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.cart-qty-btn:hover {
  background: #e6dfd3;
  color: #000;
}

.cart-qty-btn:active {
  transform: scale(0.92);
}

.cart-qty-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  min-width: 26px;
  text-align: center;
  padding: 0 4px;
  background: #ffffff;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #dfd8cc;
  border-right: 1px solid #dfd8cc;
}

.cart-item-remove {
  color: #999;
  font-size: 1.1rem;
  padding: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.cart-item-remove:hover {
  color: #e53935;
  background: #fee2e2;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: #faf8f5;
}

@media (max-width: 576px) {
  .cart-drawer {
    width: 92vw;
    max-width: 380px;
  }
  .cart-drawer-header {
    padding: 16px 18px;
  }
  .cart-items-body,
  .cart-drawer-body,
  #cartItemsContainer {
    padding: 16px 18px !important;
  }
  .cart-drawer-footer {
    padding: 16px 18px;
  }
}

.cart-tiktok-box {
  display: none;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-align: center;
  display: block;
}

.btn-checkout:hover {
  background: var(--secondary);
}

/* Quick View Modal Box & Card */
.quick-view-box,
.modal-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  border: 1px solid var(--border-color);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-img-wrap {
  background: #f7f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 380px;
}

.quick-view-img,
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f7f5f0;
}

.quick-view-info,
.modal-info-wrap {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  margin: 6px 0 10px;
  line-height: 1.25;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.6;
  margin-bottom: 18px;
}

.modal-size-selector,
.modal-size-row,
.modal-size-buttons {
  display: none !important;
}

.modal-size-btn {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-size-btn:hover,
.modal-size-btn.active {
  background: #2b1f17;
  color: #fff;
  border-color: #2b1f17;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 768px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
  }
  .modal-img-wrap {
    min-height: 240px;
    max-height: 280px;
  }
  .modal-info-wrap {
    padding: 20px 18px;
  }
  .modal-title {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   Luxury Australian Country Search Modal
   ========================================================================== */
.search-modal-overlay {
  align-items: flex-start !important;
  padding-top: 50px !important;
  backdrop-filter: blur(8px) !important;
  background: rgba(17, 19, 21, 0.75) !important;
}

.search-modal-container {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  overflow: hidden;
  animation: searchModalSlideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes searchModalSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0ede6;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #faf8f5;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 16px;
  transition: all 0.25s ease;
}

.search-input-wrap:focus-within {
  border-color: var(--secondary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(154, 79, 50, 0.12);
}

.search-input-icon {
  font-size: 1.25rem;
  color: var(--secondary);
}

.search-field-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: #1f2937;
  outline: none;
}

.search-field-input::placeholder {
  color: #9ca3af;
}

.search-clear-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  color: #9ca3af;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
}

.search-clear-btn:hover {
  color: #111;
  background: #eee;
}

.search-modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #faf8f5;
  color: #1f2937;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-modal-close:hover {
  background: #111315;
  color: #ffffff;
}

.search-quick-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 12px 20px;
  background: #faf9f6;
  border-bottom: 1px solid #f0ede6;
}

.search-tag-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.search-tag-pill {
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #e5e0d8;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-tag-pill:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

.search-results-area {
  max-height: 420px;
  overflow-y: auto;
  padding: 12px 16px;
}

.search-initial-hint {
  text-align: center;
  padding: 36px 20px;
  color: #9ca3af;
}

.search-initial-hint i {
  font-size: 2.2rem;
  color: var(--secondary);
  opacity: 0.6;
  margin-bottom: 8px;
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f6f4f0;
  cursor: pointer;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #fdfaf6;
}

.search-result-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e8e3dc;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-sub {
  font-size: 0.76rem;
  color: #8a8077;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.search-result-price {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--secondary);
  flex-shrink: 0;
}

.search-no-results {
  text-align: center;
  padding: 36px 20px;
  color: #6b7280;
}

.search-no-results i {
  font-size: 2.2rem;
  color: #d1d5db;
  margin-bottom: 8px;
  display: block;
}

@media (max-width: 600px) {
  .search-modal-overlay {
    padding: 10px !important;
    padding-top: 20px !important;
  }
  .search-modal-container {
    border-radius: 10px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
  }
  .search-modal-header {
    padding: 12px 14px;
    gap: 8px;
  }
  .search-input-wrap {
    padding: 8px 12px;
    gap: 8px;
  }
  .search-field-input {
    font-size: 0.9rem;
  }
  .search-modal-close {
    width: 34px;
    height: 34px;
  }
  .search-results-area {
    max-height: 55vh;
  }
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e1e1e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-msg i {
  color: #4ade80;
  font-size: 1.1rem;
}

/* ==========================================================================
   Newsletter Subscription Section
   ========================================================================== */
.newsletter-section {
  padding: 65px 0;
  background: var(--bg-sand);
  border-top: 1px solid var(--border-color);
}

.newsletter-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-content {
  margin-bottom: 26px;
}

.newsletter-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.newsletter-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #111315;
  margin-bottom: 12px;
  line-height: 1.25;
}

.newsletter-sub {
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.newsletter-form {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.newsletter-input-group {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 40px;
  padding: 4px 6px 4px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(194, 105, 56, 0.15);
}

.newsletter-input-icon {
  color: #9ca3af;
  font-size: 1.2rem;
  margin-right: 8px;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 6px;
  font-size: 0.96rem;
  color: #111827;
  outline: none;
}

.newsletter-btn {
  background: var(--secondary);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: #a55224;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(194, 105, 56, 0.35);
}

.newsletter-privacy-text {
  font-size: 0.78rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.newsletter-success-msg {
  display: none;
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 10px 18px;
  border-radius: 20px;
}

.newsletter-success-msg.show {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .newsletter-input-group {
    flex-direction: column;
    border-radius: var(--radius-sm);
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 8px;
  }
  .newsletter-input-group .newsletter-input-icon {
    display: none;
  }
  .newsletter-input {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 14px;
  }
}

/* ==========================================================================
   How It Works 3-Step Interactive Process Section
   ========================================================================== */
.how-it-works-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.process-step-card {
  position: relative;
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 28px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.step-num-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(194, 105, 56, 0.25);
  line-height: 1;
}

.step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.step-perk-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 5px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.how-it-works-cta {
  text-align: center;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-color);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(194, 105, 56, 0.08);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item.active .faq-question-btn {
  color: var(--secondary);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer-content {
  max-height: 250px;
  padding: 0 22px 20px;
}

.faq-answer-content p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Mobile Fixed Bottom Navigation Dock (App Experience)
   ========================================================================== */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-color);
  padding: 6px 12px calc(6px + env(safe-area-inset-bottom, 0px));
  z-index: 950;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  justify-content: space-around;
  align-items: center;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.dock-item i {
  font-size: 1.35rem;
}

.dock-item.active,
.dock-item:hover {
  color: var(--secondary);
}

.dock-studio-btn {
  transform: translateY(-8px);
}

.dock-studio-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c26938 0%, #111315 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(194, 105, 56, 0.4);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.dock-studio-circle i {
  color: #ffffff;
}

.dock-studio-btn:hover .dock-studio-circle {
  transform: scale(1.08);
}

.dock-icon-wrap {
  position: relative;
  display: inline-flex;
}

.dock-cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

@media (max-width: 768px) {
  .mobile-bottom-dock {
    display: flex;
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); /* offset for fixed dock */
  }
}

/* ==========================================================================
   Clean & Minimal Studio Footer
   ========================================================================== */
.clean-footer {
  background: #111315;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 0;
  font-family: var(--font-sans);
}

.footer-clean-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.footer-clean-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-clean-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-clean-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.footer-clean-logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-clean-brand p {
  font-size: 0.82rem;
  color: #6b7280;
}

.footer-clean-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-clean-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #9ca3af;
  transition: var(--transition);
}

.footer-clean-nav a:hover {
  color: #ffffff;
}

.footer-studio-link {
  color: var(--secondary) !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-clean-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-clean-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-clean-social a:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.footer-clean-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #6b7280;
  background: #0b0d0e;
}

/* ==========================================================================
   Comprehensive Mobile-First Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: flex; }
  .hero-grid-wrap { grid-template-columns: 1fr; gap: 36px; }
  .four-pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .value-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 4px 0; }
  .header-inner {
    height: 60px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }
  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
    text-decoration: none;
    overflow: hidden;
  }
  .brand-logo-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .brand-text-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
  }
  .brand-name {
    font-size: clamp(0.92rem, 3.8vw, 1.15rem);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
  }
  .brand-sub { display: none; }
  .header-cta-btn { display: none; }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }
  .action-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .hamburger-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .top-bar {
    padding: 6px 8px;
  }
  .top-bar-slider-container {
    gap: 4px;
    padding: 0 2px;
  }
  .top-bar-slider {
    height: 22px;
  }
  .top-bar-slide span {
    font-size: clamp(0.60rem, 2.7vw, 0.72rem);
    letter-spacing: 0.3px;
    gap: 6px;
  }
  .top-bar-slide i {
    font-size: 0.85rem;
  }
  .top-bar-arrow-btn {
    font-size: 0.95rem;
    padding: 0 2px;
  }

  .hero-showcase-section { padding: 32px 0 44px; }
  .hero-left-content { text-align: center; align-items: center; gap: 14px; }
  .hero-badge-pill { margin: 0 auto; font-size: 0.7rem; padding: 4px 10px; }
  .hero-main-title { font-size: 2.1rem; line-height: 1.15; }
  .hero-lead-text { font-size: 0.95rem; line-height: 1.55; }
  .hero-actions-row { width: 100%; flex-direction: column; gap: 10px; }
  .btn-hero-primary { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.98rem; }
  .btn-hero-secondary { width: 100%; justify-content: center; padding: 12px 20px; }
  .hero-trust-row { justify-content: center; gap: 12px; padding-top: 14px; }
  .trust-pill { font-size: 0.78rem; }

  .hero-right-card { width: 100%; }
  .hero-model-preview-box { padding: 12px; max-width: 100%; }
  .hero-model-img-wrap { max-height: 380px; }
  .hero-floating-print-badge { transform: translate(-50%, -50%) scale(0.85); }
  .hero-color-switcher { flex-direction: column; gap: 10px; align-items: stretch; text-align: center; }
  .hero-swatch-list { justify-content: center; }
  .hero-swatch-btn { width: 30px; height: 30px; }
  .hero-open-studio-link { justify-content: center; font-size: 0.85rem; }

  .value-pillars-bar { padding: 24px 0; }
  .value-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar-icon-box { width: 38px; height: 38px; font-size: 1.1rem; }

  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; gap: 14px; }
  .bento-large { grid-column: span 1; grid-row: span 1; }
  .bento-large .bento-title { font-size: 1.5rem; }
  .bento-content { padding: 16px; }

  .product-grid-4 { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
  }
  .product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0ede6;
  }
  .product-thumb-wrap { 
    aspect-ratio: 1; 
    position: relative;
    overflow: hidden;
  }
  .product-details { 
    padding: 10px 8px 12px; 
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
  }
  .product-name { 
    font-size: 0.84rem; 
    line-height: 1.3; 
    margin-bottom: 4px; 
    font-weight: 700;
  }
  .product-price { 
    font-size: 0.95rem; 
    font-weight: 800;
    color: var(--secondary, #c26938);
  }
  
  /* Mobile visible action button on cards (Positioned below price in card body) */
  .card-action-bar,
  .catalog-card .card-action-bar {
    display: flex !important;
    position: static !important;
    width: 100% !important;
    margin-top: 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    z-index: auto !important;
    gap: 6px !important;
  }

  .btn-card-action,
  .card-quick-add {
    width: 100% !important;
    padding: 8px 6px !important;
    background: #1c1917 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer !important;
    transition: background 0.15s ease, transform 0.15s ease !important;
  }

  .btn-card-action:active,
  .card-quick-add:active {
    background: var(--secondary, #c26938) !important;
    transform: scale(0.96) !important;
  }

  .quick-view-btn,
  .card-quick-view-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
    top: 8px !important;
    right: 8px !important;
    background: #ffffff !important;
    color: #1c1917 !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 11 !important;
    border: none !important;
  }

  .wood-banner-container { border-radius: var(--radius-sm); }
  .reviews-grid { gap: 14px; }
  .review-card { padding: 18px; }
  .review-text { font-size: 0.88rem; }

  .hero-slider-section { height: 75vh; min-height: 480px; }
  .hero-slide-bg.hero-slide-ladies { object-position: 78% 22%; }
  .hero-slide-bg.hero-slide-mens { object-position: 50% 18%; }
  .hero-slide-bg.hero-slide-outback { object-position: 50% 25%; }
  .hero-slide-bg.hero-slide-custom { object-position: 50% 50%; }
  .hero-slide-content { left: 5%; right: 5%; bottom: 8%; max-width: 90%; }
  .hero-slide-title { font-size: 2.1rem; }
  .hero-slide-desc { font-size: 0.92rem; line-height: 1.45; margin-bottom: 18px; }
  .hero-slide-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.78) 100%); }

  .lifestyle-band-section { height: 230px; }
  .lifestyle-band-overlay { padding: 16px 20px; }
  .lifestyle-band-text { font-size: clamp(1.4rem, 5.5vw, 1.95rem); letter-spacing: 3px; max-width: 95%; }

  .reviews-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .ugc-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .lookbook-stage { border-radius: 4px; }
  .pin-btn { width: 28px; height: 28px; font-size: 1rem; }
  .pin-tooltip { width: 190px; padding: 10px; }

  .gender-split-grid { grid-template-columns: 1fr; gap: 18px; }
  .editorial-img-container { min-height: 380px; }
  .editorial-title { font-size: 1.7rem; }
  .statement-heading { font-size: 1.8rem; }
  .statement-text { font-size: 0.95rem; }

  .product-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px 12px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 24px;
  }
  .product-filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.82rem;
    border-radius: 20px;
  }

  .footer-clean-inner { flex-direction: column; text-align: center; justify-content: center; gap: 20px; }
  .footer-clean-brand { align-items: center; text-align: center; }
  .footer-clean-nav { justify-content: center; gap: 14px; font-size: 0.82rem; }
  .footer-clean-social { justify-content: center; }
}

@media (max-width: 480px) {
  .top-bar { padding: 5px 4px; }
  .top-bar-slider { height: 22px; }
  .top-bar-slide span { font-size: clamp(0.56rem, 2.5vw, 0.66rem); letter-spacing: 0.2px; gap: 4px; }
  .top-bar-slide i { font-size: 0.78rem; }
  .top-bar-arrow-btn { font-size: 0.85rem; padding: 0 1px; }

  .header-inner { padding: 0 10px; height: 54px; gap: 6px; }
  .logo-wrapper { gap: 6px; }
  .brand-logo-img { width: 32px; height: 32px; }
  .brand-name { font-size: 0.95rem; letter-spacing: 0.3px; }
  .header-actions { gap: 2px; }
  .action-btn { width: 32px; height: 32px; font-size: 1.05rem; }
  .action-btn#wishlistBtn { display: none; }
  .hamburger-btn { width: 32px; height: 32px; font-size: 1.15rem; }
  .cart-count, .wishlist-count { width: 16px; height: 16px; font-size: 0.6rem; top: 1px; right: 1px; }

  .hero-slider-section { height: 80vh; min-height: 520px; }
  .hero-slide-bg.hero-slide-ladies { object-position: 82% 20%; }
  .hero-slide-bg.hero-slide-mens { object-position: 50% 16%; }
  .hero-slide-bg.hero-slide-outback { object-position: 50% 20%; }
  .hero-slide-bg.hero-slide-custom { object-position: 52% 52%; }
  .hero-slide-title { font-size: 1.85rem; line-height: 1.1; margin-bottom: 10px; }
  .hero-slide-kicker { font-size: 0.7rem; letter-spacing: 1.5px; margin-bottom: 6px; }
  .hero-slide-desc { font-size: 0.84rem; line-height: 1.4; margin-bottom: 14px; }
  .btn-hero-cta { padding: 12px 22px; font-size: 0.78rem; letter-spacing: 1.5px; }

  .hero-main-title { font-size: 1.85rem; }
  .section-title { font-size: 1.55rem; }
  .section-subtitle { font-size: 0.88rem; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-name { font-size: 0.8rem; line-height: 1.3; }
  .product-price { font-size: 0.88rem; }
  .lifestyle-band-section { height: 180px; }
  .lifestyle-band-overlay { padding: 10px 14px; }
  .lifestyle-band-text { font-size: 1.35rem; letter-spacing: 2px; line-height: 1.2; max-width: 95%; }
}

/* ==========================================================================
   Mobile Responsive — Marquee, Slider, Category, Journal, Newsletter, Discover
   ========================================================================== */

/* --- Marquee: shrink font for mobile --- */
@media (max-width: 768px) {
  .marquee-bar { padding: 11px 0; }
  .marquee-item { font-size: 1.1rem; gap: 22px; }
  .marquee-item span.star { font-size: 0.9rem; }
  .marquee-content { gap: 22px; }
}
@media (max-width: 480px) {
  .marquee-item { font-size: 0.9rem; gap: 16px; }
  .marquee-content { gap: 16px; }
}

/* --- Featured Apparel Slider --- */
@media (max-width: 768px) {
  .featured-slider-section { padding: 0; }
  .fashion-slide-img { max-height: 58vw; object-fit: cover; width: 100%; border-radius: 0; }
  .fashion-slide-bar-label { padding: 12px 14px; }
  .fashion-slide-bar-label span { font-size: 0.95rem; letter-spacing: 0.5px; }
  .slider-arrow-btn { width: 34px; height: 34px; font-size: 1.2rem; }
  .slider-controls-wrap { bottom: 54px; right: 12px; gap: 8px; }
}
@media (max-width: 480px) {
  .fashion-slide-img { max-height: 68vw; }
  .fashion-slide-bar-label span { font-size: 0.82rem; }
}

/* --- Category Showcase Grid (Hoodies/T-Shirts 2x2 grid) --- */
@media (max-width: 768px) {
  .category-grid-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { aspect-ratio: 1 / 1.25; }
  .category-card-banner { bottom: 10px; left: 10px; right: 10px; padding: 10px 12px; }
  .category-card-title { font-size: 1rem; letter-spacing: 0.2px; }
}
@media (max-width: 480px) {
  .category-grid-container { grid-template-columns: 1fr 1fr; gap: 8px; }
  .category-card-title { font-size: 0.82rem; }
  .category-card-banner { padding: 8px 10px; bottom: 8px; left: 8px; right: 8px; }
}

/* --- Style Journal Grid (3-col → 1-col on mobile) --- */
@media (max-width: 900px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .journal-grid { grid-template-columns: 1fr; gap: 24px; }
  .journal-section { padding: 44px 0; }
  .journal-title { font-size: 1.15rem; }
  .journal-excerpt { font-size: 0.88rem; }
}

/* --- Discover Dust & Ridge features (4-col → 2-col → 1-col) --- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
  .brand-discover-section { padding: 44px 0; }
}

/* --- Newsletter section --- */
@media (max-width: 768px) {
  .newsletter-section { padding: 44px 0; }
  .newsletter-title { font-size: 1.7rem; }
  .newsletter-sub { font-size: 0.94rem; }
  .newsletter-form { max-width: 100%; }
}
@media (max-width: 480px) {
  .newsletter-title { font-size: 1.42rem; }
  .newsletter-sub { font-size: 0.88rem; }
  .newsletter-input-group {
    flex-direction: column;
    border-radius: var(--radius-sm);
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 8px;
  }
  .newsletter-input-group .newsletter-input-icon { display: none; }
  .newsletter-input {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: var(--radius-sm);
    padding: 13px 16px;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 13px;
  }
}

/* --- How It Works 3-Step Process --- */
@media (max-width: 860px) {
  .how-it-works-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-step-card { padding: 28px 20px 22px; }
  .step-num-badge { font-size: 1.6rem; }
}

/* --- FAQ Section --- */
@media (max-width: 600px) {
  .faq-question-btn { padding: 15px 16px; font-size: 0.94rem; }
  .faq-answer-content { padding: 0 16px; }
  .faq-item.active .faq-answer-content { padding: 0 16px 16px; }
  .faq-answer-content p { font-size: 0.88rem; }
}

/* --- Footer responsive polish --- */
@media (max-width: 480px) {
  .footer-clean-nav { flex-wrap: wrap; gap: 10px; justify-content: center; font-size: 0.78rem; }
  .clean-footer { padding-top: 36px; }
  .footer-clean-brand p { font-size: 0.78rem; }
}

/* ==========================================================================
   EDITORIAL CAMPAIGN SPLIT (LUXURY 2-COLUMN FEATURE)
   ========================================================================== */
.editorial-split-section {
  padding: 80px 0 40px;
  background-color: var(--bg-cream, #fcfbf9);
}

.editorial-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.editorial-split-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.editorial-split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.editorial-card-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.editorial-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.editorial-split-card:hover .editorial-card-img {
  transform: scale(1.04);
}

.editorial-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 10, 5, 0.5) 65%, rgba(15, 10, 5, 0.9) 100%);
  z-index: 2;
}

.editorial-card-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.editorial-kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e5a970;
  display: inline-block;
  margin-bottom: 8px;
}

.editorial-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}

.editorial-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  max-width: 460px;
}

.btn-editorial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #ffffff;
  color: #1a1512;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-editorial:hover {
  background: var(--primary, #c8553d);
  color: #ffffff;
  gap: 14px;
}

@media (max-width: 860px) {
  .editorial-split-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .editorial-split-card {
    min-height: 440px;
    padding: 24px 20px;
  }
  .editorial-title {
    font-size: 1.65rem;
    margin-bottom: 12px;
  }
}

/* ==========================================================================
   CINEMATIC LANDSCAPE QUOTE DIVIDER
   ========================================================================== */
.landscape-quote-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin: 40px 0;
}

.landscape-quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.landscape-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 8, 0.52);
  z-index: 2;
}

.landscape-quote-container {
  position: relative;
  z-index: 3;
  max-width: 880px;
  padding: 60px 24px;
  color: #ffffff;
}

.quote-kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f1b37b;
  display: inline-block;
  margin-bottom: 18px;
}

.quote-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.quote-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
}

.sign-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   VISUAL HERITAGE JOURNAL / MOODBOARD (4-PHOTO GRID)
   ========================================================================== */
.visual-journal-section {
  padding: 90px 0 70px;
  background: #f7f4ed;
}

.visual-journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.journal-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.journal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.journal-item:hover .journal-img {
  transform: scale(1.06);
}

.journal-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 20px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 10, 5, 0.88) 100%);
  color: #ffffff;
  transition: transform 0.3s ease;
}

.journal-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f1b37b;
  display: block;
  margin-bottom: 6px;
}

.journal-badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(180, 83, 9, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.journal-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

@media (max-width: 992px) {
  .visual-journal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .journal-item {
    height: 340px;
  }
}

@media (max-width: 580px) {
  .visual-journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .journal-item {
    height: 220px;
  }
  .journal-badge-top {
    top: 8px;
    right: 8px;
    font-size: 0.54rem;
    padding: 2px 6px;
    letter-spacing: 0.3px;
    gap: 3px;
  }
  .journal-caption {
    padding: 16px 12px 12px;
  }
  .journal-tag {
    font-size: 0.62rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }
  .journal-caption h4 {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   TIKTOK LIVE STREAM ORDERING BANNER & BADGES
   ========================================================================== */
.tiktok-live-section {
  padding: 60px 0;
  background: #141210;
  position: relative;
  overflow: hidden;
}

.tiktok-live-card {
  background: linear-gradient(135deg, rgba(30, 27, 24, 0.95), rgba(18, 16, 14, 0.98));
  border: 1.5px solid rgba(194, 105, 56, 0.35);
  border-radius: 16px;
  padding: 40px 48px;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.tiktok-live-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15), transparent 70%);
  pointer-events: none;
}

.tiktok-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.tiktok-live-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
}

.tiktok-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #ef4444;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #ef4444;
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.tiktok-live-badge-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ef4444;
  text-transform: uppercase;
}

.tiktok-handle-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d1c7bc;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tiktok-live-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #f7f4ed;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.tiktok-live-content h2 span {
  color: var(--secondary);
}

.tiktok-live-content p {
  color: #b8aea4;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 820px;
}

.tiktok-live-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.tiktok-perk-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tiktok-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(194, 105, 56, 0.18);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.tiktok-perk-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.tiktok-perk-item p {
  font-size: 0.8rem;
  color: #9c9288;
  line-height: 1.4;
  margin: 0;
}

.tiktok-live-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-tiktok-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fe2c55;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(254, 44, 85, 0.4);
}

.btn-tiktok-live:hover {
  background: #e02449;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 44, 85, 0.6);
}

.btn-tiktok-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f7f4ed !important;
  border: 1.5px solid var(--secondary);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-tiktok-order:hover {
  background: var(--secondary);
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tiktok-live-card {
    padding: 26px 20px;
    gap: 20px;
  }
  .tiktok-live-perks {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   Floating WhatsApp Widget
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  background: #20ba5a;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   Slide-out Checkout & Order Email Modal System
   ========================================================================== */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.checkout-modal-overlay.open {
  display: flex;
}

.checkout-modal-card {
  background: #ffffff;
  border-radius: 12px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  border: 1px solid #d5ccbe;
  padding: 28px 24px;
  animation: modalPop 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.checkout-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}

.checkout-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.checkout-modal-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.checkout-close-btn {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #777;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s;
}

.checkout-close-btn:hover {
  color: #111;
}

.checkout-tiktok-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  border: 1px dashed #f87171;
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.checkout-order-summary {
  background: #faf8f5;
  border: 1px solid #e7dfd5;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.checkout-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #141210;
  margin-bottom: 10px;
  border-bottom: 1px dashed #d5ccbe;
  padding-bottom: 6px;
}

.checkout-item-preview-list {
  max-height: 160px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-item-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.82rem;
  color: #333;
}

.checkout-item-preview-row span.item-desc {
  flex: 1;
  padding-right: 10px;
}

.checkout-item-preview-row span.item-total {
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #d5ccbe;
  font-size: 0.95rem;
  font-weight: 800;
  color: #141210;
}

.checkout-form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #292725;
}

.checkout-form-group input,
.checkout-form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d5ccbe;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(140, 75, 40, 0.12);
  outline: none;
}

.checkout-notice-text {
  font-size: 0.72rem;
  color: #777;
  text-align: center;
  margin-top: 8px;
  line-height: 1.35;
}

@media (max-width: 576px) {
  .checkout-form-row {
    grid-template-columns: 1fr;
  }
  .checkout-modal-card {
    padding: 20px 16px;
  }
}

/* ================= GLOBAL QUICK VIEW MODAL ================= */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quick-view-modal.active {
  display: flex !important;
}
.modal-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #faf8f5;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-main);
  z-index: 10;
  transition: background 0.2s ease;
}
.modal-close-btn:hover {
  background: #e5ded2;
}
.modal-img-col {
  background: #fbf9f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  min-width: 0;
}
.modal-img-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.modal-img-col img#modalImg {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
}
.modal-img-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(20, 18, 16, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 5;
}
.modal-slider-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.modal-slider-btn {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #141210;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 6;
}
.modal-slider-btn:hover {
  background: #141210;
  color: #fff;
  transform: scale(1.08);
}
.modal-slider-btn:active {
  transform: scale(0.95);
}
.modal-thumbnails {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  flex-wrap: wrap;
  max-width: 100%;
}
.modal-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  padding: 0;
  border: 2px solid transparent;
  background: #f1ede6;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.modal-thumb.active {
  border-color: #141210;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transform: translateY(-2px) scale(1.05);
}
.modal-details-col {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.modal-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.25;
}
.modal-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}
.modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.modal-cup-care-box {
  margin: 8px 0 14px;
  padding: 12px 14px;
  background: #fff5f7;
  border: 1px solid #fbcfe8;
  border-radius: 10px;
}
.modal-size-row {
  margin-bottom: 16px;
}
.modal-size-title {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-size-pills {
  display: flex;
  gap: 8px;
}
.modal-size-pill {
  padding: 6px 14px;
  border: 1px solid #d5ccbe;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  background: #ffffff;
}
.modal-size-pill.active {
  background: #141210;
  color: #ffffff;
  border-color: #141210;
}
.modal-actions-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
@media (max-width: 768px) {
  .modal-card {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }
  .modal-details-col {
    padding: 20px;
  }
}
