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

/* ============================================================
   PREMIUM LUXURY COLOR PALETTE — IN & OUT
   Dark Mode · Gold Accents · 2026 Editorial Aesthetic
   ============================================================ */
:root {
   --gold: #D4AF37;
   --gold-light: #F2D675;
   --gold-dark: #C89B3C;
   --gold-muted: #D4BC8B;
   --gold-glow: rgba(212, 175, 55, 0.12);
   --gold-glow-strong: rgba(212, 175, 55, 0.25);
   --black: #090909;
   --black-rich: #0D0D0D;
   --black-matte: #141414;
   --charcoal: #181818;
   --charcoal-light: #202020;
   --charcoal-lighter: #2A2A2A;
   --gray-soft: #8A8A8A;
   --gray-light: #B0B0B0;
   --gray-lighter: #C8C8C8;
   --gray-lightest: #E5E0D8;
   --bronze: #B8860B;
   --bronze-light: #D4A843;
   --bg-primary: #090909;
   --bg-secondary: #111111;
   --bg-dark: #090909;
   --bg-surface: #181818;
   --bg-cream: #111111;
   --text-primary: #FFFFFF;
   --text-secondary: #C8C8C8;
   --text-inverse: #090909;
   --text-muted: #8A8A8A;
   --text-gold: var(--gold);
   --border-color: rgba(212, 175, 55, 0.18);
   --border-light: rgba(212, 175, 55, 0.12);
   --border-dark: var(--charcoal-lighter);
   --border-gold: var(--gold);
   --accent-color: var(--gold);
   --accent-hover: var(--gold-dark);
   --accent-gold: var(--gold);
   --accent-gold-hover: var(--gold-dark);
   --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
   --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
   --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
   --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.45);
   --shadow-gold: 0 4px 24px var(--gold-glow);
   --shadow-gold-strong: 0 8px 32px rgba(212, 175, 55, 0.2);
   --glow-color: rgba(212, 175, 55, 0.08);
   --glow-gold: 0 0 20px var(--gold-glow);
   --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
   --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
   --font-sans: 'Plus Jakarta Sans', sans-serif;
   --font-serif: 'Playfair Display', serif;
}

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

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

::selection {
   background: var(--gold);
   color: var(--black);
}

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

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

button,
input,
select,
textarea {
   font-family: inherit;
   color: inherit;
   background: none;
   border: none;
   outline: none;
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(20px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes slideInRight {
   from {
      transform: translateX(100%);
   }

   to {
      transform: translateX(0);
   }
}

.container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
}

.section {
   padding: 5rem 0;
}

.flex-center {
   display: flex;
   align-items: center;
   justify-content: center;
}

.grid-cols-4 {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

@media (max-width: 1024px) {
   .grid-cols-4 {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 600px) {
   .grid-cols-4 {
      grid-template-columns: 1fr;
   }

   .container {
      padding: 0 1rem;
   }
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 600;
}

.font-serif {
   font-family: var(--font-serif);
}

.text-uppercase {
   text-transform: uppercase;
   letter-spacing: 0.15em;
}

/* ============================================================
   LOGO — 1:1 Aspect Ratio
   ============================================================ */
.logo {
   display: flex;
   align-items: center;
   text-decoration: none;
}

/* Logos scale by height with automatic width so any aspect ratio (square
   monogram or wide wordmark) renders proportionally — never stretched. */
.logo-img {
   height: 120px;
   width: auto;
   max-width: 230px;
   object-fit: contain;
   transition: var(--transition-smooth);
}

.logo:hover .logo-img {
   opacity: 0.85;
   transform: scale(0.97);
}

@media (max-width: 900px) {
   .logo-img {
      height: 120px;
      max-width: 200px;
   }
}

@media (max-width: 600px) {
   .logo-img {
      height: 100px;
      max-width: 180px;
   }
}

/* Mobile drawer logo — 52px square */
.mobile-logo {
   height: 120px;
   width: auto;
   max-width: 200px;
}

/* Footer logo — 64px square */
.footer-logo-img {
   height: 52px;
   width: auto;
   max-width: 220px;
   object-fit: contain;
   display: block;
   transition: var(--transition-smooth);
}

.footer-logo-img:hover {
   opacity: 0.85;
   transform: scale(0.97);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
   display: inline-block;
   padding: 1rem 2.5rem;
   background-color: var(--accent-color);
   color: var(--bg-primary);
   font-weight: 500;
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   cursor: pointer;
   transition: var(--transition-smooth);
   border: 1px solid var(--accent-color);
   text-align: center;
   position: relative;
   overflow: hidden;
}

.btn:hover {
   background-color: transparent;
   color: var(--accent-color);
   box-shadow: var(--shadow-gold);
}

.btn-secondary {
   background-color: transparent;
   color: var(--accent-color);
   border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
   background-color: var(--accent-color);
   color: var(--bg-primary);
}

.btn-gold {
   background-color: var(--gold);
   color: var(--black);
   border: 1px solid var(--gold);
}

.btn-gold:hover {
   background-color: var(--gold-dark);
   border-color: var(--gold-dark);
   color: #fff;
   box-shadow: var(--shadow-gold);
}

.btn-sm {
   padding: 0.6rem 1.2rem;
   font-size: 0.75rem;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
   border-bottom: 1px solid var(--border-color);
   position: sticky;
   top: 0;
   background: rgba(9, 9, 9, 0.92);
   backdrop-filter: blur(10px);
   z-index: 100;
}

.navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 140px;
}

.nav-links {
   display: flex;
   gap: 3rem;
   list-style: none;
   align-items: center;
}

.nav-link {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 500;
   position: relative;
   padding: 0.5rem 0;
}

.nav-link::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 1px;
   background-color: var(--gold);
   transition: var(--transition-smooth);
}

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

.nav-link:hover {
   color: var(--gold);
}

.nav-actions {
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.nav-action-btn {
   cursor: pointer;
   position: relative;
   padding: 0.5rem;
}

.nav-action-btn svg {
   width: 20px;
   height: 20px;
   fill: none;
   stroke: currentColor;
   stroke-width: 1.5;
   transition: var(--transition-smooth);
}

.nav-action-btn:hover svg {
   transform: scale(1.1);
}

.cart-count {
   position: absolute;
   top: -2px;
   right: -2px;
   background: var(--gold);
   color: var(--black);
   font-size: 0.7rem;
   font-weight: 700;
   width: 16px;
   height: 16px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
   height: 75vh;
   background-color: var(--bg-secondary);
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
}

.hero-content {
   max-width: 650px;
   z-index: 2;
   animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.25em;
   color: var(--gold-muted);
   margin-bottom: 1.5rem;
   display: block;
}

.hero-title {
   font-family: var(--font-serif);
   font-size: clamp(2.5rem, 5vw, 4rem);
   line-height: 1.1;
   margin-bottom: 2rem;
}

.hero-layout {
   position: relative;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.hero-description {
   margin-bottom: 2.5rem;
   color: var(--text-secondary);
   max-width: 480px;
   font-size: 0.95rem;
   line-height: 1.7;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.hero-bg {
   position: absolute;
   top: 0;
   right: 0;
   width: 50%;
   height: 100%;
   background-size: cover;
   background-position: center;
   filter: contrast(1.1);
   opacity: 0.9;
   transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-bg {
   transform: scale(1.03);
}

@media (min-width:768px) and (max-width:991px) {
   .hero {
      flex-direction: column;
      height: auto;
      padding: 3rem 0 0;
   }

   .hero-layout {
      flex-direction: column;
      text-align: center;
      padding: 0 2.5rem 2.5rem;
   }

   .hero-content {
      max-width: 100%;
   }

   .hero-description {
      max-width: 100%;
      margin: 0 auto 2rem;
   }

   .hero-buttons {
      justify-content: center;
   }

   .hero-bg {
      position: relative;
      width: 100%;
      height: 380px;
   }

   .hero:hover .hero-bg {
      transform: none;
   }
}

@media (max-width:767px) {
   .hero {
      flex-direction: column;
      height: auto;
      padding: 2.5rem 0 0;
   }

   .hero-layout {
      flex-direction: column;
      text-align: center;
      padding: 0 1.25rem 2rem;
   }

   .hero-content {
      max-width: 100%;
   }

   .hero-description {
      max-width: 100%;
      margin: 0 auto 1.8rem;
   }

   .hero-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
   }

   .hero-buttons .btn {
      width: 100%;
   }

   .hero-bg {
      position: relative;
      width: 100%;
      height: 280px;
   }

   .hero:hover .hero-bg {
      transform: none;
   }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section {
   background-color: var(--bg-primary);
}

.category-card {
   position: relative;
   height: 450px;
   overflow: hidden;
   cursor: pointer;
   background-color: var(--bg-secondary);
}

.category-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.9);
   transition: var(--transition-smooth);
}

.category-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 2.5rem;
   transition: var(--transition-smooth);
}

.category-title {
   color: #fff;
   font-family: var(--font-serif);
   font-size: 1.8rem;
   margin-bottom: 0.5rem;
}

.category-link {
   color: #fff;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   opacity: 0.8;
}

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

.category-card:hover .category-overlay {
   background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
   display: flex;
   flex-direction: column;
   position: relative;
   margin-bottom: 1.5rem;
}

.product-media {
   position: relative;
   background-color: var(--bg-secondary);
   aspect-ratio: 3/4;
   overflow: hidden;
   margin-bottom: 1.2rem;
   border: 1px solid var(--border-color);
}

.product-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition-smooth);
}

.product-img-hover {
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
}

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

.product-card:hover .product-img-hover {
   opacity: 1;
}

.product-badge {
   position: absolute;
   top: 1rem;
   left: 1rem;
   background-color: var(--gold);
   color: var(--black);
   font-size: 0.7rem;
   font-weight: 600;
   padding: 0.4rem 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   z-index: 10;
}

.product-badge.badge-new {
   background-color: var(--gold);
   color: var(--black);
}

.product-info {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
}

.product-category {
   font-size: 0.75rem;
   text-transform: uppercase;
   color: var(--text-secondary);
   letter-spacing: 0.1em;
}

.product-name {
   font-size: 1rem;
   font-weight: 500;
   line-height: 1.4;
}

.product-price-wrapper {
   display: flex;
   gap: 0.8rem;
   font-size: 0.95rem;
   font-weight: 600;
}

.original-price {
   text-decoration: line-through;
   color: var(--text-muted);
   font-weight: 400;
}

.discounted-price {
   color: var(--gold);
}

.quick-view-btn {
   position: absolute;
   bottom: 1.5rem;
   left: 50%;
   transform: translate(-50%, 20px);
   width: calc(100% - 3rem);
   background: var(--bg-surface);
   color: var(--text-primary);
   padding: 0.8rem 1rem;
   font-size: 0.75rem;
   text-transform: uppercase;
   font-weight: 600;
   letter-spacing: 0.1em;
   text-align: center;
   opacity: 0;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   transition: var(--transition-smooth);
   border: 1px solid var(--border-color);
}

.product-media:hover .quick-view-btn {
   opacity: 1;
   transform: translate(-50%, 0);
}

.quick-view-btn:hover {
   background: var(--gold);
   color: var(--black);
   border-color: var(--gold);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(4px);
   z-index: 1000;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
   opacity: 1;
   visibility: visible;
}

.cart-drawer {
   position: fixed;
   top: 0;
   right: 0;
   width: 480px;
   max-width: 100%;
   height: 100%;
   background-color: var(--bg-primary);
   box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
   z-index: 1001;
   transform: translateX(100%);
   transition: var(--transition-smooth);
   display: flex;
   flex-direction: column;
}

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

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

.cart-title {
   font-size: 1.25rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 600;
}

.close-cart-btn {
   cursor: pointer;
   font-size: 1.5rem;
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition-smooth);
}

.close-cart-btn:hover {
   transform: rotate(90deg);
}

.cart-body {
   flex-grow: 1;
   overflow-y: auto;
   padding: 2rem;
}

.cart-empty-message {
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   color: var(--text-muted);
   gap: 1.5rem;
}

.cart-empty-message svg {
   width: 60px;
   height: 60px;
   stroke: currentColor;
   stroke-width: 1;
   opacity: 0.5;
}

.cart-items-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.cart-item {
   display: flex;
   gap: 1.2rem;
   border-bottom: 1px solid var(--border-color);
   padding-bottom: 1.5rem;
}

.cart-item-img {
   width: 80px;
   height: 105px;
   object-fit: cover;
   background-color: var(--bg-secondary);
   border: 1px solid var(--border-color);
}

.cart-item-info {
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.cart-item-name {
   font-size: 0.95rem;
   font-weight: 500;
   margin-bottom: 0.2rem;
}

.cart-item-details {
   font-size: 0.8rem;
   color: var(--text-muted);
   margin-bottom: 0.5rem;
}

.cart-item-quantity-control {
   display: flex;
   align-items: center;
   border: 1px solid var(--border-color);
   width: fit-content;
}

.qty-btn {
   padding: 0.3rem 0.8rem;
   font-size: 0.85rem;
   cursor: pointer;
   user-select: none;
   transition: var(--transition-smooth);
}

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

.qty-val {
   padding: 0.3rem 0.6rem;
   font-size: 0.85rem;
   font-weight: 500;
}

.cart-item-right {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: flex-end;
}

.cart-item-price {
   font-weight: 600;
   font-size: 0.95rem;
}

.remove-cart-item-btn {
   cursor: pointer;
   font-size: 0.8rem;
   color: var(--text-muted);
   border-bottom: 1px solid transparent;
   transition: var(--transition-smooth);
}

.remove-cart-item-btn:hover {
   color: var(--text-primary);
   border-bottom-color: var(--text-primary);
}

.cart-footer {
   padding: 2rem;
   border-top: 1px solid var(--border-color);
   background-color: var(--bg-secondary);
}

.cart-summary-row {
   display: flex;
   justify-content: space-between;
   margin-bottom: 1.5rem;
   font-size: 1.05rem;
}

.cart-total-label {
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 500;
}

.cart-total-amount {
   font-weight: 700;
}

.cart-checkout-btn {
   width: 100%;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail-container {
   display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 5rem;
}

@media (max-width:900px) {
   .product-detail-container {
      grid-template-columns: 1fr;
      gap: 2.5rem;
   }
}

.product-gallery {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.gallery-main {
   background-color: var(--bg-secondary);
   border: 1px solid var(--border-color);
   aspect-ratio: 3/4;
   overflow: hidden;
}

.gallery-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition-smooth);
}

.gallery-thumbs {
   display: flex;
   gap: 1rem;
}

.gallery-thumb {
   width: 80px;
   aspect-ratio: 3/4;
   cursor: pointer;
   background-color: var(--bg-secondary);
   border: 1px solid var(--border-color);
   overflow: hidden;
   opacity: 0.6;
   transition: var(--transition-smooth);
}

.gallery-thumb.active,
.gallery-thumb:hover {
   opacity: 1;
   border-color: var(--gold);
}

.gallery-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.product-meta-details {
   display: flex;
   flex-direction: column;
   gap: 2rem;
}

.product-title {
   font-family: var(--font-serif);
   font-size: 2.5rem;
   line-height: 1.2;
}

.product-detail-price {
   font-size: 1.5rem;
   font-weight: 700;
}

.product-description {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.7;
   border-bottom: 1px solid var(--border-color);
   padding-bottom: 2rem;
}

.selector-label {
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 600;
   margin-bottom: 0.8rem;
}

.size-selector-list {
   display: flex;
   gap: 0.8rem;
   flex-wrap: wrap;
}

.size-option-btn {
   border: 1px solid var(--border-color);
   padding: 0.6rem 1.2rem;
   font-size: 0.85rem;
   cursor: pointer;
   transition: var(--transition-smooth);
   min-width: 50px;
   text-align: center;
}

.size-option-btn:hover {
   border-color: var(--gold);
}

.size-option-btn.active {
   background-color: var(--gold);
   color: var(--black);
   border-color: var(--gold);
}

.color-selector-list {
   display: flex;
   gap: 1rem;
}

.color-option-btn {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: 1px solid var(--border-color);
   cursor: pointer;
   position: relative;
}

.color-option-btn::after {
   content: '';
   position: absolute;
   top: -4px;
   left: -4px;
   right: -4px;
   bottom: -4px;
   border-radius: 50%;
   border: 1px solid transparent;
   transition: var(--transition-smooth);
}

.color-option-btn.active::after {
   border-color: var(--gold);
}

.size-option-btn:disabled,
.size-option-btn.unavailable {
   opacity: 0.35;
   cursor: not-allowed;
   text-decoration: line-through;
}

.size-option-btn:disabled:hover {
   border-color: var(--border-color);
}

.color-option-btn:disabled,
.color-option-btn.unavailable {
   cursor: not-allowed;
   opacity: 0.3;
   filter: grayscale(60%);
}

.color-option-btn:disabled::before {
   content: '';
   position: absolute;
   top: 50%;
   left: -6px;
   right: -6px;
   height: 1px;
   background: var(--text-secondary);
   transform: rotate(-45deg);
}

.product-actions .btn:disabled,
.product-actions .btn-secondary:disabled {
   opacity: 0.5;
   cursor: not-allowed;
   pointer-events: none;
}

.product-actions {
   display: flex;
   gap: 1rem;
   margin-top: 1rem;
}

.product-actions .btn {
   flex-grow: 1;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(4px);
   z-index: 2000;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition-smooth);
}

.modal-overlay.active {
   opacity: 1;
   visibility: visible;
}

.modal-card {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -40%);
   width: 480px;
   max-width: 90%;
   background-color: var(--bg-primary);
   border: 1px solid var(--border-color);
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
   z-index: 2001;
   transition: var(--transition-smooth);
   padding: 2.5rem;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.modal-overlay.active .modal-card {
   transform: translate(-50%, -50%);
}

.modal-title {
   font-size: 1.25rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 600;
   border-bottom: 1px solid var(--border-color);
   padding-bottom: 1rem;
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}

.form-label {
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 600;
}

.form-input {
   border: 1px solid var(--border-color);
   padding: 0.8rem 1rem;
   font-size: 0.9rem;
   transition: var(--transition-smooth);
   background-color: var(--bg-secondary);
}

.form-input:focus {
   border-color: var(--gold);
   background-color: var(--bg-surface);
   box-shadow: var(--shadow-gold);
}

/* ============================================================
   SHOP / FILTERS
   ============================================================ */
.shop-layout {
   display: grid;
   grid-template-columns: 240px 1fr;
   gap: 4rem;
}

@media (max-width:768px) {
   .shop-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
}

.filter-sidebar {
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
}

.filter-widget-title {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.15em;
   font-weight: 600;
   margin-bottom: 1.2rem;
   border-bottom: 1px solid var(--border-color);
   padding-bottom: 0.5rem;
}

.filter-links {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   font-size: 0.9rem;
}

.filter-link {
   cursor: pointer;
   color: var(--text-muted);
   display: flex;
   justify-content: space-between;
}

.filter-link:hover,
.filter-link.active {
   color: var(--gold);
   font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
   background-color: var(--bg-secondary);
   border-top: 1px solid var(--border-color);
   padding: 5rem 0 3rem;
   font-size: 0.9rem;
   color: var(--text-muted);
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 4rem;
}

@media (max-width:1024px) {
   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
   }
}

@media (max-width:600px) {
   .footer-grid {
      grid-template-columns: 1fr;
   }
}

.footer-widget-title-main {
   color: var(--text-primary);
   font-family: var(--font-serif);
   font-size: 1.4rem;
   letter-spacing: 0.1em;
   margin-bottom: 1.2rem;
}

.footer-widget-title-sub {
   color: var(--text-primary);
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.15em;
   font-weight: 600;
   margin-bottom: 1.5rem;
}

.footer-links {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.footer-links a:hover {
   color: var(--gold);
   padding-left: 3px;
}

.newsletter-form {
   display: flex;
   border-bottom: 1px solid var(--gold);
   padding-bottom: 0.5rem;
   margin-top: 1rem;
}

.newsletter-input {
   flex-grow: 1;
   font-size: 0.85rem;
}

.newsletter-btn {
   cursor: pointer;
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 600;
}

.footer-bottom {
   display: flex;
   justify-content: space-between;
   border-top: 1px solid var(--border-color);
   padding-top: 2rem;
   font-size: 0.8rem;
}

@media (max-width:600px) {
   .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
   }
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.enquiry-modal {
   width: 560px;
   max-height: 90vh;
   overflow-y: auto;
   position: relative;
   padding-top: 2.75rem;
}

.modal-close {
   position: absolute;
   top: 1rem;
   right: 1.25rem;
   font-size: 1.75rem;
   line-height: 1;
   color: var(--text-muted);
   cursor: pointer;
   background: none;
   border: none;
}

.modal-close:hover {
   color: var(--text-primary);
}

.form-grid-2 {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
}

.form-group-full {
   grid-column: 1 / -1;
}

.form-label .req {
   color: var(--gold);
}

.form-label .opt {
   color: var(--text-muted);
   font-weight: 400;
   text-transform: none;
   letter-spacing: 0;
}

textarea.form-input {
   resize: vertical;
   min-height: 70px;
   line-height: 1.5;
}

.enquiry-error {
   background-color: var(--bg-secondary);
   border: 1px solid var(--border-color);
   color: var(--text-secondary);
   padding: 0.75rem 1rem;
   font-size: 0.82rem;
   margin-bottom: 1rem;
}

.success-check {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background-color: var(--bg-secondary);
   border: 1px solid var(--gold);
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
}

@media (max-width:560px) {
   .enquiry-modal {
      padding: 2.5rem 1.25rem 1.5rem;
   }

   .form-grid-2 {
      grid-template-columns: 1fr;
   }

   .modal-buttons {
      flex-direction: column-reverse;
   }
}

/* ============================================================
   GRIDS
   ============================================================ */
.product-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

@media (max-width:1100px) {
   .product-grid {
      grid-template-columns: repeat(3, 1fr);
   }
}

@media (max-width:768px) {
   .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
   }
}

@media (max-width:420px) {
   .product-grid {
      gap: 0.85rem;
   }
}

.product-grid-scroll {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

@media (max-width:1100px) {
   .product-grid-scroll {
      grid-template-columns: repeat(3, 1fr);
   }
}

@media (max-width:768px) {
   .product-grid-scroll {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      padding-bottom: 1rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
   }

   .product-grid-scroll>* {
      flex: 0 0 46%;
      scroll-snap-align: start;
   }
}

@media (max-width:480px) {
   .product-grid-scroll>* {
      flex: 0 0 70%;
   }
}

.category-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

@media (max-width:768px) {
   .category-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
   }
}

@media (max-width:480px) {
   .category-grid {
      grid-template-columns: 1fr;
   }
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   padding: 0.4rem;
}

.mobile-menu-btn svg {
   width: 24px;
   height: 24px;
}

.has-mega {
   position: static;
}

.mega-trigger {
   display: inline-flex;
   align-items: center;
   background: none;
   border: none;
   cursor: pointer;
   font-family: inherit;
}

.mega-panel {
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   background: var(--bg-primary);
   border-top: 1px solid var(--border-color);
   border-bottom: 1px solid var(--border-color);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
   opacity: 0;
   visibility: hidden;
   transform: translateY(8px);
   transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
   z-index: 99;
}

.has-mega.open .mega-panel,
.has-mega:hover .mega-panel {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.mega-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
   gap: 2.5rem;
   padding: 2.5rem 0 3rem;
}

.mega-col-title {
   display: block;
   font-family: var(--font-serif);
   font-size: 1.05rem;
   font-weight: 600;
   margin-bottom: 1rem;
   padding-bottom: 0.5rem;
   border-bottom: 1px solid var(--border-color);
}

.mega-col-title:hover {
   color: var(--gold);
}

.mega-links {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
}

.mega-links a {
   font-size: 0.85rem;
   color: var(--text-muted);
}

.mega-links a:hover {
   color: var(--text-primary);
   padding-left: 4px;
}

.mega-feature {
   background: var(--bg-secondary);
   padding: 1.5rem;
}

.mega-feature-eyebrow {
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 0.15em;
   color: var(--text-muted);
}

.mega-feature-text {
   font-size: 0.85rem;
   margin: 0.5rem 0 1rem;
   line-height: 1.5;
}

.mega-viewall {
   display: inline-block;
   margin-top: 1rem;
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 600;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.6);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s, visibility 0.3s;
   z-index: 1500;
}

.mobile-nav-overlay.active {
   opacity: 1;
   visibility: visible;
}

.mobile-nav-drawer {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 84%;
   max-width: 340px;
   background: var(--bg-primary);
   transform: translateX(-100%);
   transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
   display: flex;
   flex-direction: column;
   overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-drawer {
   transform: translateX(0);
}

.mobile-nav-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1.25rem 1.5rem;
   border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
   background: none;
   border: none;
   font-size: 1.8rem;
   line-height: 1;
   cursor: pointer;
   color: var(--text-primary);
}

.mobile-nav-list {
   list-style: none;
   padding: 0.5rem 0;
}

.mobile-nav-list>li>a,
.mobile-accordion-trigger {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   padding: 1rem 1.5rem;
   font-size: 0.95rem;
   text-transform: uppercase;
   letter-spacing: 0.05em;
   background: none;
   border: none;
   cursor: pointer;
   font-family: inherit;
   color: var(--text-primary);
   text-align: left;
}

.mobile-nav-list>li {
   border-bottom: 1px solid var(--border-color);
}

.acc-icon {
   font-size: 1.2rem;
   color: var(--text-muted);
}

.mobile-accordion-body {
   list-style: none;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s;
   background: var(--bg-secondary);
}

.mobile-accordion.open .mobile-accordion-body {
   max-height: 500px;
}

.mobile-accordion-body li a {
   display: block;
   padding: 0.8rem 1.5rem 0.8rem 2.5rem;
   font-size: 0.85rem;
   color: var(--text-muted);
}

.mobile-accordion-body li a:hover {
   color: var(--text-primary);
}

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

   .mobile-menu-btn {
      display: inline-flex;
   }

   .navbar {
      height: 140px;
   }
}

/* ============================================================
   PAGE HERO / PROSE
   ============================================================ */
.page-hero {
   background: var(--bg-secondary);
   border-bottom: 1px solid var(--border-color);
   padding: 4rem 0 3.5rem;
   text-align: center;
}

.page-hero .eyebrow {
   font-size: 0.72rem;
   text-transform: uppercase;
   letter-spacing: 0.25em;
   color: var(--text-muted);
}

.page-hero h1 {
   font-family: var(--font-serif);
   font-size: clamp(2rem, 4vw, 2.8rem);
   margin-top: 0.75rem;
}

.page-hero p {
   max-width: 620px;
   margin: 1rem auto 0;
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.7;
}

.page-section {
   padding: 4rem 0;
}

.prose {
   max-width: 800px;
   margin: 0 auto;
}

.prose h2 {
   font-family: var(--font-serif);
   font-size: 1.6rem;
   margin: 2.5rem 0 1rem;
}

.prose h2:first-child {
   margin-top: 0;
}

.prose h3 {
   font-size: 1.05rem;
   margin: 1.75rem 0 0.6rem;
   font-weight: 600;
}

.prose p {
   color: var(--text-secondary);
   line-height: 1.8;
   margin-bottom: 1rem;
   font-size: 0.95rem;
}

.prose ul {
   margin: 0 0 1.25rem 1.25rem;
   color: var(--text-secondary);
   line-height: 1.8;
   font-size: 0.95rem;
}

.prose li {
   margin-bottom: 0.4rem;
}

.prose .muted {
   color: var(--text-muted);
   font-size: 0.85rem;
}

/* ============================================================
   VALUES / ABOUT
   ============================================================ */
.values-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
   margin-top: 1rem;
}

.value-card {
   border: 1px solid var(--border-color);
   padding: 1.75rem;
   background: var(--bg-surface);
}

.value-card h3 {
   font-family: var(--font-serif);
   font-size: 1.15rem;
   margin-bottom: 0.6rem;
}

.value-card p {
   font-size: 0.88rem;
   color: var(--text-secondary);
   line-height: 1.65;
   margin: 0;
}

@media (max-width: 768px) {
   .values-grid {
      grid-template-columns: 1fr;
   }

   .page-hero h1 {
      font-size: 2.1rem;
   }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 3rem;
   align-items: start;
}

@media (max-width: 860px) {
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
}

.contact-info-item {
   display: flex;
   gap: 0.9rem;
   align-items: flex-start;
   margin-bottom: 1.5rem;
}

.contact-info-item .ci-icon {
   width: 38px;
   height: 38px;
   flex-shrink: 0;
   border: 1px solid var(--border-color);
   display: flex;
   align-items: center;
   justify-content: center;
}

.contact-info-item .ci-icon svg {
   width: 18px;
   height: 18px;
   fill: none;
   stroke: currentColor;
   stroke-width: 1.6;
}

.contact-info-item h4 {
   font-size: 0.72rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--text-muted);
   margin-bottom: 0.2rem;
}

.contact-info-item a,
.contact-info-item p {
   font-size: 0.95rem;
   color: var(--text-primary);
}

.contact-card {
   border: 1px solid var(--border-color);
   padding: 2rem;
}

.contact-success {
   background: var(--bg-secondary);
   border: 1px solid var(--gold);
   color: var(--text-primary);
   padding: 1rem 1.25rem;
   margin-bottom: 1.5rem;
   font-size: 0.9rem;
}

.field-error {
   color: var(--text-muted);
   font-size: 0.78rem;
   margin-top: 0.3rem;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
   width: 6px;
   height: 6px;
}

::-webkit-scrollbar-track {
   background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
   background: var(--charcoal-lighter);
   border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
   background: var(--gold-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes goldPulse {

   0%,
   100% {
      box-shadow: 0 0 8px var(--gold-glow);
   }

   50% {
      box-shadow: 0 0 20px var(--gold-glow-strong);
   }
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.fade-in-up {
   animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up-delay-1 {
   animation-delay: 0.1s;
}

.fade-in-up-delay-2 {
   animation-delay: 0.2s;
}

.fade-in-up-delay-3 {
   animation-delay: 0.3s;
}

/* ============================================================
   ACCESSIBILITY (WCAG 2.1 AA) — added in UI/UX hardening pass
   ============================================================ */

/* Visually-hidden content that stays available to screen readers. */
.sr-only {
   position: absolute !important;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
}

/* Skip link: hidden until focused, then pinned top-left. */
.skip-link {
   position: absolute;
   top: -100px;
   left: 1rem;
   z-index: 2000;
   background: var(--gold);
   color: var(--black);
   padding: 0.75rem 1.25rem;
   border-radius: 0 0 6px 6px;
   font-weight: 600;
   font-size: 0.85rem;
   letter-spacing: 0.03em;
   text-decoration: none;
   transition: top 0.2s ease;
}

.skip-link:focus {
   top: 0;
   outline: 2px solid var(--black);
   outline-offset: 2px;
}

/* Visible keyboard focus indicator for all interactive elements.
   Uses :focus-visible so mouse users don't see a ring, only keyboard users. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
   outline: 2px solid var(--gold);
   outline-offset: 2px;
   border-radius: 3px;
}

/* Focus target for the skip link. */
main:focus {
   outline: none;
}

/* Respect users who prefer reduced motion. */
@media (prefers-reduced-motion: reduce) {

   *,
   *::before,
   *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
   }
}

/* ============================================================
   PAGINATION (themed — shared markup vendor/pagination/theme)
   ============================================================ */
.pagination {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: 0.4rem;
   margin: 2.5rem 0 0;
   padding: 0;
   list-style: none;
}

.pagination-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 40px;
   height: 40px;
   padding: 0 0.8rem;
   border: 1px solid var(--border-color);
   border-radius: 8px;
   background: transparent;
   color: var(--text-secondary);
   font-size: 0.85rem;
   font-weight: 500;
   text-decoration: none;
   transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pagination-btn:hover {
   border-color: var(--gold);
   color: var(--gold);
}

.pagination-btn.active {
   background: var(--gold);
   border-color: var(--gold);
   color: #0a0a0a;
   font-weight: 700;
   cursor: default;
}

.pagination-btn.disabled {
   opacity: 0.35;
   pointer-events: none;
}

.pagination-btn:focus-visible {
   outline: 2px solid var(--gold);
   outline-offset: 2px;
}

.pagination-dots {
   padding: 0 0.4rem;
   color: var(--text-muted);
}

@media (max-width: 480px) {
   .pagination-btn {
      min-width: 36px;
      height: 36px;
      padding: 0 0.55rem;
      font-size: 0.8rem;
   }
}