/* ============================================================
   ARTORA — Premium Handmade Macramé Brand
   style.css — Master Stylesheet
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --color-primary: #403333;
  --color-secondary: #D5D2CC;
  --color-accent: #C8A97E;
  --color-dark: #2B2525;
  --color-surface: #F6F4F1;
  --color-surface-mid: #EAE7E2;
  --color-white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(64, 51, 51, 0.07);
  --shadow-md: 0 8px 32px rgba(64, 51, 51, 0.12);
  --shadow-lg: 0 20px 60px rgba(64, 51, 51, 0.16);

  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
  --transition-slow: 0.7s ease;

  --nav-height: 80px;
  --section-padding: 96px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-primary);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.05rem;
}

p {
  font-size: 1rem;
  color: #5a4e4e;
  line-height: 1.8;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

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

/* ── Utilities ── */
.section-pad {
  padding: var(--section-padding) 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-surface-mid {
  background-color: var(--color-surface-mid);
}

.bg-dark {
  background-color: var(--color-dark);
}

.bg-primary {
  background-color: var(--color-primary);
}

.rounded-card {
  border-radius: var(--radius-lg);
}

.label-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-header {
  margin-bottom: 56px;
}

.section-header .label-text {
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 0 auto;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 20px 0;
}

.center .divider-line {
  margin: 20px auto;
}

/* ── Buttons ── */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-med);
}

.btn-primary-brand:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-med);
}

.btn-outline-brand:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-accent-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--color-accent);
  cursor: pointer;
  transition: all var(--transition-med);
}

.btn-accent-brand:hover {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* White variants */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition-med);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.artora-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition-med), box-shadow var(--transition-med), backdrop-filter var(--transition-med);
}

.artora-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(64, 51, 51, 0.08);
}

.artora-nav.dark-nav {
  background: rgba(43, 37, 37, 0.95);
  backdrop-filter: blur(16px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo .logo-wordmark {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.artora-nav.dark-nav .logo-wordmark {
  color: var(--color-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  position: relative;
}

.artora-nav.dark-nav .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

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

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-cta .btn-primary-brand {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.artora-nav.dark-nav .hamburger span {
  background: var(--color-white);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 32px;
  display: none;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-med);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-surface-mid);
}

.mobile-menu a:hover {
  color: var(--color-accent);
}

.mobile-menu a.btn-primary-brand {
  color: var(--color-white);
  border-bottom: none;
}

.mobile-menu a.btn-primary-brand:hover {
  color: var(--color-primary);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: var(--color-surface);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(200, 169, 126, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(64, 51, 51, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: 60px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-label .label-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: #6e5f5f;
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat .stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7a7a;
  margin-top: 4px;
}

/* Hero Image Side */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 480px;
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 540px;
  z-index: 2;
  position: relative;
}

.hero-float-badge {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-float-badge.badge-1 {
  bottom: 80px;
  left: -32px;
}

.hero-float-badge.badge-2 {
  top: 80px;
  right: -20px;
}

.float-badge-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.float-badge-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.float-badge-sub {
  font-size: 0.75rem;
  color: #8a7a7a;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-surface-mid);
  z-index: 0;
}

.hero-bg-circle-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  right: -60px;
  background: rgba(200, 169, 126, 0.15);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.scroll-indicator .scroll-text {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a7a7a;
}

.scroll-indicator .scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
  flex-shrink: 0;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-img-wrap img {
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.product-card-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-med);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.card-icon-btn {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.card-icon-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.product-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-id {
  font-size: 0.75rem;
  color: #a09090;
  margin-bottom: 4px;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-card-desc {
  font-size: 0.85rem;
  color: #7a6a6a;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-card-footer .btn-outline-brand,
.product-card-footer .btn-accent-brand {
  flex: 1;
  justify-content: center;
  padding: 10px 12px;
  font-size: 0.82rem;
}

/* ══════════════════════════════════════
   FEATURED PRODUCTS SECTION
══════════════════════════════════════ */
.featured-products {
  background: var(--color-white);
}

/* ══════════════════════════════════════
   ABOUT STRIP (homepage)
   ────────────────────────────────────
   Uses Bootstrap row/col — NOT custom
   CSS grid. This ensures the container's
   equal padding applies correctly on
   both left and right sides.
══════════════════════════════════════ */
.about-strip {
  background: var(--color-surface);
}

/* Image block — fills the Bootstrap col nicely */
.about-strip-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.about-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* On mobile: let the image breathe with auto height */
@media (max-width: 991px) {
  .about-strip-img {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }
}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-us {
  background: var(--color-primary);
}

.why-us h2 {
  color: var(--color-white);
}

.why-us .divider-line {
  background: var(--color-accent);
}

.why-us .section-header .label-text {
  color: rgba(200, 169, 126, 0.9);
}

.why-us p {
  color: rgba(255, 255, 255, 0.65);
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-med);
  text-align: center;
  height: 100%;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(200, 169, 126, 0.4);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  color: var(--color-accent);
  transition: all var(--transition-med);
}

.feature-card:hover .feature-icon {
  background: var(--color-accent);
  color: var(--color-white);
}

.feature-card h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════ */
.reviews-section {
  background: var(--color-surface);
}

/* Give the Swiper room below the slides for the pagination dots */
#reviews-swiper {
  padding-bottom: 52px !important;
  /* space for dots below cards */
}

/* Fixed-height cards with flex layout so author always pins to bottom */
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  min-height: 280px;
  /* uniform card height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-surface-mid);
  line-height: 1;
  z-index: 0;
}

.review-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  /* fills available space inside flex card */
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  /* pushes author block to card bottom */
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.review-location {
  font-size: 0.78rem;
  color: #8a7a7a;
}

/* Swiper pagination dots — spaced below cards */
.reviews-section .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.reviews-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.reviews-section .swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════ */
.gallery-section {
  background: var(--color-white);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(64, 51, 51, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(64, 51, 51, 0.35);
}

.gallery-overlay-icon {
  color: var(--color-white);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-med);
}

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '\f105';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.75rem;
  color: var(--color-accent);
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 3px;
  font-size: 0.9rem;
}

.footer-contact-item span {
  font-size: 0.87rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-accent);
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: var(--color-surface);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200, 169, 126, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(64, 51, 51, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #8a7a7a;
  margin-bottom: 16px;
}

.page-hero-breadcrumb a {
  color: var(--color-accent);
}

.page-hero-breadcrumb span {
  font-size: 0.7rem;
}

/* ══════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════ */
.products-filter-bar {
  background: var(--color-white);
  padding: 32px 0;
  border-bottom: 1px solid var(--color-surface-mid);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  box-shadow: 0 2px 12px rgba(64, 51, 51, 0.04);
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 340px;
}

.search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a09090;
  font-size: 0.9rem;
}

.search-wrap input {
  width: 100%;
  background: var(--color-surface);
  border: 1.5px solid var(--color-surface-mid);
  border-radius: 50px;
  padding: 11px 16px 11px 40px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-wrap input:focus {
  border-color: var(--color-accent);
}

.search-wrap input::placeholder {
  color: #b0a0a0;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  background: transparent;
  border: 1.5px solid var(--color-surface-mid);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: #7a6a6a;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.products-grid-section {
  padding: 60px 0 96px;
  background: var(--color-surface);
}

.products-count {
  font-size: 0.85rem;
  color: #8a7a7a;
  margin-bottom: 32px;
}

.products-count span {
  font-weight: 600;
  color: var(--color-primary);
}

.no-results {
  text-align: center;
  padding: 80px 0;
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results i {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.no-results h4 {
  margin-bottom: 8px;
}

.no-results p {
  color: #8a7a7a;
}

/* ══════════════════════════════════════
   PRODUCT DETAILS PAGE
══════════════════════════════════════ */
.product-detail-section {
  padding: 60px 0 96px;
  background: var(--color-white);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
  position: relative;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.product-thumb.active {
  border-color: var(--color-accent);
}

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

.product-detail-info {
  padding-top: 8px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.availability-badge.available {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.availability-badge.made-to-order {
  background: rgba(200, 169, 126, 0.15);
  color: var(--color-accent);
}

.availability-badge i {
  font-size: 0.5rem;
}

.product-detail-name {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 16px 0 8px;
}

.product-detail-id {
  font-size: 0.82rem;
  color: #a09090;
  margin-bottom: 4px;
}

.product-detail-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 16px 0 24px;
}

.product-meta-table {
  border-top: 1px solid var(--color-surface-mid);
  padding-top: 24px;
  margin-bottom: 28px;
}

.meta-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-surface-mid);
  font-size: 0.9rem;
}

.meta-label {
  font-weight: 600;
  color: var(--color-primary);
  width: 120px;
  flex-shrink: 0;
}

.meta-value {
  color: #6e5f5f;
}

.product-detail-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #5a4e4e;
  margin-bottom: 32px;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-detail-actions .btn-accent-brand {
  font-size: 1rem;
  padding: 16px 36px;
}

.product-detail-actions .btn-outline-brand {
  padding: 16px 24px;
}

/* ══════════════════════════════════════
   ENQUIRY MODAL
══════════════════════════════════════ */
.enquiry-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 37, 37, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.enquiry-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.enquiry-modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform var(--transition-med);
  box-shadow: var(--shadow-lg);
}

.enquiry-modal-backdrop.open .enquiry-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

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

.modal-product-info {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-product-info .modal-product-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.modal-product-info .modal-product-id-price {
  font-size: 0.82rem;
  color: #8a7a7a;
}

.modal-product-info .modal-product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-control-brand {
  width: 100%;
  background: var(--color-surface);
  border: 1.5px solid var(--color-surface-mid);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-primary);
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
}

.form-control-brand:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
}

.form-control-brand::placeholder {
  color: #b0a0a0;
}

textarea.form-control-brand {
  resize: vertical;
  min-height: 100px;
}

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

.form-success-msg {
  text-align: center;
  padding: 24px 0;
  display: none;
}

.form-success-msg.show {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 12px;
}

.form-success-msg h4 {
  margin-bottom: 8px;
}

.form-success-msg p {
  font-size: 0.9rem;
  color: #7a6a6a;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  max-height: 580px;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile: stack, landscape aspect ratio */
@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-img {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }
}

.about-steps {
  counter-reset: step;
}

.about-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step-number {
  counter-increment: step;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h5 {
  margin-bottom: 6px;
  color: var(--color-primary);
}

.step-content p {
  font-size: 0.9rem;
}

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

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--color-surface-mid);
  transition: all var(--transition-med);
}

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

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h5 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.87rem;
  color: #7a6a6a;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: var(--color-primary);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(200, 169, 126, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(200, 169, 126, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2,
.cta-banner h3 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-banner .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section {
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}

.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 126, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-body h6 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.contact-info-body p {
  font-size: 0.87rem;
  color: #7a6a6a;
  margin: 0;
  line-height: 1.6;
}

.map-placeholder {
  background: var(--color-surface-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--color-secondary);
}

/* ══════════════════════════════════════
   SWIPER / SLIDER OVERRIDES
══════════════════════════════════════ */
.swiper-pagination-bullet {
  background: var(--color-secondary);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary) !important;
  background: var(--color-white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

/* ═══════════════════════════════════════
   AOS CUSTOM
   ─────────────────────────────────────
   Safety rule: [data-aos] elements must
   NEVER be permanently hidden. If AOS
   fails or a trigger misfires, these
   rules ensure content is always visible.
═══════════════════════════════════════ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* After 3 s, make ALL data-aos elements visible regardless of scroll position.
   This is the ultimate safety net – prevents permanently invisible headings. */
@keyframes aosRevealFallback {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 1;
    transform: none;
  }
}

[data-aos]:not(.aos-animate) {
  /* Delay 3 s then force visible – only triggers if AOS never fired */
  animation: aosRevealFallback 0s 3s forwards;
}

/* ══════════════════════════════════════
   LAZY LOAD PLACEHOLDER
══════════════════════════════════════ */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

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

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* about-story-grid responsive rules handled in component section */
}

@media (max-width: 992px) {
  :root {
    --section-padding: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 80px 0 60px;
  }

  .hero-visual {
    height: 420px;
    margin: 0 auto;
  }

  .hero-main-img {
    width: 380px;
    height: 420px;
  }

  /* .about-strip-grid removed — now Bootstrap col-lg-6 stacks automatically */
  /* .about-story-grid — responsive handled in component section */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px;
    --nav-height: 68px;
  }

  .nav-logo img {
    height: 26px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-float-badge {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .enquiry-modal {
    padding: 36px 24px;
  }

  .product-detail-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-card-footer {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .search-wrap {
    max-width: 100%;
  }
}

/* ── Loading Overlay ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-surface);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.loader-bar-wrap {
  width: 120px;
  height: 2px;
  background: var(--color-surface-mid);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--color-accent);
  width: 0;
  animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}