/* ==========================================================================
   HUDSON LIGHTING - UNIFIED RESPONSIVE STYLESHEET
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ========================================================================== */

:root {
  /* Brand Colors - Primary */
  --color-navy-deep: #1F3556;
  --color-purple-dark: #1A1220;
  --color-off-white: #F4F2F3;

  /* Brand Colors - Accent */
  --color-gold-light: #F2DA84;
  --color-gold: #DEB34D;
  --color-gold-muted: #C9B97A;
  --color-gold-deep: #D39A2F;
  --color-purple-muted: #7C6F8E;
  --color-purple-soft: #9B5C9C;

  /* Neutrals */
  --color-black-charcoal: #0F1213;
  --color-grey-dark: #3A3A3A;
  --color-grey-mid: #7A7A7A;
  --color-grey-light: #E5E5E5;
  --color-white: #FFFFFF;

  /* Semantic Colors */
  --color-text-primary: var(--color-grey-dark);
  --color-text-secondary: var(--color-grey-mid);
  --color-text-light: var(--color-white);
  --color-text-accent: var(--color-gold-deep);
  --color-bg-dark: var(--color-purple-dark);
  --color-bg-light: var(--color-off-white);
  --color-bg-white: var(--color-white);
  --color-link: var(--color-navy-deep);
  --color-link-hover: var(--color-gold-deep);

  /* Typography */
  --font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-md: 1.125rem;   /* 18px */
  --font-size-lg: 1.25rem;    /* 20px */
  --font-size-xl: 1.5rem;     /* 24px */
  --font-size-2xl: 2rem;      /* 32px */
  --font-size-3xl: 2.5rem;    /* 40px */
  --font-size-4xl: 3rem;      /* 48px */
  --font-size-5xl: 3.5rem;    /* 56px */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing (8px base grid) */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --container-padding: var(--space-6);

  /* Breakpoints (for reference - used in media queries) */
  /* --bp-sm: 576px; */
  /* --bp-md: 768px; */
  /* --bp-lg: 1024px; */
  /* --bp-xl: 1200px; */
  /* --bp-2xl: 1400px; */

  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ==========================================================================
   2. CSS RESET & BASE STYLES
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-link-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-black-charcoal);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   3. LAYOUT & CONTAINER
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--fluid {
  max-width: 100%;
}

/* Section spacing */
.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section--sm {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section--lg {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

/* Background variants */
.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--color-text-light);
}

.section--light {
  background-color: var(--color-bg-light);
}

.section--navy {
  background-color: var(--color-navy-deep);
  color: var(--color-text-light);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5,
.section--navy h6 {
  color: var(--color-text-light);
}

/* ==========================================================================
   4. GRID SYSTEM
   ========================================================================== */

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* Flex utilities */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--column {
  flex-direction: column;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-purple-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--container-padding);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-off-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-2) 0;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold-deep);
  transition: width var(--transition-base);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-off-white);
  transition: color var(--transition-fast);
}

.header__action-btn:hover {
  color: var(--color-gold-deep);
}

.header__cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  line-height: 18px;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-gold-deep);
  border-radius: var(--border-radius-full);
}

.header__action-btn {
  position: relative;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-off-white);
  transition: var(--transition-fast);
}

/* ==========================================================================
   5b. MEGA MENU / DROPDOWNS
   ========================================================================== */

.nav-item {
  position: relative;
}

.nav-item__trigger {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-off-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-2) 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-item__trigger:hover {
  color: var(--color-gold-deep);
}

.nav-item__trigger svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-item__trigger svg {
  transform: rotate(180deg);
}

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background-color: var(--color-purple-dark);
  border-radius: var(--border-radius-md);
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: var(--z-dropdown);
  box-shadow: var(--shadow-xl);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mega menu (wider dropdown) */
.dropdown--mega {
  left: 0;
  transform: translateY(10px);
  min-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.nav-item:hover .dropdown--mega {
  transform: translateY(0);
}

.dropdown--mega-with-image {
  grid-template-columns: 1fr 1fr 180px;
}

/* Dropdown sections */
.dropdown__section {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.dropdown__heading {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple-muted);
  margin-bottom: var(--space-3);
}

/* Dropdown links */
.dropdown__link {
  display: block;
  padding: var(--space-2) 0;
  color: var(--color-off-white);
  transition: color var(--transition-fast);
}

.dropdown__link:hover {
  color: var(--color-gold-light);
}

.dropdown__link-title {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.dropdown__link-desc {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-grey-mid);
  margin-top: 2px;
}

/* Dropdown with icons */
.dropdown__link--icon {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.dropdown__link-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--color-purple-muted);
}

.dropdown__link--icon:hover .dropdown__link-icon {
  color: var(--color-gold-light);
}

/* Dropdown featured image */
.dropdown__featured {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.dropdown__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown__featured-label {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.dropdown__featured-label svg {
  width: 14px;
  height: 14px;
}

/* Simple dropdown (no mega) */
.dropdown--simple {
  left: 0;
  transform: translateX(0) translateY(10px);
}

.nav-item:hover .dropdown--simple {
  transform: translateX(0) translateY(0);
}

/* Right-aligned dropdown (for account) */
.dropdown--right {
  left: auto;
  right: 0;
  transform: translateY(10px);
}

.nav-item:hover .dropdown--right {
  transform: translateY(0);
}

/* Account dropdown specific styles */
.nav-item--account {
  position: relative;
}

.dropdown--account {
  min-width: 240px;
}

/* Region Selector */
.nav-item--region {
  position: relative;
}

.header__region-btn {
  display: flex;
  align-items: center;
  padding: 8px;
}

.header__region-flags {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__region-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.dropdown--region {
  min-width: 240px;
}

.dropdown--region .dropdown__heading {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-2);
}

.dropdown--region .dropdown__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-3) var(--space-4);
  position: relative;
  transition: background-color 0.2s ease;
}

.dropdown--region .dropdown__link:hover {
  background: rgba(201, 169, 97, 0.1);
}

.dropdown--region .dropdown__link-flags {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.dropdown--region .dropdown__link-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.dropdown--region .dropdown__link-title {
  flex: 1;
}

.dropdown--region .dropdown__link-currency {
  font-size: var(--font-size-xs);
  color: var(--color-grey-mid);
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
}

.dropdown--region .dropdown__link--active {
  background: rgba(201, 169, 97, 0.1);
}

.dropdown--region .dropdown__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #C9A961;
}

.dropdown--region .dropdown__link--active .dropdown__link-currency {
  background: #C9A961;
  color: var(--color-black-charcoal);
}

/* Mobile region dropdown positioning */
@media (max-width: 768px) {
  .dropdown--region {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
  }
  
  .dropdown--region .dropdown__link {
    padding: var(--space-3) var(--space-3);
  }
}

.dropdown__user {
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown__user-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-grey-mid);
  margin-bottom: var(--space-1);
}

.dropdown__user-email {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-gold-light);
}

.dropdown__user-company {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-grey-mid);
  margin-top: 2px;
}

.dropdown__badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black-charcoal);
  background-color: var(--color-gold-light);
  border-radius: var(--border-radius-sm);
}

.dropdown__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: var(--space-2) 0;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.hero--full {
  min-height: 100vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 18, 32, 0.85) 0%, rgba(26, 18, 32, 0.4) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: var(--space-16) var(--container-padding);
}

.hero__eyebrow {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__title span {
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-off-white);
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-gold-deep);
  color: var(--color-white);
  border-color: var(--color-gold-deep);
}

.btn--primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-black-charcoal);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black-charcoal);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-navy-deep);
  border-color: var(--color-navy-deep);
}

.btn--outline:hover {
  background-color: var(--color-navy-deep);
  color: var(--color-white);
}

.btn--dark {
  background-color: var(--color-black-charcoal);
  color: var(--color-white);
  border-color: var(--color-black-charcoal);
}

.btn--dark:hover {
  background-color: var(--color-grey-dark);
  border-color: var(--color-grey-dark);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
}

.btn--full {
  width: 100%;
}

/* ==========================================================================
   8. CARDS
   ========================================================================== */

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

/* Product card with .product-image class (listing pages) */
.product-card .product-image {
  position: relative;
  background: #fff;
  padding: 20px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card .product-image img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  background-color: var(--color-gold-deep);
  color: var(--color-white);
  border-radius: var(--border-radius-sm);
}

.product-card__body {
  padding: var(--space-4);
}

.product-card__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
}

.product-card__price {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-deep);
}

.product-card__price--sale {
  color: var(--color-gold-deep);
}

.product-card__price-original {
  font-size: var(--font-size-sm);
  color: var(--color-grey-mid);
  text-decoration: line-through;
  margin-left: var(--space-2);
}

/* Category Card (circular) */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

.category-card__image {
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  border: 3px solid var(--color-grey-light);
  transition: border-color var(--transition-base);
}

.category-card:hover .category-card__image {
  border-color: var(--color-gold-deep);
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

/* Collection Card */
.collection-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.collection-card__image {
  position: absolute;
  inset: 0;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 18, 19, 0.8) 0%, rgba(15, 18, 19, 0) 60%);
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  color: var(--color-white);
}

.collection-card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.collection-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-off-white);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.collection-card__link {
  font-size: var(--font-size-sm);
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   9. SECTION HEADERS
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header--left {
  text-align: left;
}

.section-header__eyebrow {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-2);
}

.section-header__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.section-header__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header--left .section-header__subtitle {
  margin-left: 0;
}

/* ==========================================================================
   10. GALLERY / INSPIRATION SECTION
   ========================================================================== */

.gallery {
  display: grid;
  gap: var(--space-4);
}

.gallery--masonry {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.gallery__item--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery__item:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 1;
}

.gallery__item--wide {
  grid-column: 2 / 5;
  grid-row: 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.footer {
  background-color: var(--color-black-charcoal);
  color: var(--color-off-white);
  padding-top: var(--space-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: var(--space-6);
}

.footer__logo img {
  height: 50px;
  width: auto;
}

.footer__tagline {
  font-size: var(--font-size-sm);
  color: var(--color-grey-mid);
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-off-white);
  transition: background-color var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-gold-deep);
  color: var(--color-white);
}

.footer__column-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-grey-mid);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-gold-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
}

.footer__copyright {
  font-size: var(--font-size-xs);
  color: var(--color-grey-mid);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-link {
  font-size: var(--font-size-xs);
  color: var(--color-grey-mid);
}

.footer__legal-link:hover {
  color: var(--color-gold-light);
}

/* ==========================================================================
   11b. NEWSLETTER & BROCHURE SECTION
   ========================================================================== */

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.newsletter-signup {
  padding: 30px 0;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 40px 0 !important;
  }
  
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-signup {
    padding: 20px 0;
  }
  
  .newsletter-signup form {
    flex-direction: column !important;
  }
  
  .newsletter-signup form input[type="email"],
  .newsletter-signup form button {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  
  .newsletter-signup div[style*="margin-bottom"] label {
    display: block;
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   11c. GRASS DECORATION & FOOTER WRAPPER
   ========================================================================== */

.footer-wrapper {
  position: relative;
  margin-top: 0;
}

.grass-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.grass-decoration img {
  position: absolute;
  top: -100px;
  height: 120px;
  width: auto;
  max-width: 50%;
}

.grass-decoration img:first-child {
  left: 0;
}

.grass-decoration img:last-child {
  right: 0;
}

/* Footer Upper - Newsletter & Brochure */
.footer-upper {
  background: #000;
  padding: 60px 0 40px;
  position: relative;
}

.footer-upper__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-upper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.footer-upper__tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-upper__tabs label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-upper__tabs input[type="radio"] {
  accent-color: var(--color-gold, #DEB34D);
}

.footer-upper__form {
  display: block;
}

.footer-upper__input-row {
  display: flex;
  gap: 10px;
}

.footer-upper__msg {
  font-size: 0.85rem;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 4px;
}
.footer-upper__msg--success {
  background: rgba(46, 125, 50, 0.2);
  color: #81c784;
}
.footer-upper__msg--error {
  background: rgba(198, 40, 40, 0.2);
  color: #ef9a9a;
}

.footer-upper__form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.875rem;
}

.footer-upper__form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer-upper__form button {
  padding: 12px 24px;
  background: var(--color-gold, #DEB34D);
  color: var(--color-purple-dark, #1A1220);
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-upper__form button:hover {
  background: var(--color-gold-light, #F2DA84);
}

.footer-upper__brochure p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Gold brochure box */
.footer-upper__brochure--gold {
  background: var(--color-gold, #DEB34D);
  padding: 30px;
  border-radius: 4px;
}

.footer-upper__brochure--gold h3 {
  color: #1a1a1a;
}

.footer-upper__brochure--gold p {
  color: #333;
}

.footer-upper__link {
  color: var(--color-gold, #DEB34D);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-upper__link:hover {
  color: var(--color-gold-light, #F2DA84);
}

.footer-upper__link--dark {
  color: #1a1a1a;
  text-decoration: underline;
}

.footer-upper__link--dark:hover {
  color: #333;
}

@media (max-width: 768px) {
  .footer-upper__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-upper__input-row {
    flex-direction: column;
  }
  
  .footer-upper__input-row button {
    width: 100%;
  }
}

/* Footer Main */
.footer {
  position: relative;
  padding-top: 40px;
  background: #000;
}

@media (max-width: 768px) {
  .grass-decoration {
    height: 80px;
  }
  
  .grass-decoration img {
    height: 100px;
    top: -80px;
  }
}

/* ==========================================================================
   12. UTILITIES
   ========================================================================== */

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text colors */
.text-gold { color: var(--color-gold-deep); }
.text-gold-light { color: var(--color-gold-light); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-secondary); }

/* Background colors */
.bg-dark { background-color: var(--color-bg-dark); }
.bg-light { background-color: var(--color-bg-light); }
.bg-navy { background-color: var(--color-navy-deep); }
.bg-white { background-color: var(--color-white); }

/* Spacing utilities */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }

/* Display utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Visually hidden (for accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Prevent scroll when modal/nav is open */
body.no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   13. RESPONSIVE - TABLET (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
  }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }

  .header__nav {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery--masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .gallery__item--tall,
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item--wide {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ==========================================================================
   14. RESPONSIVE - MOBILE (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 1.75rem;
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.5rem;
    --container-padding: var(--space-4);
  }

  .section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5,
  .grid--6 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
  }

  .hero__content {
    padding: var(--space-10) var(--container-padding);
  }

  .hero__title {
    font-size: var(--font-size-3xl);
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .category-card__image {
    width: 80px;
    height: 80px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery--masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ==========================================================================
   15. MOBILE NAVIGATION OVERLAY
   ========================================================================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background-color: var(--color-purple-dark);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-xl);
  color: var(--color-off-white);
}

.mobile-nav__links {
  padding: var(--space-4);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-4);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-off-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__link:hover {
  color: var(--color-gold-light);
}

/* Mobile nav auth buttons */
.mobile-nav__auth {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile nav accordion */
.mobile-nav__accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-4);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-off-white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-nav__accordion-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.mobile-nav__accordion-trigger.active svg {
  transform: rotate(180deg);
}

.mobile-nav__accordion-content {
  display: none;
  padding: 0 var(--space-4) var(--space-4);
}

.mobile-nav__accordion-content.open {
  display: block;
}

.mobile-nav__subheading {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple-muted);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.mobile-nav__subheading:first-child {
  margin-top: 0;
}

.mobile-nav__sublink {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  color: var(--color-grey-mid);
  transition: color var(--transition-fast);
}

.mobile-nav__sublink:hover {
  color: var(--color-gold-light);
}

/* ==========================================================================
   16. FORMS
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-navy-deep);
  box-shadow: 0 0 0 3px rgba(31, 53, 86, 0.1);
}

.form-input::placeholder {
  color: var(--color-grey-mid);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   17. PAGE TEMPLATES
   ========================================================================== */

/* Page Header */
.page-header {
  padding: var(--space-16) 0 var(--space-12);
  background-color: var(--color-bg-light);
  text-align: center;
}

.page-header--dark {
  background-color: var(--color-purple-dark);
  color: var(--color-white);
}

.page-header__title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-2);
}

.page-header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-grey-dark);
}

.page-header--dark .page-header__subtitle {
  color: var(--color-off-white);
}

/* Support/Portal Cards */
.support-card,
.portal-card {
  display: block;
  padding: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-base);
}

.support-card:hover,
.portal-card:hover {
  border-color: var(--color-gold-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.support-card__icon,
.portal-card__icon {
  font-size: var(--font-size-3xl);
  color: var(--color-gold-deep);
  margin-bottom: var(--space-4);
}

.support-card__title,
.portal-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}

.support-card__desc,
.portal-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-grey-dark);
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: var(--space-6);
}

.feature-card__icon {
  font-size: var(--font-size-3xl);
  color: var(--color-gold-deep);
  margin-bottom: var(--space-4);
}

/* Download Categories */
.download-category {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-grey-light);
}

.download-category h3 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.download-category h3 i {
  color: var(--color-gold-deep);
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-list li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-grey-light);
}

.download-list li:last-child {
  border-bottom: none;
}

.download-list a {
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.download-list a:hover {
  color: var(--color-gold-deep);
}

/* Calculator */
.calculator-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.calculator-result {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-grey-light);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.result-item {
  text-align: center;
  padding: var(--space-4);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-sm);
}

.result-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-grey-dark);
  margin-bottom: var(--space-1);
}

.result-value {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.calculator-recommendation {
  padding: var(--space-4);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-sm);
  text-align: center;
}

/* Info Box */
.info-box {
  background: var(--color-bg-light);
  padding: var(--space-6);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-gold-deep);
}

.info-box h3 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.info-box ul {
  margin: 0;
  padding-left: var(--space-6);
}

.info-box li {
  margin-bottom: var(--space-2);
}

/* Success/Error Messages */
.success-message,
.error-message {
  padding: var(--space-6);
  border-radius: var(--border-radius-md);
  text-align: center;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
}

.success-message i,
.error-message i {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
  display: block;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

/* Stat Cards */
.stat-card {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--border-radius-md);
  text-align: center;
  border: 1px solid var(--color-grey-light);
}

.stat-card__value {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gold-deep);
  margin-bottom: var(--space-1);
}

.stat-card__label {
  font-size: var(--font-size-sm);
  color: var(--color-grey-dark);
}

/* Order List */
.order-list {
  border: 1px solid var(--color-grey-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-grey-light);
  transition: background var(--transition-fast);
}

.order-item:last-child {
  border-bottom: none;
}

.order-item:hover {
  background: var(--color-bg-light);
}

.order-item__ref {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.order-item__date {
  font-size: var(--font-size-sm);
  color: var(--color-grey-dark);
  margin-left: var(--space-3);
}

.order-item__amount {
  font-weight: var(--font-weight-semibold);
}

/* Orders Table */
.orders-table-wrapper {
  overflow-x: auto;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-grey-light);
}

.orders-table th {
  background: var(--color-bg-light);
  font-weight: var(--font-weight-semibold);
}

.orders-table__items {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
}

.status-badge--paid {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
}

.status-badge--pending {
  background: rgba(234, 179, 8, 0.1);
  color: var(--color-warning);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: var(--space-16);
}

.empty-state i {
  font-size: 4rem;
  color: var(--color-grey-mid);
  margin-bottom: var(--space-4);
}

.empty-state h3 {
  margin-bottom: var(--space-2);
}

.empty-state p {
  color: var(--color-grey-dark);
  margin-bottom: var(--space-6);
}

/* Address Cards */
.address-card {
  background: var(--color-white);
  padding: var(--space-6);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--border-radius-md);
}

.address-card__content {
  margin-bottom: var(--space-4);
}

.address-card__content p {
  margin-bottom: var(--space-1);
}

.address-card__actions {
  display: flex;
  gap: var(--space-2);
}

.address-card--add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  color: var(--color-grey-dark);
  transition: var(--transition-base);
}

.address-card--add:hover {
  border-color: var(--color-gold-deep);
  color: var(--color-gold-deep);
}

.address-card--add i {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
}

/* Quote Builder */
.quote-builder {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.quote-item {
  padding: var(--space-4);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   18. PRINT STYLES
   ========================================================================== */

@media print {
  .header,
  .footer,
  .mobile-nav {
    display: none;
  }

  .section {
    padding: var(--space-4) 0;
  }

  a {
    color: inherit;
    text-decoration: underline;
  }
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */

.trust-badges {
  background: var(--color-white);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-grey-light);
}

.trust-badges__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.trust-badge__icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black-charcoal);
  border-radius: 50%;
}

.trust-badge__icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(45%) saturate(456%) hue-rotate(6deg) brightness(95%) contrast(89%);
}

.trust-badge__content {
  display: flex;
  flex-direction: column;
}

.trust-badge__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.trust-badge__desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .trust-badges__grid {
    justify-content: center;
  }
  
  .trust-badge {
    flex: 0 0 calc(50% - var(--space-4));
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION HEADER SPLIT LAYOUT
   ========================================================================== */

.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-10);
}

.section-header--split .section-header__title {
  margin-bottom: 0;
}

.section-header__link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--color-text-primary);
  padding-bottom: 2px;
  transition: color var(--transition-base);
}

.section-header__link:hover {
  color: var(--color-gold-deep);
  border-color: var(--color-gold-deep);
}

/* ==========================================================================
   LARGE CATEGORY CARDS
   ========================================================================== */

.category-card--large .category-card__image {
  width: 220px;
  height: 220px;
}

.category-card__subtitle {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
}

@media (max-width: 992px) {
  .category-card--large .category-card__image {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .category-card--large .category-card__image {
    width: 140px;
    height: 140px;
  }
  
  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

/* ==========================================================================
   18b. HOMEPAGE SECTIONS
   ========================================================================== */

/* Crafted to Last */
.hp-crafted { background-color: var(--color-gold); }
.hp-crafted__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.hp-crafted__eyebrow { color: #555; }
.hp-crafted__title { text-align: left; color: #222; }
.hp-crafted__text { color: #333; margin-bottom: var(--space-6); }
.hp-crafted__features { color: #333; margin-bottom: var(--space-8); list-style: none; padding: 0; }
.hp-crafted__features li { margin-bottom: var(--space-3); display: flex; align-items: flex-start; }
.hp-crafted__features li i { margin-right: 10px; margin-top: 3px; }
.hp-crafted__features li span { font-size: 0.9em; }
.hp-crafted__btn { border-color: #333; color: #333; }
.hp-crafted__image { border-radius: var(--border-radius-md); width: 100%; }
@media (max-width: 768px) {
  .hp-crafted__grid { grid-template-columns: 1fr; }
}

/* Inspiration Gallery */
.hp-gallery { background-color: #fff; }

/* Lighting Design Service */
.hp-design { padding: 0; background: #1a2744; }
.hp-design__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.hp-design__content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.hp-design__title { color: #fff; font-size: 2.2rem; margin-bottom: 20px; font-weight: 600; }
.hp-design__text { color: #ccc; margin-bottom: 30px; line-height: 1.7; }
.hp-design__features { list-style: none; padding: 0; margin-bottom: 30px; }
.hp-design__features li { color: #fff; margin-bottom: 12px; display: flex; align-items: center; }
.hp-design__features li i { color: var(--color-gold); margin-right: 12px; }
.hp-design__btn { background: transparent; border: 2px solid var(--color-gold); color: var(--color-gold); padding: 12px 24px; display: inline-flex; align-items: center; gap: 8px; }
.hp-design__btn:hover { background: var(--color-gold); color: #1a2744; }
.hp-design__image-wrap { position: relative; overflow: hidden; }
.hp-design__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hp-design__price-badge { position: absolute; top: 20px; right: 20px; background: var(--color-gold); padding: 10px 15px; text-align: center; }
.hp-design__price-badge span { display: block; font-size: 0.75rem; color: #333; }
@media (max-width: 768px) {
  .hp-design__grid { grid-template-columns: 1fr; }
  .hp-design__content { padding: 40px 20px; }
}

/* Testimonials */
.hp-testimonials { background: #6B5B7A; padding: 80px 0; }
.hp-testimonial__inner { text-align: center; max-width: 800px; margin: 0 auto; }
.hp-testimonial__quote-mark { font-size: 3rem; color: var(--color-gold); margin-bottom: 20px; }
.hp-testimonial__text { color: #fff; font-size: 1.2rem; line-height: 1.8; margin-bottom: 30px; font-style: italic; }
.hp-testimonial__author { color: #fff; font-weight: 600; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.hp-testimonial__role { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 15px; }
.hp-testimonial__stars { color: var(--color-gold); font-size: 1.2rem; }
.hp-testimonial__controls { display: flex; justify-content: center; align-items: center; margin-top: 30px; gap: 20px; }
.hp-testimonial__arrow { background: rgba(255,255,255,0.2); border: none; width: 40px; height: 40px; border-radius: 50%; color: #fff; cursor: pointer; font-size: 18px; transition: background 0.2s; }
.hp-testimonial__arrow:hover { background: rgba(255,255,255,0.3); }
.hp-testimonial__dots { display: flex; gap: 8px; }
.hp-testimonial__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; border: none; padding: 0; transition: background 0.2s; }
.hp-testimonial__dot.active { background: var(--color-gold); }

.testimonial-slide { display: none; }
.testimonial-slide:first-child { display: block; }
.testimonial-slide.active { display: block; }

/* Resource Hub */
.hp-resources { background: #f8f8f8; }
.hp-resource-card { background: #f0ede8; padding: 30px; border-radius: 8px; }
.hp-resource-card__icon { width: 50px; height: 50px; background: #1F3556; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.hp-resource-card__icon i { color: var(--color-gold); font-size: 1.2rem; }
.hp-resource-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.hp-resource-card p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.hp-resource-card__link { color: #1F3556; font-weight: 600; text-decoration: underline; }
.hp-resource-card__link:hover { color: var(--color-gold-deep); }

/* General Page Layout (for rebuilt content pages) */
.page-hero { position: relative; padding: 80px 0 60px; text-align: center; color: #fff; overflow: hidden; }
.page-hero--dark { background: var(--color-purple-dark); }
.page-hero--navy { background: var(--color-navy-deep); }
.page-hero__title { font-family: 'Playfair Display', serif; font-size: var(--font-size-4xl); font-weight: 500; margin-bottom: var(--space-4); }
.page-hero__subtitle { font-size: var(--font-size-lg); color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

.page-section { padding: 60px 0; }
.page-section--light { background: var(--color-off-white); }
.page-section--white { background: #fff; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.about-grid--reverse { direction: rtl; }
.about-grid--reverse > * { direction: ltr; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: var(--font-size-xl); margin-bottom: var(--space-4); }
.about-text p { color: var(--color-text-secondary); line-height: 1.8; margin-bottom: var(--space-4); }
.about-image { border-radius: var(--border-radius-md); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); text-align: center; }
.about-value__icon { width: 60px; height: 60px; background: var(--color-navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); }
.about-value__icon i { color: var(--color-gold-deep); font-size: 1.4rem; }
.about-value h4 { font-size: var(--font-size-base); font-weight: 600; margin-bottom: var(--space-2); }
.about-value p { font-size: var(--font-size-sm); color: var(--color-text-secondary); }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.contact-form label { display: block; font-size: var(--font-size-sm); font-weight: 500; margin-bottom: var(--space-2); color: var(--color-text-primary); }
.contact-form input,
.contact-form textarea,
.contact-form select { width: 100%; padding: 12px 16px; border: 1px solid var(--color-grey-light); border-radius: 6px; font-size: var(--font-size-base); transition: border-color 0.2s; margin-bottom: var(--space-4); font-family: 'Inter', sans-serif; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--color-navy-deep); outline: none; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button { padding: 14px 32px; background: var(--color-navy-deep); color: #fff; border: none; border-radius: 6px; font-size: var(--font-size-base); font-weight: 600; cursor: pointer; transition: background 0.2s; }
.contact-form button:hover { background: var(--color-purple-dark); }
.contact-info-card { background: var(--color-off-white); border-radius: 8px; padding: var(--space-6); margin-bottom: var(--space-4); }
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: var(--font-size-lg); margin-bottom: var(--space-4); }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: var(--space-3); }
.contact-info-item i { color: var(--color-navy-deep); margin-top: 3px; }
.contact-info-item a { color: var(--color-navy-deep); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-map { border-radius: 8px; overflow: hidden; height: 250px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Design Service Page */
.ds-hero { position: relative; min-height: 400px; display: flex; align-items: center; overflow: hidden; }
.ds-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ds-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ds-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,18,32,0.85) 0%, rgba(26,18,32,0.4) 100%); z-index: 1; }
.ds-hero__content { position: relative; z-index: 2; max-width: 650px; padding: var(--space-16) var(--container-padding); }
.ds-hero__title { font-family: 'Playfair Display', serif; font-size: var(--font-size-4xl); color: #fff; font-weight: 500; line-height: 1.15; margin-bottom: var(--space-4); }
.ds-hero__text { color: rgba(255,255,255,0.8); font-size: var(--font-size-lg); margin-bottom: var(--space-8); line-height: 1.6; }
.ds-hero__cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.ds-process { text-align: center; }
.ds-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); margin-top: var(--space-8); }
.ds-process__step { text-align: center; }
.ds-process__icon { width: 64px; height: 64px; background: var(--color-navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); }
.ds-process__icon i { color: var(--color-gold-deep); font-size: 1.4rem; }
.ds-process__step h4 { font-size: var(--font-size-base); font-weight: 600; margin-bottom: var(--space-2); }
.ds-process__step p { font-size: var(--font-size-sm); color: var(--color-text-secondary); line-height: 1.6; }

.ds-form-section { background: #fff; }
.ds-form { max-width: 800px; margin: 0 auto; }
.ds-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.ds-form__full { grid-column: 1 / -1; }
.ds-form label { display: block; font-size: var(--font-size-sm); font-weight: 500; margin-bottom: 6px; color: var(--color-text-primary); }
.ds-form input[type="text"],
.ds-form input[type="email"],
.ds-form input[type="tel"],
.ds-form input[type="number"],
.ds-form textarea,
.ds-form select { width: 100%; padding: 12px 16px; border: 1px solid var(--color-grey-light); border-radius: 6px; font-size: var(--font-size-base); font-family: 'Inter', sans-serif; transition: border-color 0.2s; }
.ds-form input:focus,
.ds-form textarea:focus,
.ds-form select:focus { border-color: var(--color-navy-deep); outline: none; }
.ds-form textarea { min-height: 100px; resize: vertical; }
.ds-form__upload { grid-column: 1 / -1; border: 2px dashed var(--color-grey-light); border-radius: 8px; padding: 30px; text-align: center; cursor: pointer; transition: border-color 0.2s; }
.ds-form__upload:hover { border-color: var(--color-navy-deep); }
.ds-form__upload i { font-size: 2rem; color: var(--color-grey-mid); margin-bottom: 10px; }
.ds-form__upload p { color: var(--color-text-secondary); font-size: var(--font-size-sm); margin: 0; }
.ds-form__submit { grid-column: 1 / -1; margin-top: var(--space-4); }
.ds-form__submit button { width: 100%; padding: 16px; background: var(--color-gold-deep); color: var(--color-navy-deep); border: none; border-radius: 6px; font-size: var(--font-size-base); font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; }
.ds-form__submit button:hover { background: var(--color-gold); }

.ds-gallery__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3); }
.ds-gallery__thumb { border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.ds-gallery__thumb:hover, .ds-gallery__thumb.active { border-color: var(--color-navy-deep); }
.ds-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.ds-gallery__main { border-radius: 8px; overflow: hidden; margin-bottom: var(--space-4); }
.ds-gallery__main img { width: 100%; max-height: 500px; object-fit: contain; }

.ds-alerts { padding-top: 20px; }
.ds-alert { padding: 12px 16px; border-radius: 6px; margin-bottom: var(--space-4); font-size: var(--font-size-sm); }
.ds-alert--success { background: #d4edda; color: #155724; }
.ds-alert--error { background: #f8d7da; color: #721c24; }

@media (max-width: 768px) {
  .ds-process__grid { grid-template-columns: repeat(2, 1fr); }
  .ds-form__grid { grid-template-columns: 1fr; }
  .ds-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .ds-hero__title { font-size: var(--font-size-3xl); }
}

/* ==========================================================================
   CUSTOMER JOURNEY PAGES (Basket, Checkout, Order Summary, Login, Signup)
   ========================================================================== */

/* Shared page header for journey pages */
.cj-page-header { background: var(--color-purple-dark); padding: 40px 0; text-align: center; }
.cj-page-header h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: var(--font-size-3xl); margin: 0; }
.cj-page-header p { color: rgba(255,255,255,0.7); margin-top: 8px; }

/* Basket Table */
.basket-section { padding: 40px 0; }
.basket-table { width: 100%; border-collapse: collapse; }
.basket-table thead { background: var(--color-off-white); }
.basket-table th { padding: 12px 16px; text-align: left; font-size: var(--font-size-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-secondary); border-bottom: 2px solid var(--color-grey-light); }
.basket-table td { padding: 16px; border-bottom: 1px solid var(--color-grey-light); vertical-align: middle; }
.basket-table__img { width: 80px; height: 80px; object-fit: contain; border-radius: 4px; border: 1px solid var(--color-grey-light); }
.basket-table__desc { font-size: var(--font-size-sm); }
.basket-table__desc a { color: var(--color-text-primary); text-decoration: none; }
.basket-table__desc a:hover { color: var(--color-navy-deep); }
.basket-table__qty { width: 70px; }
.basket-table__qty input { width: 60px; padding: 6px 8px; border: 1px solid var(--color-grey-light); border-radius: 4px; text-align: center; font-size: var(--font-size-sm); }
.basket-table__actions { display: flex; gap: 6px; align-items: center; }

/* Basket Footer */
.basket-footer { display: flex; justify-content: flex-end; align-items: center; gap: var(--space-4); padding: 24px 0; border-top: 2px solid var(--color-grey-light); }
.basket-footer__total { font-size: var(--font-size-lg); font-weight: 700; }
.basket-footer__vat { font-size: var(--font-size-sm); color: var(--color-text-secondary); }

/* Production Timeline Banner */
.timeline-banner { background: #f0f7ff; border: 1px solid #b3d4fc; border-radius: 6px; padding: 16px 20px; margin: 20px 0; }
.timeline-banner p { margin: 0; font-size: var(--font-size-sm); line-height: 1.6; }
.timeline-banner p + p { margin-top: 4px; }
.timeline-banner a { color: #0066cc; }
.timeline-banner__muted { color: #666; font-size: 0.85em; }

/* Checkout Sections */
.checkout-section { margin-bottom: 32px; }
.checkout-section__header { background: var(--color-off-white); padding: 12px 16px; font-weight: 600; font-size: var(--font-size-base); border-left: 3px solid var(--color-navy-deep); margin-bottom: 16px; }
.checkout-section__header--billing { border-left-color: var(--color-gold-deep); }
.checkout-section__header--shipping { border-left-color: #0066cc; }
.checkout-section__header--payment { border-left-color: #28a745; }
.checkout-section__body { padding: 0 16px; }

/* Address Cards */
.address-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-4); margin: 16px 0; }
.address-card { border: 1px solid var(--color-grey-light); border-radius: 6px; padding: 16px; background: #fff; transition: border-color 0.2s; }
.address-card--selected, .address-card:hover { border-color: var(--color-navy-deep); }
.address-card__name { font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.address-card__name input[type="radio"] { margin: 0; }
.address-card__line { font-size: var(--font-size-sm); color: var(--color-text-secondary); line-height: 1.5; }

/* Payment Options */
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--color-grey-light); border-radius: 6px; margin-bottom: 8px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.payment-option:hover { border-color: var(--color-navy-deep); }
.payment-option--credit { background: #e8f5e9; border-color: #4CAF50; }
.payment-option input[type="radio"] { margin: 0; flex-shrink: 0; }
.payment-option__label { font-weight: 600; }
.payment-option__meta { margin-left: auto; font-size: var(--font-size-sm); color: var(--color-text-secondary); }
.payment-option__meta--green { color: #2e7d32; }

/* Shipping Option */
.shipping-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--color-grey-light); border-radius: 6px; }
.shipping-option__logo { height: 30px; }

/* Checkout Submit */
.checkout-submit { text-align: right; margin-top: 32px; padding-top: 24px; border-top: 2px solid var(--color-grey-light); }

/* Error messages */
.cj-error { color: #dc3545; background: #f8d7da; padding: 10px 16px; border-radius: 6px; margin-bottom: 12px; font-size: var(--font-size-sm); }

/* Order Summary */
.order-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: 32px; }
.order-address-card { border: 1px solid var(--color-grey-light); border-radius: 6px; padding: 20px; }
.order-address-card h3 { font-size: var(--font-size-base); font-weight: 600; margin-bottom: 12px; color: var(--color-navy-deep); }
.order-address-card p { margin: 0; line-height: 1.6; font-size: var(--font-size-sm); }
.order-totals { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; margin: 24px 0; }
.order-totals__row { display: flex; gap: 24px; font-size: var(--font-size-sm); }
.order-totals__row dt { min-width: 100px; text-align: right; font-weight: 400; color: var(--color-text-secondary); }
.order-totals__row dd { min-width: 80px; text-align: right; font-weight: 600; margin: 0; }
.order-totals__grand { background: var(--color-off-white); padding: 12px 20px; border-radius: 6px; }
.order-totals__grand dt, .order-totals__grand dd { font-size: var(--font-size-lg); color: var(--color-navy-deep); }
.order-credit-banner { background: #e8f5e9; border: 1px solid #4CAF50; border-radius: 6px; padding: 16px 20px; margin-bottom: 16px; }
.order-credit-banner strong { color: #2e7d32; }
.order-credit-banner p { margin: 8px 0 0; color: #666; font-size: var(--font-size-sm); }

/* Login / Signup Forms */
.auth-section { padding: 60px 0; }
.auth-card { max-width: 480px; margin: 0 auto; background: #fff; border: 1px solid var(--color-grey-light); border-radius: 8px; padding: 40px; }
.auth-card h2 { font-family: 'Playfair Display', serif; text-align: center; margin-bottom: 8px; }
.auth-card__subtitle { text-align: center; color: var(--color-text-secondary); margin-bottom: 32px; font-size: var(--font-size-sm); }
.auth-card .form-group { margin-bottom: 20px; }
.auth-card label { display: block; font-size: var(--font-size-sm); font-weight: 500; margin-bottom: 6px; }
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="tel"],
.auth-card select { width: 100%; padding: 10px 14px; border: 1px solid var(--color-grey-light); border-radius: 6px; font-size: var(--font-size-base); font-family: 'Inter', sans-serif; transition: border-color 0.2s; box-sizing: border-box; }
.auth-card input:focus,
.auth-card select:focus { border-color: var(--color-navy-deep); outline: none; }
.auth-card__error { color: #dc3545; font-size: var(--font-size-sm); margin-top: 4px; }
.auth-card__submit { width: 100%; padding: 12px; background: var(--color-navy-deep); color: #fff; border: none; border-radius: 6px; font-size: var(--font-size-base); font-weight: 600; cursor: pointer; transition: background 0.2s; }
.auth-card__submit:hover { background: var(--color-purple-dark); }
.auth-card__footer { text-align: center; margin-top: 24px; font-size: var(--font-size-sm); color: var(--color-text-secondary); }
.auth-card__footer a { color: var(--color-navy-deep); font-weight: 500; }

/* Signup form (wider) */
.auth-card--wide { max-width: 640px; }
.auth-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-card__full { grid-column: 1 / -1; }

/* Password reset collapse */
.auth-reset { max-width: 480px; margin: 16px auto 0; text-align: center; }
.auth-reset a { color: var(--color-navy-deep); font-weight: 500; }

/* Orders Table */
.orders-table-wrap { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table thead { background: var(--color-off-white); }
.orders-table th { padding: 12px 16px; text-align: left; font-size: var(--font-size-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-secondary); border-bottom: 2px solid var(--color-grey-light); }
.orders-table td { padding: 14px 16px; border-bottom: 1px solid var(--color-grey-light); font-size: var(--font-size-sm); }
.orders-table__items { max-width: 250px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.status-badge--paid { background: #d4edda; color: #155724; }
.status-badge--pending { background: #fff3cd; color: #856404; }
.status-badge--cancelled { background: #f8d7da; color: #721c24; }
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 3rem; color: var(--color-grey-mid); margin-bottom: 16px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--color-text-secondary); margin-bottom: 24px; }

/* ==========================================================================
   TRADE PORTAL PAGES
   ========================================================================== */
.portal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.portal-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; border: 1px solid var(--color-grey-light); border-radius: 8px; background: #fff; text-decoration: none; color: var(--color-text-primary); transition: border-color 0.2s, box-shadow 0.2s; }
.portal-card:hover { border-color: var(--color-navy-deep); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.portal-card__icon { width: 56px; height: 56px; background: var(--color-navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.portal-card__icon i { color: var(--color-gold-deep); font-size: 1.3rem; }
.portal-card__title { font-weight: 600; margin-bottom: 8px; }
.portal-card__desc { font-size: var(--font-size-sm); color: var(--color-text-secondary); line-height: 1.5; }

/* Dashboard */
.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-bottom: var(--space-12); }
.stat-card { border: 1px solid var(--color-grey-light); border-radius: 8px; padding: 24px; text-align: center; background: #fff; }
.stat-card__value { display: block; font-size: var(--font-size-2xl); font-weight: 700; color: var(--color-navy-deep); margin-bottom: 4px; }
.stat-card__label { font-size: var(--font-size-sm); color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.dashboard-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.dashboard-cols__heading { margin-bottom: var(--space-6); }
.dashboard-cols__cta { margin-top: var(--space-4); }
.order-list { display: flex; flex-direction: column; gap: 8px; }
.order-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border: 1px solid var(--color-grey-light); border-radius: 6px; text-decoration: none; color: var(--color-text-primary); transition: border-color 0.2s; }
.order-item:hover { border-color: var(--color-navy-deep); }
.order-item__ref { font-weight: 600; }
.order-item__date { font-size: var(--font-size-sm); color: var(--color-text-secondary); margin-left: 12px; }
.order-item__amount { font-weight: 600; }
.quick-actions { display: flex; flex-direction: column; gap: var(--space-3); }
.quick-actions__btn { justify-content: center; }

.trade-support { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.trade-support__discount { text-align: center; }
.trade-support__discount-label { color: var(--color-text-secondary); margin-bottom: var(--space-2); font-size: var(--font-size-sm); }
.trade-support__discount-value { font-size: var(--font-size-4xl); font-weight: 700; color: var(--color-gold-deep); }

/* ==========================================================================
   CABLE CALCULATOR
   ========================================================================== */
.calculator-card { background: #fff; border: 1px solid var(--color-grey-light); border-radius: 8px; padding: 32px; }
.calculator-card .form-group { margin-bottom: 20px; }
.calculator-card label { display: block; font-size: var(--font-size-sm); font-weight: 500; margin-bottom: 6px; }
.calculator-card input,
.calculator-card select { width: 100%; padding: 10px 14px; border: 1px solid var(--color-grey-light); border-radius: 6px; font-size: var(--font-size-base); font-family: 'Inter', sans-serif; transition: border-color 0.2s; box-sizing: border-box; }
.calculator-card input:focus,
.calculator-card select:focus { border-color: var(--color-navy-deep); outline: none; }
.calculator-card .form-help { display: block; font-size: var(--font-size-xs); color: var(--color-text-secondary); margin-top: 4px; }
.calculator-result { margin-top: 32px; padding-top: 32px; border-top: 2px solid var(--color-grey-light); }
.calculator-result h3 { margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-bottom: 20px; }
.result-item { text-align: center; padding: 16px; background: var(--color-off-white); border-radius: 6px; }
.result-item__label { display: block; font-size: var(--font-size-xs); color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.result-item__value { display: block; font-size: var(--font-size-2xl); font-weight: 700; color: var(--color-navy-deep); }
.calculator-recommendation { padding: 16px; border-radius: 6px; background: var(--color-off-white); font-size: var(--font-size-sm); line-height: 1.6; }
.calculator-recommendation--good { background: #d4edda; color: #155724; }
.calculator-recommendation--ok { background: #fff3cd; color: #856404; }
.calculator-recommendation--bad { background: #f8d7da; color: #721c24; }
.info-box { background: var(--color-off-white); border-radius: 8px; padding: 24px; }
.info-box h3 { margin-bottom: 12px; font-size: var(--font-size-base); }
.info-box h3 i { color: var(--color-navy-deep); margin-right: 8px; }
.info-box ul { list-style: none; padding: 0; margin: 0; }
.info-box li { padding: 8px 0; border-bottom: 1px solid var(--color-grey-light); font-size: var(--font-size-sm); line-height: 1.5; }
.info-box li:last-child { border-bottom: none; }

/* ==========================================================================
   DOWNLOADS HUB
   ========================================================================== */
.downloads-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.download-category { background: #fff; border: 1px solid var(--color-grey-light); border-radius: 8px; padding: 28px; }
.download-category h3 { font-size: var(--font-size-base); font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--color-gold-deep); }
.download-category h3 i { color: var(--color-navy-deep); margin-right: 8px; width: 20px; text-align: center; }
.download-list { list-style: none; padding: 0; margin: 0; }
.download-list li { border-bottom: 1px solid var(--color-grey-light); }
.download-list li:last-child { border-bottom: none; }
.download-list a { display: flex; align-items: center; gap: 10px; padding: 10px 0; color: var(--color-text-primary); text-decoration: none; font-size: var(--font-size-sm); transition: color 0.2s; }
.download-list a:hover { color: var(--color-navy-deep); }
.download-list a::before { content: '\f019'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 11px; color: var(--color-grey-mid); flex-shrink: 0; }
.downloads-trade-header { margin-bottom: var(--space-6); }
.downloads-trade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }

/* ==========================================================================
   BROCHURE REQUEST
   ========================================================================== */
.brochure-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); max-width: 900px; margin: 0 auto; align-items: start; }
.brochure-preview { text-align: center; }
.brochure-preview img { border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); margin-bottom: var(--space-6); max-width: 100%; }
.brochure-preview h3 { margin-bottom: 8px; }
.brochure-preview p { color: var(--color-text-secondary); margin-bottom: var(--space-4); font-size: var(--font-size-sm); }
.brochure-form { background: #fff; border: 1px solid var(--color-grey-light); border-radius: 8px; padding: 32px; }
.brochure-form h3 { margin-bottom: 8px; }
.brochure-form > p { color: var(--color-text-secondary); margin-bottom: var(--space-6); font-size: var(--font-size-sm); }
.brochure-form .form-group { margin-bottom: 16px; }
.brochure-form label { display: block; font-size: var(--font-size-sm); font-weight: 500; margin-bottom: 6px; }
.brochure-form input { width: 100%; padding: 10px 14px; border: 1px solid var(--color-grey-light); border-radius: 6px; font-size: var(--font-size-base); font-family: 'Inter', sans-serif; transition: border-color 0.2s; box-sizing: border-box; }
.brochure-form input:focus { border-color: var(--color-navy-deep); outline: none; }
.brochure-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brochure-success { text-align: center; padding: 40px 20px; }
.brochure-success i { font-size: 3rem; color: #28a745; margin-bottom: 16px; }
.brochure-success h2 { margin-bottom: 12px; }
.brochure-success p { color: var(--color-text-secondary); }

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */
.case-studies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.case-card { border: 1px solid var(--color-grey-light); border-radius: 8px; overflow: hidden; background: #fff; text-decoration: none; color: var(--color-text-primary); transition: box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.case-card:hover { border-color: var(--color-navy-deep); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.case-card__img { width: 100%; height: 220px; object-fit: cover; }
.case-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.case-card__title { font-family: 'Playfair Display', serif; font-size: var(--font-size-lg); margin-bottom: 8px; }
.case-card__date { font-size: var(--font-size-xs); color: var(--color-text-secondary); margin-bottom: 12px; }
.case-card__cta { margin-top: auto; color: var(--color-navy-deep); font-weight: 600; font-size: var(--font-size-sm); }
.case-study-article { max-width: 800px; margin: 0 auto; }
.case-study-article img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.case-study-article h2, .case-study-article h3 { font-family: 'Playfair Display', serif; margin-top: 32px; margin-bottom: 12px; }
.case-study-article p { line-height: 1.8; margin-bottom: 16px; }

/* ==========================================================================
   DARK SKIES / CONTENT PAGES
   ========================================================================== */
.content-page { max-width: 800px; margin: 0 auto; }
.content-page h2, .content-page h3 { font-family: 'Playfair Display', serif; margin-top: 32px; margin-bottom: 12px; }
.content-page p { line-height: 1.8; margin-bottom: 16px; }
.content-page ul { margin-bottom: 20px; padding-left: 20px; }
.content-page li { line-height: 1.8; margin-bottom: 8px; }
.content-page a { color: var(--color-navy-deep); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); margin: 32px 0; }
.video-card { border: 1px solid var(--color-grey-light); border-radius: 8px; overflow: hidden; background: #fff; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.video-card__caption { padding: 12px 16px; font-size: var(--font-size-sm); color: var(--color-text-secondary); }
.resource-links { display: flex; flex-direction: column; gap: 8px; margin: 20px 0; }
.resource-links a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--color-grey-light); border-radius: 6px; text-decoration: none; color: var(--color-text-primary); font-size: var(--font-size-sm); transition: border-color 0.2s; }
.resource-links a:hover { border-color: var(--color-navy-deep); color: var(--color-navy-deep); }
.resource-links a i { color: var(--color-navy-deep); }

/* ==========================================================================
   GUIDES & VIDEOS (HOW-TO)
   ========================================================================== */
.guides-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.guide-card { border: 1px solid var(--color-grey-light); border-radius: 8px; overflow: hidden; background: #fff; text-decoration: none; color: var(--color-text-primary); transition: border-color 0.2s, box-shadow 0.2s; }
.guide-card:hover { border-color: var(--color-navy-deep); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.guide-card iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; pointer-events: none; }
.guide-card__body { padding: 16px; }
.guide-card__title { font-weight: 600; margin-bottom: 4px; }
.guide-card__desc { font-size: var(--font-size-sm); color: var(--color-text-secondary); }

/* ==========================================================================
   DASHBOARD LAYOUT (sidebar + content)
   ========================================================================== */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 0; min-height: 60vh; }

/* Sidebar */
.dash-sidebar { background: var(--color-purple-dark); color: #fff; padding: 0; display: flex; flex-direction: column; }
.dash-sidebar__user { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
.dash-sidebar__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--color-navy-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.dash-sidebar__avatar i { font-size: 1.3rem; color: var(--color-gold-deep); }
.dash-sidebar__name { font-weight: 600; font-size: var(--font-size-base); margin-bottom: 2px; }
.dash-sidebar__company { font-size: var(--font-size-xs); color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.dash-sidebar__badge { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 20px; background: var(--color-gold-deep); color: var(--color-purple-dark); font-weight: 600; }
.dash-sidebar__nav { flex: 1; padding: 12px 0; }
.dash-sidebar__link { display: flex; align-items: center; gap: 12px; padding: 10px 24px; color: rgba(255,255,255,0.75); text-decoration: none; font-size: var(--font-size-sm); transition: background 0.15s, color 0.15s; border-left: 3px solid transparent; }
.dash-sidebar__link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.dash-sidebar__link--active { color: #fff; background: rgba(255,255,255,0.08); border-left-color: var(--color-gold-deep); font-weight: 600; }
.dash-sidebar__link i { width: 18px; text-align: center; font-size: 14px; flex-shrink: 0; }
.dash-sidebar__footer { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.dash-sidebar__link--logout { color: rgba(255,255,255,0.5); }
.dash-sidebar__link--logout:hover { color: #ff6b6b; background: rgba(255,77,77,0.08); }

/* Dashboard content area */
.dash-content { padding: 32px 40px; background: var(--color-off-white); }
.dash-content__header { margin-bottom: 28px; }
.dash-content__header h1 { font-family: 'Playfair Display', serif; font-size: var(--font-size-2xl); margin-bottom: 4px; }
.dash-content__header p { color: var(--color-text-secondary); font-size: var(--font-size-sm); }

/* Mobile toggle */
.dash-sidebar__toggle { display: none; }

/* Order progress bar (replaces bgcolor) */
.progress-bar-wrap { width: 100%; background: var(--color-grey-light); border-radius: 4px; height: 8px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 4px; transition: width 0.3s; }
.progress-bar-fill--0 { background: #dc3545; }
.progress-bar-fill--25 { background: #fd7e14; }
.progress-bar-fill--50 { background: #ffc107; }
.progress-bar-fill--75 { background: #28a745; }
.progress-bar-fill--100 { background: #198754; }

/* Credit account status banners */
.credit-status { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: 8px; margin-bottom: 20px; background: var(--color-off-white); border: 1px solid var(--color-grey-light); }
.credit-status i { font-size: 28px; color: var(--color-text-secondary); flex-shrink: 0; }
.credit-status h3 { margin: 0 0 4px; font-size: var(--font-size-lg); }
.credit-status p { margin: 0; color: var(--color-text-secondary); font-size: var(--font-size-sm); }
.credit-status--active { background: #e8f5e9; border-color: #4CAF50; }
.credit-status--active i { color: #2e7d32; }
.credit-status--active h3 { color: #2e7d32; }
.credit-status--eligible { background: #e3f2fd; border-color: #2196F3; }
.credit-status--eligible i { color: #1565c0; }
.credit-status--eligible h3 { color: #1565c0; }

/* Info banners */
.info-banner { background: var(--color-off-white); border: 1px solid var(--color-grey-light); border-radius: 8px; padding: 16px 20px; }
.info-banner--gold { background: #fff8e6; border-color: #f0d68a; }

/* Form help text */
.form-help { display: block; font-size: var(--font-size-xs); color: var(--color-text-secondary); margin-top: 4px; }

@media (max-width: 768px) {
  .order-addresses { grid-template-columns: 1fr; }
  .auth-card__grid { grid-template-columns: 1fr; }
  .portal-cards { grid-template-columns: 1fr; }
  .trade-support { grid-template-columns: 1fr; }
  .basket-footer { flex-direction: column; align-items: flex-end; }
  .address-cards { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard-cols { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .downloads-trade-grid { grid-template-columns: 1fr; }
  .brochure-layout { grid-template-columns: 1fr; }
  .brochure-form__row { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-sidebar--open { display: flex; position: fixed; top: 0; left: 0; width: 280px; height: 100vh; z-index: 1000; box-shadow: 4px 0 24px rgba(0,0,0,0.3); }
  .dash-sidebar__toggle { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--color-navy-deep); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: var(--font-size-sm); margin-bottom: 16px; }
  .dash-content { padding: 20px 16px; }
}

/* ==========================================================================
   19. PRODUCT LISTING PAGE STYLES (formerly new-layout.css)
   ========================================================================== */

/* Product Listing Page Variables (legacy support) */
.products-page {
    --primary-gold: var(--color-gold-deep);
    --primary-dark: var(--color-purple-dark);
    --text-dark: var(--color-text-primary);
    --text-light: var(--color-text-secondary);
    --border-color: var(--color-grey-light);
    --bg-light: var(--color-bg-light);
}

/* Promo Banner */
.promo-banner {
    background: var(--color-gold-deep);
    color: #000;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}
.promo-banner a { color: #000; text-decoration: underline; margin-left: 10px; }
.promo-banner .close-btn { 
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    cursor: pointer; background: none; border: none; font-size: 18px;
}

/* Site Header (alternative style) */
.site-header {
    background: var(--color-purple-dark);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .logo img { height: 50px; }
.site-header nav { display: flex; gap: 30px; }
.site-header nav a { 
    color: #fff; text-decoration: none; font-size: 14px; 
    font-weight: 500; letter-spacing: 0.5px;
}
.site-header nav a:hover { color: var(--color-gold-deep); }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-right a { color: #fff; font-size: 18px; text-decoration: none; }
.header-right .cart-count {
    background: var(--color-gold-deep);
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -8px;
    left: -8px;
}

/* Category Hero Section */
.category-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../site_images/hero-outdoor-lighting.jpg') center/cover;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    color: #fff;
}
.category-hero .subtitle {
    color: var(--color-gold-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.category-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    margin: 0 0 15px 0;
}
.category-hero p {
    font-size: 16px;
    max-width: 500px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Breadcrumb Bar */
.breadcrumb-bar {
    background: #fff;
    padding: 15px 40px;
    border-bottom: 1px solid var(--color-grey-light);
    font-size: 13px;
}
.breadcrumb-bar a { color: var(--color-text-secondary); text-decoration: none; }
.breadcrumb-bar span { color: var(--color-text-primary); margin: 0 8px; }

/* Products Container Layout */
.products-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
}

/* Sidebar Filters */
.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
    padding-right: 40px;
}
.filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    cursor: pointer;
}
.filter-toggle i { font-size: 14px; }
.filter-count-label { margin-left: auto; }
.products-header__actions { display: flex; align-items: center; }
.filter-group {
    border-bottom: 1px solid var(--color-grey-light);
    padding: 15px 0;
}
.filter-group-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.filter-group-title i { font-size: 12px; color: var(--color-text-secondary); }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-secondary);
    cursor: pointer;
}
.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold-deep);
}

/* Products Grid */
.products-main { flex: 1; }
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.products-count { font-size: 13px; color: var(--color-text-secondary); }
.products-sort select {
    border: 1px solid var(--color-grey-light);
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
}
.view-toggle { display: flex; gap: 10px; margin-left: 15px; }
.view-toggle button {
    background: none;
    border: 1px solid var(--color-grey-light);
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 4px;
}
.view-toggle button.active { background: var(--color-purple-dark); color: #fff; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Product Card - Listing Page Variant */
.product-card--listing {
    background: #fff;
    border: 1px solid var(--color-grey-light);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.product-card--listing:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.product-card--listing a { text-decoration: none; color: inherit; }
.product-card--listing .product-image {
    position: relative;
    background: #fff;
    padding: 20px;
    text-align: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card--listing .product-image img { max-width: 100%; max-height: 180px; object-fit: contain; }
.stock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-gold, #DEB34D);
    color: #000;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stock-badge--out {
    background: #666;
    color: #fff;
}
.product-card--listing .product-info { padding: 15px; }
.product-card--listing .product-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-text-primary);
}
.product-specs {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}
.product-card--listing .product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
}
.product-card--listing .product-price .original {
    text-decoration: line-through;
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-right: 8px;
}

/* Pagination */
.pagination-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-grey-light);
}
.show-more {
    background: none;
    border: 1px solid var(--color-grey-light);
    padding: 12px 30px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
}
.page-numbers { display: flex; gap: 8px; }
.page-numbers a, .page-numbers span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    text-decoration: none;
    color: var(--color-text-primary);
}
.page-numbers .current {
    background: var(--color-purple-dark);
    color: #fff;
}

/* Site Footer - Top Section */
.site-footer-top {
    background: var(--color-bg-light);
    padding: 60px 80px;
    display: flex;
    gap: 60px;
}
.newsletter-section { flex: 1; }
.newsletter-section h3 { 
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}
.newsletter-tabs { display: flex; gap: 20px; margin-bottom: 15px; }
.newsletter-tabs label { font-size: 14px; cursor: pointer; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--color-grey-light);
    border-radius: 4px;
    font-size: 14px;
}
.newsletter-form button {
    background: var(--color-purple-dark);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.brochure-section {
    background: var(--color-gold-deep);
    padding: 30px;
    border-radius: 8px;
    width: 350px;
}
.brochure-section h3 { font-size: 18px; margin-bottom: 10px; }
.brochure-section p { font-size: 13px; line-height: 1.6; margin-bottom: 15px; }
.brochure-section a { 
    font-size: 13px; 
    font-weight: 600; 
    color: #000;
    text-decoration: none;
}

/* Site Footer - Bottom Section */
.site-footer-bottom {
    background: var(--color-purple-dark);
    color: #fff;
    padding: 50px 80px;
}
.footer-columns { display: flex; gap: 80px; margin-bottom: 40px; }
.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
}
.footer-column a:hover { color: #fff; }
.footer-social { display: flex; gap: 15px; margin-top: 20px; }
.footer-social a { font-size: 18px; color: #fff; }
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Product Listing Page Responsive */
@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .filters-sidebar { display: none; }
    .category-hero { padding: 40px; }
    .category-hero h1 { font-size: 40px; }
    .site-footer-top { flex-direction: column; padding: 40px; }
    .brochure-section { width: 100%; }
    .footer-columns { flex-wrap: wrap; gap: 40px; }
    .products-header { flex-wrap: wrap; gap: 10px; }
    .products-header__actions { flex-wrap: wrap; }
    .products-container { padding-bottom: 120px; overflow-x: hidden; }
}

@media (max-width: 576px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .site-header { padding: 15px 20px; }
    .site-header nav { display: none; }
    .category-hero { padding: 30px 20px; }
    .category-hero h1 { font-size: 32px; }
    .products-container { padding: 20px; padding-bottom: 120px; overflow-x: hidden; }
    .products-header { flex-wrap: wrap; gap: 8px; }
    .products-header__actions { width: 100%; justify-content: space-between; }
    .products-sort { flex: 1; }
    .products-sort select { width: 100%; }
    .view-toggle { margin-left: 10px; }
    .pagination-bar { flex-wrap: wrap; gap: 15px; justify-content: center; }
    .site-footer-bottom { padding: 30px 20px; }
}

/* ==========================================================================
   MAGAZINE REQUEST PAGE
   ========================================================================== */

.magazine-page {
    padding: 60px 0 0;
}

.magazine-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .magazine-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .magazine-image-col {
        display: none;
    }
}

.magazine-form h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.magazine-form .subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.magazine-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.magazine-form .form-group {
    margin-bottom: 15px;
}

.magazine-form label {
    display: block;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 6px;
}

.magazine-form input[type="text"],
.magazine-form input[type="email"],
.magazine-form textarea,
.magazine-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
}

.magazine-form input:focus,
.magazine-form textarea:focus,
.magazine-form select:focus {
    outline: none;
    border-color: #333;
}

.magazine-form textarea {
    resize: vertical;
    min-height: 80px;
}

.magazine-form .checkbox-group {
    margin: 20px 0;
}

.magazine-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 12px;
}

.magazine-form .checkbox-label input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.magazine-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.2s;
}

.magazine-form .submit-btn:hover {
    background: #333;
}

.magazine-form .form-footer {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

.magazine-form .form-footer a {
    color: #DEB34D;
}

.magazine-image-col {
    position: sticky;
    top: 100px;
}

.magazine-image-col img {
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.error-box {
    padding: 15px;
    background: #fee;
    border: 1px solid #c00;
    color: #c00;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.success-box {
    text-align: center;
    padding: 60px 20px;
}

.success-box i {
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-box h2 {
    margin-bottom: 15px;
}

.success-box p {
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   Product Detail Page (PDP)
   ======================================== */

/* Breadcrumb */
.pdp-breadcrumb { padding: 12px 0; border-bottom: 1px solid var(--color-grey-light); font-size: var(--font-size-sm); }
.pdp-breadcrumb a { color: var(--color-text-secondary); }
.pdp-breadcrumb__sep { margin: 0 8px; color: var(--color-grey-mid); }
.pdp-breadcrumb span:last-child { color: var(--color-text-primary); font-weight: 500; }

/* PDP Layout */
.pdp { padding: var(--space-6) 0 var(--space-4); }
.pdp__layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start; }

/* Gallery */
.pdp__gallery { position: sticky; top: 100px; }
.pdp__main-image { position: relative; background: #1a1a2e; border-radius: var(--border-radius-lg); overflow: hidden; cursor: zoom-in; margin-bottom: var(--space-4); border: 1px solid var(--color-grey-light); }
.pdp__main-image img { width: 100%; height: auto; display: block; object-fit: contain; max-height: 500px; }
.pdp__ip-badge { position: absolute; top: 12px; left: 12px; background: var(--color-navy-deep); color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.pdp__thumbs { display: flex; gap: 8px; overflow-x: auto; }
.pdp__thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; border: 2px solid transparent; cursor: pointer; opacity: 0.6; transition: all 0.2s; }
.pdp__thumb.active, .pdp__thumb:hover { border-color: var(--color-gold-deep); opacity: 1; }

/* Star Rating */
.pdp__rating { margin-bottom: 4px; }
.pdp__stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.pdp__review-count { font-size: 12px; color: var(--color-text-secondary); margin-left: 6px; }

/* Info Column */
.pdp__info { display: block; }
.pdp__title { font-family: 'Playfair Display', serif; font-size: var(--font-size-3xl); font-weight: 500; margin-bottom: var(--space-2); }
.pdp__subtitle { color: var(--color-text-secondary); font-size: var(--font-size-md); margin-bottom: var(--space-4); }
.pdp__badge-row { margin-bottom: var(--space-4); }
.pdp__dark-badge { display: inline-flex; align-items: center; gap: 6px; background: #1a2340; color: #ffd700; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; }

/* Option Groups */
.pdp__option-group { margin-bottom: var(--space-4); }
.pdp__option-label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-secondary); margin-bottom: 6px; }

/* Finish Swatches */
.pdp__swatches { display: flex; flex-wrap: wrap; gap: 16px; }
.pdp__swatch { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; }
.pdp__swatch input { display: none; }
.pdp__swatch-color { width: 52px; height: 52px; border-radius: 50%; border: 3px solid transparent; transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.15); object-fit: cover; display: block; }
.pdp__swatch input:checked + .pdp__swatch-color { border-color: var(--color-navy-deep); box-shadow: 0 0 0 2px var(--color-navy-deep); }
.pdp__swatch:hover .pdp__swatch-color { border-color: var(--color-grey-mid); }
.pdp__swatch-name { font-size: 10px; color: var(--color-text-secondary); text-align: center; max-width: 60px; line-height: 1.2; }

/* Pill Selectors */
.pdp__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp__pill { cursor: pointer; }
.pdp__pill input { display: none; }
.pdp__pill span { display: inline-block; padding: 10px 20px; border: 1.5px solid var(--color-grey-light); border-radius: 4px; font-size: 13px; transition: all 0.2s; background: #fff; }
.pdp__pill input:checked + span { border-color: var(--color-navy-deep); background: var(--color-navy-deep); color: #fff; font-weight: 500; }
.pdp__pill:hover span { border-color: var(--color-navy-deep); }
.pdp__pill small { font-size: 11px; opacity: 0.7; }

/* Select / Input */
.pdp__select, .pdp__input { width: 100%; padding: 10px 14px; border: 1px solid var(--color-grey-light); border-radius: 6px; font-size: 14px; background: #fff; }
.pdp__select:focus, .pdp__input:focus { outline: none; border-color: var(--color-gold-deep); }

/* Accessories */
.pdp__accessories { display: flex; flex-direction: column; gap: 8px; }
.pdp__accessory { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--color-grey-light); border-radius: 6px; cursor: pointer; transition: border-color 0.2s; }
.pdp__accessory:hover { border-color: var(--color-gold-deep); }
.pdp__accessory input { accent-color: var(--color-gold-deep); }

/* Order Summary */
.pdp__summary { background: var(--color-bg-light); border: 2px solid var(--color-gold-deep); border-radius: var(--border-radius-lg); padding: var(--space-5); margin-top: var(--space-3); }
.pdp__summary-header { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-gold-deep); margin-bottom: var(--space-4); }
.pdp__config-table { width: 100%; margin-bottom: var(--space-4); }
.pdp__config-table td { padding: 4px 0; font-size: 13px; color: var(--color-text-secondary); }
.pdp__config-table td:first-child { font-weight: 500; color: var(--color-text-primary); padding-right: 12px; width: 40%; }
.pdp__config-table td:last-child { text-align: right; }
.pdp__price-line { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 14px; }
.pdp__price-line--total { border-top: 2px solid var(--color-gold-deep); margin-top: 8px; padding-top: 14px; font-size: 14px; font-weight: 500; }
.pdp__price-value { font-weight: 600; color: var(--color-navy-deep); }
.pdp__price-value--large { font-size: 28px; font-weight: 700; color: var(--color-navy-deep); }

/* Timeline */
.pdp__timeline { background: #f0f7ff; border: 1px solid #b3d4fc; border-radius: 6px; padding: 12px; margin: var(--space-4) 0; font-size: 13px; line-height: 1.6; }
.pdp__timeline i { color: #0066cc; margin-right: 6px; }
.pdp__timeline a { color: #0066cc; }

/* Quantity & Cart */
.pdp__cart-row { display: flex; gap: 12px; margin-top: var(--space-4); }
.pdp__qty { display: flex; align-items: center; border: 1px solid var(--color-grey-light); border-radius: 6px; overflow: hidden; }
.pdp__qty-btn { width: 40px; height: 44px; border: none; background: var(--color-bg-light); cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.pdp__qty-btn:hover { background: var(--color-grey-light); }
.pdp__qty input { width: 50px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--color-grey-light); border-right: 1px solid var(--color-grey-light); font-size: 14px; -moz-appearance: textfield; appearance: textfield; }
.pdp__qty input::-webkit-outer-spin-button, .pdp__qty input::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; }
.pdp__add-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; background: var(--color-purple-dark); color: #fff; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.pdp__add-btn:hover { background: var(--color-navy-deep); color: #fff; }
.pdp__add-btn--full { width: 100%; margin-top: var(--space-4); text-align: center; }
.pdp__notes { margin-top: var(--space-3); }
.pdp__textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--color-grey-light); border-radius: 6px; font-size: 13px; resize: vertical; min-height: 60px; }

/* Trust Badges */
.pdp__trust { display: flex; gap: var(--space-5); justify-content: center; margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--color-grey-light); }
.pdp__trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text-secondary); }
.pdp__trust-item i { color: var(--color-gold-deep); }
.pdp__trust-icon { width: 20px; height: 20px; opacity: 0.7; }

/* Tabs */
.pdp-tabs { padding-top: var(--space-6) !important; padding-bottom: var(--space-6) !important; border-top: 1px solid var(--color-grey-light); }
.pdp-tabs__nav { display: flex; border-bottom: none; gap: 4px; margin-bottom: var(--space-5); }
.pdp-tabs__btn { padding: 10px 20px; border: 1.5px solid var(--color-grey-light); background: #fff; font-size: 13px; font-weight: 500; color: var(--color-text-secondary); cursor: pointer; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
.pdp-tabs__btn.active, .pdp-tabs__btn:hover { color: #fff; background: var(--color-navy-deep); border-color: var(--color-navy-deep); }
.pdp-tabs__panel { display: none; }
.pdp-tabs__panel.active { display: block; }
.pdp-tabs__two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }

/* Spec Table */
.pdp-spec-table { width: 100%; border-collapse: collapse; }
.pdp-spec-table th, .pdp-spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--color-grey-light); text-align: left; font-size: 14px; }
.pdp-spec-table th { font-weight: 600; background: var(--color-bg-light); }

/* Downloads */
.pdp-downloads { display: flex; flex-direction: column; gap: 10px; }
.pdp-download { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--color-grey-light); border-radius: 8px; text-decoration: none; color: var(--color-text-primary); transition: border-color 0.2s; }
.pdp-download:hover { border-color: var(--color-gold-deep); color: var(--color-text-primary); }
.pdp-download i:first-child { font-size: 24px; color: var(--color-gold-deep); width: 30px; text-align: center; }
.pdp-download div { flex: 1; }
.pdp-download div strong { display: block; font-size: 14px; }
.pdp-download div small { color: var(--color-text-secondary); font-size: 12px; }
.pdp-download i:last-child { color: var(--color-text-secondary); }
.pdp-download__btn { display: inline-block; padding: 6px 16px; background: var(--color-navy-deep); color: #fff; font-size: 12px; font-weight: 600; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; transition: background 0.2s; }
.pdp-download:hover .pdp-download__btn { background: var(--color-gold-deep); color: var(--color-navy-deep); }

/* Finishes Grid (tab) */
.pdp-finishes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; }
.pdp-finish-card { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.pdp-finish-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--color-grey-light); box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: border-color 0.2s, transform 0.2s; }
.pdp-finish-card:hover img { border-color: var(--color-navy-deep); transform: scale(1.05); }
.pdp-finish-card strong { font-size: 13px; color: var(--color-text-primary); }

/* Professional Resources Bar */
.pdp-resources { background: var(--color-navy-deep); padding: var(--space-6) 0; }
.pdp-resources__inner { display: flex; align-items: center; gap: var(--space-8); }
.pdp-resources__left { flex: 1; }
.pdp-resources__title { color: #fff; font-size: 16px; font-weight: 600; margin: 0 0 4px 0; }
.pdp-resources__subtitle { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }
.pdp-resources__icons { display: flex; gap: var(--space-6); }
.pdp-resources__icon-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: rgba(255,255,255,0.8); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.pdp-resources__icon-item:hover { color: var(--color-gold-deep); }
.pdp-resources__icon-item img { width: 28px; height: 28px; filter: brightness(0) invert(1); opacity: 0.8; transition: opacity 0.2s; }
.pdp-resources__icon-item:hover img { opacity: 1; filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg); }
.pdp-resources__download { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--color-gold-deep); color: var(--color-navy-deep); font-size: 13px; font-weight: 600; text-decoration: none; border-radius: 6px; white-space: nowrap; transition: background 0.2s; }
.pdp-resources__download:hover { background: #c49a2e; color: var(--color-navy-deep); }

@media (max-width: 768px) {
  .pdp-resources__inner { flex-direction: column; text-align: center; }
  .pdp-resources__icons { justify-content: center; }
}

/* Section Heading */
.pdp-section-heading { font-family: 'Playfair Display', serif; font-size: var(--font-size-2xl); font-weight: 500; margin-bottom: var(--space-5); }

/* Complete The Look */
.pdp-complete-look { background: #fff; }
.pdp-ctl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-5); }
.pdp-ctl-card { border: 1px solid var(--color-grey-light); border-radius: 8px; overflow: hidden; background: #fff; transition: box-shadow 0.2s; }
.pdp-ctl-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.pdp-ctl-card__img { background: #f8f8f8; padding: 16px; display: flex; align-items: center; justify-content: center; height: 160px; }
.pdp-ctl-card__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pdp-ctl-card__body { padding: 12px 16px 16px; }
.pdp-ctl-card__name { font-size: 14px; font-weight: 500; margin-bottom: 4px; color: var(--color-text-primary); }
.pdp-ctl-card__price { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 10px; }
.pdp-ctl-card__btn { display: block; width: 100%; padding: 8px 0; background: #fff; border: 1.5px solid var(--color-navy-deep); color: var(--color-navy-deep); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
.pdp-ctl-card__btn:hover { background: var(--color-navy-deep); color: #fff; }

/* Gallery Grid (effects/customer photos) */
.pdp-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--space-4); }
.pdp-gallery-item { cursor: pointer; border-radius: var(--border-radius-md); overflow: hidden; border: 1px solid var(--color-grey-light); }
.pdp-gallery-item img { width: 100%; height: 200px; object-fit: cover; }
.pdp-gallery-item p { padding: 8px 12px; font-size: 13px; color: var(--color-text-secondary); }

/* Lightbox */
#lightboxModal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; cursor: pointer; }
#lightboxModal img { max-width: 90%; max-height: 90%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 4px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff; cursor: pointer; z-index: 10000; }

/* Stock Badges */
.pdp-stock-badge { position: absolute; top: 8px; left: 8px; padding: 3px 10px; border-radius: 3px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.pdp-stock-badge--instock { background: #28a745; color: #fff; }
.pdp-stock-badge--outofstock { background: #dc3545; color: #fff; }
.pdp-stock-badge--mto { background: var(--color-gold-deep); color: var(--color-navy-deep); }

/* ═══════════════════════════════════════════
   DOWNLOADS HUB
   ═══════════════════════════════════════════ */

/* Hero */
.dl-hero {
  background: var(--color-purple-dark, #1A1220);
  padding: 60px 0 50px;
}
.dl-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.dl-hero__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 28px;
}
.dl-hero__search {
  position: relative;
  max-width: 520px;
}
.dl-hero__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.dl-hero__search input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.dl-hero__search input::placeholder { color: rgba(255,255,255,0.45); }
.dl-hero__search input:focus { outline: none; border-color: var(--color-gold, #DEB34D); }

/* Layout */
.dl-content { padding: 40px 0 80px; background: #fff; }
.dl-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.dl-sidebar { position: sticky; top: 100px; }
.dl-sidebar__section { margin-bottom: 28px; }
.dl-sidebar__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}
.dl-sidebar__input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.dl-sidebar__input:focus { outline: none; border-color: var(--color-navy-deep, #1F3556); }
.dl-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 320px;
  overflow-y: auto;
}
.dl-sidebar__list::-webkit-scrollbar { width: 4px; }
.dl-sidebar__list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.dl-sidebar__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  font-size: 0.85rem;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
}
.dl-sidebar__item:hover { background: #f5f5f5; }
.dl-sidebar__item.active {
  background: var(--color-navy-deep, #1F3556);
  color: #fff;
}
.dl-sidebar__item.active .dl-sidebar__count { background: rgba(255,255,255,0.2); color: #fff; }
.dl-sidebar__count {
  font-size: 0.7rem;
  background: #eee;
  color: #666;
  padding: 2px 7px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
}
.dl-sidebar__check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.85rem;
  color: #444;
  cursor: pointer;
}
.dl-sidebar__check input[type="checkbox"] { accent-color: var(--color-navy-deep, #1F3556); }
.dl-sidebar__check .dl-sidebar__count { margin-left: auto; }

/* Main Area */
.dl-main__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.dl-main__result-count { font-size: 0.9rem; color: #666; }
.dl-main__sort {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #333;
  background: #fff;
}

/* File Row */
.dl-file {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.dl-file:hover { background: #fafafa; margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: 6px; }
.dl-file__icon {
  width: 40px;
  height: 40px;
  background: var(--color-off-white, #F4F2F3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-navy-deep, #1F3556);
  font-size: 1rem;
}
.dl-file__info { flex: 1; min-width: 0; }
.dl-file__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dl-file__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #888;
}
.dl-file__tag {
  background: #eee;
  color: #555;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.dl-file__download {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #666;
  transition: all 0.2s;
  flex-shrink: 0;
}
.dl-file__download svg { width: 20px; height: 20px; }
.dl-file__download:hover { background: var(--color-navy-deep, #1F3556); color: #fff; }

/* Empty State */
.dl-main__empty { text-align: center; padding: 60px 0; color: #999; }

/* Responsive */
@media (max-width: 768px) {
  .dl-hero__title { font-size: 2rem; }
  .dl-layout { grid-template-columns: 1fr; gap: 0; }
  .dl-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
  }
  .dl-sidebar__section:first-child { grid-column: 1 / -1; }
  .dl-sidebar__list { max-height: 200px; }
  .dl-file__name { white-space: normal; }
}
@media (max-width: 480px) {
  .dl-sidebar { grid-template-columns: 1fr; }
  .dl-file__meta { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════
   GET IN TOUCH / CONTACT
   ═══════════════════════════════════════════ */

/* Hero */
.git-hero {
  background: var(--color-navy-deep, #1F3556);
  padding: 72px 0 60px;
  text-align: center;
}
.git-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.git-hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Layout */
.git-content { padding: 56px 0 70px; background: #fff; }
.git-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Contact Details */
.git-details__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
}
.git-details__items { display: flex; flex-direction: column; gap: 24px; }

.git-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.git-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold-deep, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.git-detail__icon img { filter: brightness(0) invert(1); }
.git-detail__body { display: flex; flex-direction: column; }
.git-detail__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.git-detail__value {
  font-size: 0.88rem;
  color: var(--color-navy-deep, #1F3556);
  text-decoration: none;
  font-weight: 500;
}
.git-detail__value:hover { text-decoration: underline; }
.git-detail__note {
  font-size: 0.78rem;
  color: #888;
  margin-top: 1px;
}
.git-detail__address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

/* Trade Box */
.git-trade {
  margin-top: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
}
.git-trade__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.git-trade__header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.git-trade p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 14px;
}
.git-trade__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.git-trade__link:hover { color: var(--color-gold-deep, #C9A84C); border-color: var(--color-gold-deep, #C9A84C); }

/* Contact Form */
.git-form-wrap {
  background: #fafafa;
  border-radius: 10px;
  padding: 36px;
}
.git-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.git-form { display: flex; flex-direction: column; gap: 18px; }
.git-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.git-form__field { display: flex; flex-direction: column; gap: 5px; }
.git-form__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}
.git-form__field input,
.git-form__field select,
.git-form__field textarea {
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s;
  font-family: inherit;
}
.git-form__field input:focus,
.git-form__field select:focus,
.git-form__field textarea:focus {
  outline: none;
  border-color: var(--color-navy-deep, #1F3556);
}
.git-form__field input::placeholder,
.git-form__field textarea::placeholder { color: #bbb; }
.git-form__field textarea { resize: vertical; min-height: 110px; }
.git-form__submit {
  align-self: flex-end;
  padding: 13px 32px;
  background: var(--color-gold-deep, #C9A84C);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.2s;
}
.git-form__submit:hover { background: #b8953f; }

/* Form Messages */
.git-form__success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #e8f5e9;
  border-radius: 8px;
  padding: 20px;
}
.git-form__success strong { color: #2e7d32; }
.git-form__success p { color: #555; font-size: 0.9rem; margin-top: 4px; }
.git-form__error {
  background: #fbe9e7;
  color: #c62828;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

/* Map */
.git-map {
  position: relative;
  width: 100%;
  height: 350px;
  margin-top: 0;
}
.git-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.git-map__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 2;
  background: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  pointer-events: none;
}

/* Contact Responsive */
@media (max-width: 768px) {
  .git-hero__title { font-size: 2.2rem; }
  .git-hero { padding: 50px 0 40px; }
  .git-layout { grid-template-columns: 1fr; gap: 40px; }
  .git-form-wrap { padding: 24px; }
  .git-form__row { grid-template-columns: 1fr; }
  .git-form__submit { align-self: stretch; }
  .git-map { height: 280px; }
}

/* ═══════════════════════════════════════════
   ABOUT US
   ═══════════════════════════════════════════ */

/* Hero */
.au-hero {
  background: var(--color-navy-deep, #1F3556);
  padding: 80px 0 70px;
  text-align: center;
}
.au-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-deep, #C9A84C);
  margin-bottom: 16px;
}
.au-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.au-hero__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Founder */
.au-founder { padding: 70px 0; background: #fff; }
.au-founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.au-founder__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.au-founder__name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.au-founder__text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}
.au-founder__passion {
  font-style: italic;
  color: #777 !important;
  border-left: 3px solid var(--color-gold-deep, #C9A84C);
  padding-left: 16px;
  margin-top: 20px !important;
}
.au-founder__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 480px;
}

/* Craftsmanship */
.au-craft { padding: 70px 0; background: #fafafa; }
.au-craft__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.au-craft__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.au-craft__subtitle {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.6;
}
.au-craft__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.au-craft__card {
  text-align: center;
  padding: 32px 24px;
}
.au-craft__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-gold-deep, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.au-craft__icon img { filter: brightness(0) invert(1); }
.au-craft__card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.au-craft__card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* Lighting Design CTA */
.au-design {
  padding: 0;
  background: var(--color-navy-deep, #1F3556);
}
.au-design .container {
  max-width: 100%;
  padding: 0;
}
.au-design__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.au-design__text {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
}
.au-design__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.au-design__intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.au-design__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.au-design__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.au-design__list li img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(68%) sepia(63%) saturate(389%) hue-rotate(7deg) brightness(93%) contrast(87%);
}
.au-design__cta {
  display: inline-block;
  padding: 13px 28px;
  background: var(--color-gold-deep, #C9A84C);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: background 0.2s;
  align-self: flex-start;
}
.au-design__cta:hover { background: #b8953f; }
.au-design__image {
  position: relative;
  overflow: hidden;
}
.au-design__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.au-design__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-gold-deep, #C9A84C);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
}
.au-design__badge strong { font-size: 1.1rem; }

/* Team */
.au-team { padding: 70px 0; background: #fff; }
.au-team__header { text-align: center; max-width: 500px; margin: 0 auto 48px; }
.au-team__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.au-team__subtitle {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.6;
}
.au-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.au-team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid #f0f0f0;
}
.au-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.au-team__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.au-team__role {
  font-size: 0.8rem;
  color: #999;
}

/* Follow Our Progress */
.au-progress {
  padding: 70px 0;
  background: #fafafa;
  text-align: center;
}
.au-progress__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.au-progress__subtitle {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 36px;
}
.au-progress__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.au-progress__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.au-progress__link:hover {
  border-color: var(--color-gold-deep, #C9A84C);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* About Us Responsive */
@media (max-width: 992px) {
  .au-founder__grid { grid-template-columns: 1fr; gap: 32px; }
  .au-founder__image { order: -1; }
  .au-founder__image img { max-height: 360px; }
  .au-design__grid { grid-template-columns: 1fr; }
  .au-design__text { padding: 48px 24px; max-width: 100%; margin: 0; }
  .au-design__image { height: 300px; }
  .au-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .au-hero__title { font-size: 2.5rem; }
  .au-hero { padding: 56px 0 48px; }
  .au-craft__cards { grid-template-columns: 1fr; gap: 24px; }
  .au-craft__title, .au-team__title, .au-progress__title { font-size: 1.6rem; }
  .au-founder__name { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .au-team__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .au-team__photo { width: 120px; height: 120px; }
  .au-progress__links { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════ */

/* Filter Tabs */
.cs-filters {
  background: var(--color-navy-deep, #1F3556);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.cs-filters__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cs-filters__tab {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.cs-filters__tab:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cs-filters__tab--active {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

/* Listing Grid */
.cs-listing { padding: 48px 0 70px; background: #fff; }
.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.cs-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.cs-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cs-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.cs-card:hover .cs-card__image img { transform: scale(1.05); }
.cs-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold-deep, #C9A84C);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
}
.cs-card__body { padding: 16px 4px; }
.cs-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cs-card__type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #999;
}
.cs-card__read {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #bbb;
}
.cs-card__read img { opacity: 0.5; }
.cs-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cs-card__location {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-bottom: 10px;
}
.cs-card__cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
}
.cs-card:hover .cs-card__cta { color: var(--color-gold-deep, #C9A84C); }

.cs-empty {
  text-align: center;
  padding: 60px 0;
  color: #999;
}
.cs-empty h3 { color: #555; margin-bottom: 8px; }

/* Case Studies Responsive */
@media (max-width: 992px) {
  .cs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cs-filters__tab { padding: 6px 14px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cs-card__title { font-size: 0.88rem; }
}

/* ═══════════════════════════════════════════
   CASE STUDY VIEW
   ═══════════════════════════════════════════ */

.csv-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.csv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%);
}
.csv-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}
.csv-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.csv-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.csv-hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.csv-hero__meta img { filter: brightness(0) invert(1); opacity: 0.7; }

/* Article Content */
.csv-content { padding: 56px 0 70px; background: #fff; }
.csv-article {
  max-width: 720px;
  margin-bottom: 48px;
}
.csv-article h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  margin-top: 36px;
}
.csv-article h2:first-child { margin-top: 0; }
.csv-article p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.csv-legacy-content {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}
.csv-legacy-content img { max-width: 100%; height: auto; border-radius: 8px; }

/* Gallery */
.csv-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.csv-gallery__item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.csv-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.csv-gallery__item:hover img { transform: scale(1.05); }

/* Back Link */
.csv-back { padding-top: 24px; border-top: 1px solid #eee; }
.csv-back__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}
.csv-back__link:hover { color: var(--color-gold-deep, #C9A84C); }

/* Case Study View Responsive */
@media (max-width: 768px) {
  .csv-hero { min-height: 300px; }
  .csv-hero__title { font-size: 2rem; }
  .csv-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .csv-hero__title { font-size: 1.6rem; }
  .csv-hero__meta { flex-direction: column; gap: 8px; }
  .csv-gallery { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════ */

.ck-page { padding: 24px 0 56px; background: #fff; }
.ck-back {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 24px;
}
.ck-back:hover { color: var(--color-gold-deep, #C9A84C); }

/* Progress Bar */
.ck-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.ck-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 70px;
}
.ck-progress__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  border: 2px solid #ddd;
  color: #bbb;
  background: #fff;
  transition: all 0.3s;
}
.ck-progress__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #bbb;
  transition: color 0.3s;
}
.ck-progress__step--active .ck-progress__dot {
  background: var(--color-navy-deep, #1F3556);
  border-color: var(--color-navy-deep, #1F3556);
  color: #fff;
}
.ck-progress__step--active .ck-progress__label { color: #1a1a1a; }
.ck-progress__step--done .ck-progress__dot {
  background: var(--color-navy-deep, #1F3556);
  border-color: var(--color-navy-deep, #1F3556);
  color: #fff;
}
.ck-progress__step--done .ck-progress__label { color: #1a1a1a; }
.ck-progress__line {
  flex: 1;
  height: 2px;
  background: #ddd;
  margin: 0 8px;
  margin-bottom: 22px;
}

/* Layout */
.ck-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

/* Steps */
.ck-step { margin-bottom: 8px; }
.ck-step__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.ck-step__header--active {
  border-color: var(--color-navy-deep, #1F3556);
  background: rgba(31,53,86,0.03);
}
.ck-step__header--done { border-color: #ccc; }
.ck-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: #eee;
  color: #888;
  flex-shrink: 0;
}
.ck-step__header--active .ck-step__num {
  background: var(--color-navy-deep, #1F3556);
  color: #fff;
}
.ck-step__header--done .ck-step__num {
  background: var(--color-navy-deep, #1F3556);
  color: #fff;
}
.ck-step__title { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; }

.ck-step__body { padding: 24px 20px; }

/* Field Groups */
.ck-field-group { margin-bottom: 24px; }
.ck-field-group__title { font-size: 0.85rem; font-weight: 700; color: #555; margin-bottom: 12px; }

.ck-address-display { font-size: 0.88rem; color: #555; line-height: 1.6; }
.ck-address-display p { margin-bottom: 2px; }

.ck-btn-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy-deep, #1F3556);
  text-decoration: none;
}
.ck-btn-link:hover { text-decoration: underline; }

/* Address Cards */
.ck-address-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ck-address-card {
  display: block;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ck-address-card input { display: none; }
.ck-address-card:has(input:checked) { border-color: var(--color-navy-deep, #1F3556); }
.ck-address-card__inner { display: flex; flex-direction: column; gap: 2px; font-size: 0.82rem; color: #555; }
.ck-address-card__inner strong { color: #1a1a1a; font-size: 0.88rem; margin-bottom: 4px; }

/* Next Button */
.ck-next-btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--color-navy-deep, #1F3556);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 16px;
}
.ck-next-btn:hover { background: #162a45; }

/* Shipping Options */
.ck-shipping-options { display: flex; flex-direction: column; gap: 12px; }
.ck-shipping-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ck-shipping-opt input { display: none; }
.ck-shipping-opt:has(input:checked) { border-color: var(--color-navy-deep, #1F3556); }
.ck-shipping-opt__inner { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.ck-shipping-opt__inner strong { font-size: 0.9rem; color: #1a1a1a; }
.ck-shipping-opt__inner span { font-size: 0.8rem; color: #888; }
.ck-shipping-opt__price { font-size: 0.88rem; font-weight: 700; color: #1a1a1a; }

/* Payment Options */
.ck-payment-options { display: flex; flex-direction: column; gap: 12px; }
.ck-payment-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ck-payment-opt input { display: none; }
.ck-payment-opt:has(input:checked) { border-color: var(--color-navy-deep, #1F3556); }
.ck-payment-opt__inner { display: flex; align-items: center; gap: 10px; }
.ck-payment-opt__inner strong { font-size: 0.9rem; color: #1a1a1a; }
.ck-payment-opt__badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  background: #eee;
  color: #888;
}
.ck-payment-opt__badge--green { background: #e8f5e9; color: #2e7d32; }
.ck-payment-opt__note { font-size: 0.75rem; color: #999; }

/* Review Cards */
.ck-review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.ck-review-card {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ck-review-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #999;
}
.ck-review-card__value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}
.ck-review-card__edit {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy-deep, #1F3556);
  text-decoration: none;
}
.ck-review-card__edit:hover { text-decoration: underline; }

/* Confirm Button */
.ck-confirm-btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--color-gold-deep, #C9A84C);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}
.ck-confirm-btn:hover { background: #b8953f; }
.ck-terms {
  font-size: 0.75rem;
  color: #999;
  margin-top: 14px;
  text-align: center;
}
.ck-terms a { color: #555; }

/* Sidebar */
.ck-sidebar {
  background: #fafafa;
  border-radius: 10px;
  padding: 28px;
  position: sticky;
  top: 24px;
}
.ck-sidebar__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.ck-sidebar__items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.ck-sidebar__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ck-sidebar__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}
.ck-sidebar__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ck-sidebar__details strong { font-size: 0.82rem; color: #1a1a1a; }
.ck-sidebar__details span { font-size: 0.72rem; color: #999; }
.ck-sidebar__price { font-size: 0.85rem; font-weight: 700; color: #1a1a1a; white-space: nowrap; }

.ck-sidebar__totals { border-top: 1px solid #eee; padding-top: 16px; }
.ck-sidebar__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 6px;
}
.ck-sidebar__row--total {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

/* Trust Badges */
.ck-trust { padding: 40px 0; border-top: 1px solid #eee; }
.ck-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ck-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ck-trust__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy-deep, #1F3556);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ck-trust__icon img { filter: brightness(0) invert(1); }
.ck-trust__item strong { font-size: 0.82rem; color: #1a1a1a; display: block; }
.ck-trust__item span { font-size: 0.62rem; color: #999; letter-spacing: 0.5px; }

/* Delivery Preference Modal */
.dp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.dp-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #888;
}
.dp-modal__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.dp-modal__subtitle { font-size: 0.85rem; color: #666; margin-bottom: 24px; }

.dp-option {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.dp-option:hover { border-color: #ccc; }
.dp-option__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.dp-option__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy-deep, #1F3556);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp-option__icon img { filter: brightness(0) invert(1); width: 16px; }
.dp-option__name { font-weight: 700; font-size: 0.95rem; }
.dp-option__rec {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--color-gold-deep, #C9A84C);
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.dp-option__desc { font-size: 0.82rem; color: #666; line-height: 1.5; margin-bottom: 12px; }
.dp-option__detail { font-size: 0.78rem; color: #555; margin-bottom: 4px; }
.dp-option__detail strong { color: #2e7d32; }
.dp-option__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.dp-option__price { font-size: 0.85rem; font-weight: 600; color: #2e7d32; }
.dp-option__select {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy-deep, #1F3556);
  background: none;
  border: none;
  cursor: pointer;
}
.dp-option__select:hover { text-decoration: underline; }
.dp-modal__footer { font-size: 0.72rem; color: #999; text-align: center; margin-top: 8px; }

/* ═══════════════════════════════════════════
   ORDER CONFIRMATION
   ═══════════════════════════════════════════ */

.oc-page { padding: 24px 0 56px; background: #fff; }
.oc-back {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  margin-bottom: 16px;
}
.oc-back:hover { color: var(--color-gold-deep, #C9A84C); }

.oc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.oc-date { font-size: 0.85rem; color: #999; margin-bottom: 28px; }

.oc-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}

/* Manufacturing Status */
.oc-status {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 28px;
}
.oc-status__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.oc-status__title { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; }
.oc-status__badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.8px;
}
.oc-status__badge--progress { background: #fff3e0; color: #e65100; }
.oc-status__badge--shipped { background: #e8f5e9; color: #2e7d32; }
.oc-status__badge--delivered { background: #e3f2fd; color: #1565c0; }

/* Timeline */
.oc-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 16px;
  position: relative;
}
.oc-timeline__step {
  flex: 1;
  text-align: center;
  position: relative;
}
.oc-timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}
.oc-timeline__dot--done { background: var(--color-navy-deep, #1F3556); }
.oc-timeline__dot--current {
  background: #fff;
  border: 3px solid var(--color-gold-deep, #C9A84C);
  width: 20px;
  height: 20px;
  margin-top: -2px;
}
.oc-timeline__label { font-size: 0.62rem; color: #999; line-height: 1.3; }
.oc-timeline__date { font-size: 0.6rem; color: #bbb; }

.oc-status__info {
  background: #f0f6ff;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
}
.oc-status__info-icon { color: #1565c0; font-size: 1.1rem; flex-shrink: 0; }
.oc-status__info p { font-size: 0.82rem; color: #333; line-height: 1.5; margin: 0; }

.oc-status__process {
  font-size: 0.75rem;
  color: #888;
  margin-top: 12px;
}
.oc-status__process strong { color: #555; }

/* Items */
.oc-items__title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.oc-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.oc-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f5;
}
.oc-item__details { flex: 1; }
.oc-item__name { font-size: 0.92rem; font-weight: 700; color: #1a1a1a; display: block; margin-bottom: 4px; }
.oc-item__spec { font-size: 0.78rem; color: #888; display: block; }
.oc-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 8px;
}
.oc-item__badge--shipped { background: #e8f5e9; color: #2e7d32; }
.oc-item__badge--manufacturing { background: #fff3e0; color: #e65100; }
.oc-item__price { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; white-space: nowrap; }

/* Sidebar (Order Confirmation) */
.oc-sidebar-card {
  background: #fafafa;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}
.oc-sidebar-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.oc-sidebar-card .ck-sidebar__row { margin-bottom: 6px; }

.oc-delivery-info { font-size: 0.82rem; color: #555; line-height: 1.6; }
.oc-delivery-info strong { color: #1a1a1a; display: block; margin-bottom: 4px; }
.oc-delivery-info .oc-change {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-navy-deep, #1F3556);
  text-decoration: none;
  float: right;
}

.oc-help {
  background: var(--color-navy-deep, #1F3556);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  color: #fff;
}
.oc-help h4 { font-size: 0.95rem; margin-bottom: 6px; }
.oc-help p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.oc-help__btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.oc-help__btn:hover { background: rgba(255,255,255,0.1); }

/* Checkout Responsive */
@media (max-width: 992px) {
  .ck-layout { grid-template-columns: 1fr; }
  .oc-layout { grid-template-columns: 1fr; }
  .ck-sidebar { position: static; }
  .ck-trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ck-address-cards { grid-template-columns: 1fr; }
  .ck-review-cards { grid-template-columns: 1fr; }
  .ck-progress__label { font-size: 0.55rem; }
  .ck-progress__dot { width: 30px; height: 30px; font-size: 0.72rem; }
  .ck-trust__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Related Product Card (override for PDP) */
.product-card--listing { position: relative; }

/* PDP Inline Icon Helpers */
.pdp__icon-inline { width: 16px; height: 16px; vertical-align: middle; margin-right: 4px; }
.pdp__icon-btn { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.pdp__iframe { border-radius: 8px; }
.pdp-tabs__panel h3 { margin-bottom: 12px; }
.pdp-tabs__panel > p { color: var(--color-text-secondary); margin-bottom: 24px; line-height: 1.6; }
.pdp-spec-table tr.pdp-spec-table__total { font-weight: 700; }
.pdp-related__grid { gap: var(--space-5); }

/* PDP Responsive */
@media (max-width: 992px) {
  .pdp__layout { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .pdp-tabs__two-col { grid-template-columns: 1fr; }
  .pdp__trust { flex-wrap: wrap; justify-content: flex-start; }
}
@media (max-width: 576px) {
  .pdp__title { font-size: var(--font-size-2xl); }
  .pdp__cart-row { flex-direction: column; }
  .pdp-tabs__nav { overflow-x: auto; }
  .pdp-tabs__btn { white-space: nowrap; padding: 10px 16px; font-size: 13px; }
  .pdp__swatches { gap: 8px; }
  .pdp__swatch-color { width: 32px; height: 32px; }
}

/* Low Stock badge - listing page */
.stock-badge--low {
    background: #fff3cd !important;
    color: #856404 !important;
}

/* Low Stock badge - PDP */
.pdp-stock-badge--low {
    background: #fff3cd;
    color: #856404;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Low Stock badge - basket */
.cart-item__stock--low {
    color: #e67e22;
    background: #fef3e2;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.82em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
