/* ========================================
   DRIFT — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* === CSS Variables === */
:root {
  --bg-primary: #FAFAF8;
  /* خلفية أساسية - أبيض دافئ، ليس أبيض ثلجي صارخ */
  --bg-secondary: #F2F0EC;
  /* خلفية بطاقات/سكاشن متبادلة */
  --text-primary: #1A1A1A;
  /* نص أساسي - أسود ناعم، ليس #000 خام */
  --text-secondary: #6B6B66;
  /* نص ثانوي/وصفي */
  --accent: #C9A876;
  /* لون تمييز واحد فقط (أو حسب هوية البراند) */
  --border-soft: #E5E2DC;
  /* حدود خفيفة بدلاً من ظلال قوية */
  --border: var(--border-soft);
  --overlay-dark: rgba(0, 0, 0, 0.45);
  /* طبقة تظليل فوق صور الهيرو فقط */
}

/* === Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='s' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeDropShadow dx='0' dy='-10' stdDeviation='15' flood-color='%23C0BCB4' flood-opacity='0.65'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='1440' height='900' fill='%23FAFAF8'/%3E%3Cpath filter='url(%23s)' fill='%23FDFDFD' d='M0,150 C300,-50 600,250 1440,100 L1440,900 L0,900 Z'/%3E%3Cpath filter='url(%23s)' fill='%23FAF9F6' d='M0,300 C400,450 800,100 1440,250 L1440,900 L0,900 Z'/%3E%3Cpath filter='url(%23s)' fill='%23F7F6F2' d='M0,450 C500,350 900,550 1440,400 L1440,900 L0,900 Z'/%3E%3Cpath filter='url(%23s)' fill='%23F4F2EE' d='M0,650 C600,800 1000,500 1440,650 L1440,900 L0,900 Z'/%3E%3Cpath filter='url(%23s)' fill='%23F0EEEA' d='M0,800 C700,700 1100,950 1440,850 L1440,900 L0,900 Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.loaded {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--text-secondary);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-secondary);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Remove up/down spin buttons in number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 400;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: clamp(28px, 4vw, 48px);
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 0.85em;
  margin-right: 8px;
}

/* === Layout === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 48px 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-soft);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.btn-ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  min-height: 36px;
}

.btn-full {
  width: 100%;
}

.btn:active {
  transform: scale(0.98);
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: none;
  display: flex;
  align-items: center;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon {
  height: 28px;
  width: auto;
  margin-right: 8px;
  object-fit: contain;
  filter: brightness(0);
  transition: filter 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* On transparent navbar, make the logo icon white */
.navbar-transparent .logo-icon {
  filter: brightness(0) invert(1);
}

/* On transparent navbar scrolled state, make it black again */
.navbar-transparent.scrolled .logo-icon {
  filter: brightness(0);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  text-transform: none;
  letter-spacing: 0;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  display: none !important;
}

.nav-links a.active::after {
  content: '•' !important;
  position: absolute !important;
  bottom: -4px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: var(--text-primary) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  display: block !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-right a,
.nav-right button {
  color: var(--text-secondary);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: transparent;
  border: none;
  position: relative;
}

.nav-right a:hover,
.nav-right button:hover {
  color: var(--text-primary);
}

.nav-right svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Homepage Transparent Header Support */
.navbar-transparent {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.navbar-transparent .logo {
  color: #FFFFFF;
}

.navbar-transparent .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-transparent .nav-links a:hover,
.navbar-transparent .nav-links a.active {
  color: #FFFFFF;
}

.navbar-transparent .nav-links a.active::after {
  color: #FFFFFF !important;
}

.navbar-transparent .nav-right a,
.navbar-transparent .nav-right button {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-transparent .nav-right a:hover,
.navbar-transparent .nav-right button:hover {
  color: #FFFFFF;
}

.navbar-transparent .hamburger span {
  background: #FFFFFF;
}

/* Homepage Transparent Header Scrolled state */
.navbar-transparent.scrolled {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

/* Standard navbar scrolled state (for non-homepage pages) */
.navbar.scrolled:not(.navbar-transparent) {
  height: 60px;
  background: rgba(250, 250, 248, 0.88) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar-transparent.scrolled .logo {
  color: var(--text-primary);
}

.navbar-transparent.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar-transparent.scrolled .nav-links a:hover,
.navbar-transparent.scrolled .nav-links a.active {
  color: var(--text-primary);
}

.navbar-transparent.scrolled .nav-links a.active::after {
  color: var(--text-primary) !important;
}

.navbar-transparent.scrolled .nav-right a,
.navbar-transparent.scrolled .nav-right button {
  color: var(--text-secondary);
}

.navbar-transparent.scrolled .nav-right a:hover,
.navbar-transparent.scrolled .nav-right button:hover {
  color: var(--text-primary);
}

.navbar-transparent.scrolled .hamburger span {
  background: var(--text-primary);
}

.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

.cart-badge.pulse {
  animation: pulse-badge 0.5s ease;
}

/* Wishlist Badge */
.wishlist-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay (Drawer Backdrop) */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align drawer content to the right */
  justify-content: flex-start;
  padding: 60px 0 20px; /* Top padding raised to clear navbar tightly */
  opacity: 0;
  pointer-events: none;
  transition: background-color 0.4s ease, opacity 0.4s ease;
}

.mobile-nav::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  max-width: 75%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.12);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.4);
}

.mobile-nav.open::after {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px !important;
  font-weight: 500;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
  padding: 18px 24px;
  width: 260px;
  max-width: 75%;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Staggered links animation */
.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.open a:nth-child(1) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.mobile-nav.open a:nth-child(2) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s; }
.mobile-nav.open a:nth-child(3) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.mobile-nav.open a:nth-child(4) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.25s; }
.mobile-nav.open a:nth-child(5) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }

.mobile-nav a::after {
  content: '→';
  font-size: 14px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.mobile-nav a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.mobile-nav a:hover::after {
  transform: translateX(4px);
  opacity: 1;
}

/* === Footer === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 280px;
  line-height: 1.7;
}

.footer h6 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: middle;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* === Badges === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.badge-sale {
  background: #CC2200;
  color: #fff;
}

.badge-new {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Status badges */
.status-badge {
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-pending {
  background: rgba(255, 200, 0, 0.15);
  color: #FFD700;
}

.status-confirmed {
  background: rgba(0, 120, 255, 0.15);
  color: #4da6ff;
}

.status-shipped {
  background: rgba(150, 0, 255, 0.15);
  color: #b366ff;
}

.status-delivered {
  background: rgba(0, 200, 80, 0.15);
  color: #00e676;
}

.status-cancelled {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4444;
}

/* === Modal / Overlay === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-primary);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h4 {
  font-size: 20px;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 20px;
  transition: color 0.3s ease;
  border-radius: 4px;
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--border-soft);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* === Toast Notifications === */
.toast-container {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--bg-primary);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transform: translateX(120%);
  transition: transform 0.4s ease;
  max-width: 360px;
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  border-left: 3px solid #00e676;
}

.toast-error {
  border-left: 3px solid #CC2200;
}

.toast-info {
  border-left: 3px solid #4da6ff;
}

/* === Form Groups === */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group .error-msg {
  font-size: 12px;
  color: #CC2200;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #CC2200;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Toggle Switch */
.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border-soft);
  border-radius: 24px;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--text-primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle input:checked+.toggle-slider {
  background: #00e676;
}

.toggle input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
  background: var(--border-soft);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* === Selection === */
::selection {
  background: #3399ff;
  color: #ffffff;
}

/* === Breadcrumb === */
.breadcrumb {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--text-primary);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 64px !important;
    padding: 0 16px !important;
  }

  .hamburger {
    display: flex !important;
    padding: 8px 0 !important;
  }

  .logo {
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    gap: 8px !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .nav-links {
    display: none !important;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  /* Mobile featured scroll */
  .featured-scroll .product-card {
    min-width: 200px !important;
  }

  /* Mobile footer adjustments */
  .footer {
    padding: 40px 0 24px !important;
  }

  .footer-grid {
    gap: 24px !important;
  }

  .footer h6 {
    font-size: 11px !important;
    margin-bottom: 14px !important;
  }

  .footer-links a {
    font-size: 13px !important;
    padding: 3px 0 !important;
  }

  .footer-brand p {
    font-size: 13px !important;
  }

  .footer-bottom {
    font-size: 12px !important;
    padding-top: 16px !important;
  }

  /* Mobile toast positioning */
  .toast-container {
    top: 72px !important;
    right: 16px !important;
    left: 16px !important;
  }

  .toast {
    max-width: 100% !important;
    font-size: 13px !important;
  }

  /* Mobile modal adjustments */
  .modal-overlay {
    padding: 16px !important;
  }

  .modal-header {
    padding: 16px !important;
  }

  .modal-header h4 {
    font-size: 16px !important;
  }

  .modal-body {
    padding: 16px !important;
  }

  /* Mobile mobile-nav links */
  .mobile-nav a {
    font-size: 15px !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }
}

/* Hide admin link in the footer on all views */
.footer a[href*="admin"],
.footer-bottom a[href*="admin"] {
  display: none !important;
}

/* === Floating Contact Buttons === */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.floating-btn:active {
  transform: scale(0.95);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Phone Call button: Green/Teal theme */
.floating-btn.phone-btn {
  background-color: #00bfa5;
}

/* WhatsApp button: Green theme */
.floating-btn.whatsapp-btn {
  background-color: #25d366;
}

/* On mobile, adjust positions or sizes slightly */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* === Hero Redesign === */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: heroFadeIn 0.8s ease 0.3s both;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title .purple-dot {
  color: var(--accent);
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

/* Redesigned Pill Buttons */
.btn-shop-now {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--accent) !important;
  border-radius: 80px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 12px 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  min-height: 46px !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-shop-now:hover {
  background: var(--text-primary) !important;
  color: var(--bg-primary) !important;
  border-color: var(--text-primary) !important;
  transform: scale(1.02) !important;
}

.btn-explore {
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 80px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 12px 28px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-explore:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #FFFFFF !important;
  transform: scale(1.02) !important;
}

/* Scroll Indicators */
.scroll-indicator-wrapper {
  position: absolute;
  bottom: 40px;
  left: 10%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator-wrapper svg {
  stroke-width: 1.5;
}

.scroll-indicator-wrapper .chevron-icon {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    position: relative !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 0 20px 180px !important;
    overflow: hidden !important;
    background-color: var(--bg-secondary) !important;
  }

  .hero-bg {
    position: absolute !important;
    inset: -10px !important;
    background-image: url('../background2.png') !important;
    background-size: cover !important;
    background-position: center !important;
    transform: scale(1.2) !important;
    transform-origin: center !important;
    z-index: 1 !important;
  }

  .hero-overlay {
    display: block !important;
    position: absolute !important;
    inset: -10px !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)) !important;
    z-index: 2 !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 3 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: left !important;
    align-items: flex-start !important;
    animation: none !important;
  }

  .hero-title {
    color: #ffffff !important;
    font-size: 32px !important;
    line-height: 1.15 !important;
    text-align: left !important;
  }

  .hero-description {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px !important;
    text-align: left !important;
    margin: 0 !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: 6px !important;
  }

  .hero-buttons .btn {
    flex: 1 !important;
    max-width: 180px !important;
    font-size: 11px !important;
    padding: 10px 14px !important;
    min-height: 40px !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 60px !important;
  }

  .hero-buttons .btn-explore {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    background: transparent !important;
  }

  .hero-buttons .btn-explore:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
  }

  .scroll-indicator-wrapper {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 16px !important;
    flex-direction: column !important;
    gap: 6px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    z-index: 3 !important;
    display: flex !important;
    font-size: 10px !important;
  }

  .scroll-indicator-wrapper .mouse-icon {
    display: none !important;
  }

  .scroll-indicator-wrapper .chevron-icon {
    display: block !important;
    width: 18px !important;
  }
}

/* Hide Search and Account Icons Globally */
.search-btn,
.account-btn {
  display: none !important;
}



/* Hide Hamburger Menu on Desktop */
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}

/* ==========================================================================
   Option 1 — Visual Collections Grid
   ========================================================================== */
.collections-section {
  position: relative;
  z-index: 10;
  padding: 48px 0;
  background: transparent;
  border: none;
}

@media (max-width: 768px) {
  .collections-section {
    padding: 32px 0;
    background: transparent;
    border: none;
  }
}

@media (min-width: 769px) {
  .collections-section .container {
    max-width: 1600px;
    width: 95%;
  }
}

.collections-grid-desktop {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 12px;
  height: 440px;
}

.collections-right-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.collections-grid-mobile {
  display: none;
}

.collection-card.card-large {
  height: 100%;
  padding: 32px;
  border-radius: 20px;
}

.collection-card.card-small {
  height: 100%;
  padding: 20px 24px;
  border-radius: 20px;
}

/* Desktop card style overrides (flat surfaces, no elevation, no shadows) */
.collections-grid-desktop .collection-card {
  box-shadow: none !important;
}

.collections-grid-desktop .collection-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Text and CTA treatments inside large featured card */
.collection-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.collection-title-large {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.collection-btn-pill {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 8px 18px;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.collection-card:hover .collection-btn-pill {
  background: var(--text-primary);
  color: #FFFFFF;
}

/* Small card text with inline trailing arrow */
.collection-title-small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 4px;
}

.collection-title-small svg {
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-title-small svg {
  transform: translateX(4px);
}

.collection-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: #1A1A1A; /* Fallback */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  border: 1px solid var(--border-soft);
}

.collection-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.collection-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  width: 100%;
}

.collection-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.collection-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover States Option 1 */
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.collection-card:hover .collection-card-img {
  transform: scale(1.05);
}

.collection-card:hover .collection-link {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ==========================================================================
   Option 3 — Lookbook Showcase Split Layout
   ========================================================================== */
.lookbook-section {
  padding: 50px 0;
  background: transparent;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.lookbook-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  min-height: 480px;
  gap: 60px;
}

/* --- Left Side: Asymmetric Overlapping Images --- */
.lookbook-images-wrapper {
  flex: 1.25;
  position: relative;
  min-height: 480px;
  padding-bottom: 40px;
}

.lookbook-primary-card {
  position: relative;
  width: 65%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-primary);
  z-index: 1;
}

.lookbook-primary-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.lookbook-secondary-card {
  position: absolute;
  bottom: 15px;
  right: 6%;
  width: 44%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-primary);
  z-index: 2;
}

.lookbook-secondary-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover transitions without shadows */
.lookbook-images-wrapper:hover .lookbook-primary-img,
.lookbook-images-wrapper:hover .lookbook-secondary-img {
  transform: scale(1.03);
}

/* --- Bottom-Left slide progress indicator --- */
.lookbook-progress-indicator {
  position: absolute;
  bottom: 5px;
  left: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.lookbook-progress-indicator .progress-bar {
  display: inline-block;
  height: 2px;
  width: 16px;
  background-color: var(--border-soft);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lookbook-progress-indicator .progress-bar.active {
  width: 32px;
  background-color: var(--text-primary);
}

/* --- Right Side: Type-driven content aligned top-right --- */
.lookbook-content-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 0;
}

/* --- Spacing & Layout overrides for Homepage sections --- */
.featured-section.section {
  padding: 0 0 60px;
  text-align: left !important;
}

.sale-section.section,
#more-products.section {
  padding: 32px 0 60px;
  text-align: left !important;
}

.featured-section.section h2,
.sale-section.section h2,
#more-products.section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-align: left !important;
  margin-bottom: 4px;
}

.featured-section.section .sub {
  text-align: left !important;
  margin-bottom: 12px !important; /* Brought closer to the product strip */
}

.sale-section.section .sub,
#more-products.section .sub {
  text-align: left !important;
  margin-bottom: 24px !important;
}

/* Center "View All" link on the page */
.featured-section.section .view-all,
.sale-section.section .view-all {
  display: block !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 32px auto 0 !important;
  text-align: center !important;
}

@media (max-width: 991px) {
  .featured-section.section {
    padding: 0 0 48px;
  }
  .sale-section.section,
  #more-products.section {
    padding: 24px 0 48px;
  }
  .featured-section.section h2 {
    font-size: 18px !important;
  }
  .sale-section.section h2,
  #more-products.section h2 {
    font-size: 18px !important;
  }
}

@media (max-width: 768px) {
  .featured-section.section {
    padding: 0 0 32px;
  }
  .sale-section.section,
  #more-products.section {
    padding: 20px 0 32px;
  }
  .featured-section.section h2 {
    font-size: 18px !important;
  }
  .sale-section.section h2,
  #more-products.section h2 {
    font-size: 18px !important;
  }
}

.lookbook-section {
  padding: 50px 0;
}

.lookbook-section + .section,
.lookbook-section + #sale-section {
  padding-top: 32px;
}
#sale-section[style*="display: none"] + #more-products,
#sale-section[style*="display:none"] + #more-products {
  padding-top: 32px;
}

.lookbook-content-wrap {
  max-width: 420px;
  text-align: left;
}

.lookbook-divider {
  width: 28px;
  height: 1.5px;
  background-color: var(--text-primary);
  margin-bottom: 16px;
}

.lookbook-content-wrap .eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.lookbook-content-wrap h2.lookbook-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: none; /* Sentence case support! */
  font-size: clamp(28px, 3.5vw, 34px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.lookbook-text {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lookbook-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.lookbook-link-cta:hover {
  opacity: 0.7;
  gap: 12px;
}

.lookbook-link-cta svg {
  transition: transform 0.3s ease;
}

.lookbook-link-cta:hover svg {
  transform: translateX(2px);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .lookbook-container {
    gap: 40px;
  }
  .lookbook-content-side {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .collections-grid-desktop {
    display: none !important;
  }

  .collections-grid-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .collection-card {
    height: 120px;
    padding: 20px;
    border-radius: 20px;
  }

  .collection-content h3 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  
  .lookbook-container {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }
  
  .lookbook-images-wrapper {
    width: 100%;
    min-height: auto;
    height: 330px;
    margin-bottom: 16px;
    padding-bottom: 30px;
  }

  .lookbook-primary-card {
    width: 65%;
  }

  .lookbook-secondary-card {
    width: 44%;
    bottom: 5px;
    right: 5%;
  }

  .lookbook-progress-indicator {
    bottom: 5px;
    left: 0;
  }
  
  .lookbook-content-side {
    padding: 0;
    text-align: left;
    justify-content: flex-start;
  }
  
  .lookbook-content-wrap {
    max-width: 100%;
  }

  .lookbook-text {
    -webkit-line-clamp: unset;
  }
}

/* === Checkout Authentication Gate === */
.checkout-gate-warning {
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  padding: 28px 24px;
  border-radius: 12px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.checkout-gate-warning p {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  max-width: 450px;
  line-height: 1.5;
  margin: 0;
}

.checkout-form-disabled {
  position: relative;
}

.checkout-form-disabled > *:not(.checkout-gate-warning) {
  opacity: 0.5;
  pointer-events: none;
}

/* === Customer Account Button in Header === */
.customer-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.customer-account-btn:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
}

.customer-account-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

/* Homepage transparent header support */
.navbar-transparent:not(.scrolled) .customer-account-btn {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-transparent:not(.scrolled) .customer-account-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
  .customer-account-btn {
    padding: 4px 6px;
    gap: 4px;
  }
  .customer-account-btn .account-text {
    font-size: 11px;
  }
}

/* === Global Page Header === */
.shop-header {
  position: relative;
  padding: 120px 0 40px;
  text-align: center;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(250, 250, 248, 0.25), rgba(250, 250, 248, 0.85)), url('https://images.unsplash.com/photo-1556821840-3a63f95609a7?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  background-blend-mode: lighten;
  border-bottom: 1px solid var(--border-soft);
}

.shop-header .container {
  position: relative;
  z-index: 2;
}

.shop-header h1 {
  font-size: clamp(48px, 8vw, 80px);
  margin-bottom: 8px;
}
