/* ============================================================
   HYDZ LEATHER BY ZAID — Premium Enquiry Website
   Inspired by ThreeSixty.life design aesthetics
   ============================================================ */

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

/* ---- Design Tokens ---- */
:root {
  /* Color Palette — Warm luxury leather tones */
  --color-bg:           #faf8f5;
  --color-bg-alt:       #f3efe9;
  --color-bg-dark:      #1a1410;
  --color-bg-hero:      #0d0b09;
  --color-cream:        #faf8f5;
  --color-warm-white:   #f5f0eb;
  --color-text:         #2c2420;
  --color-text-light:   #6b5e54;
  --color-text-muted:   #9a8d82;
  --color-gold:         #c9a96e;
  --color-gold-dark:    #a8873d;
  --color-gold-light:   #dfc89a;
  --color-leather:      #8b5e3c;
  --color-cognac:       #a0522d;
  --color-tan:          #d4a574;
  --color-burgundy:     #6b1d2a;
  --color-dark-brown:   #3a2a1e;
  --color-border:       #e5ddd3;
  --color-border-light: #ede7de;
  --color-overlay:      rgba(13, 11, 9, 0.55);
  --color-overlay-dark: rgba(13, 11, 9, 0.75);
  --color-white:        #ffffff;
  --color-black:        #0d0b09;

  /* Typography */
  --font-heading:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:   'Playfair Display', Georgia, serif;

  /* Font Sizes */
  --fs-display:   clamp(3rem, 6vw, 5.5rem);
  --fs-h1:        clamp(2.2rem, 4vw, 3.5rem);
  --fs-h2:        clamp(1.8rem, 3vw, 2.8rem);
  --fs-h3:        clamp(1.3rem, 2vw, 1.8rem);
  --fs-h4:        clamp(1.1rem, 1.5vw, 1.4rem);
  --fs-body:      1rem;
  --fs-body-lg:   1.125rem;
  --fs-small:     0.875rem;
  --fs-xs:        0.75rem;
  --fs-label:     0.8125rem;

  /* Spacing */
  --space-xs:     0.5rem;
  --space-sm:     1rem;
  --space-md:     1.5rem;
  --space-lg:     2.5rem;
  --space-xl:     4rem;
  --space-2xl:    6rem;
  --space-3xl:    8rem;
  --space-section: clamp(5rem, 10vw, 8rem);

  /* Layout */
  --max-width:     1320px;
  --max-width-sm:  900px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* Transitions */
  --ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out:  cubic-bezier(0.42, 0, 0.58, 1);
  --ease-smooth:  cubic-bezier(0.22, 1, 0.36, 1);
  --duration:     0.4s;
  --duration-fast: 0.25s;
  --duration-slow: 0.7s;

  /* Borders & Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:   0 16px 60px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

/* ---- Utility Classes ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--sm {
  max-width: var(--max-width-sm);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--color-bg-dark);
  color: var(--color-gold-light);
  padding: 10px var(--container-pad);
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  overflow: hidden;
  height: 38px;
  transition: transform var(--duration) var(--ease-out);
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  animation: announceScroll 20s linear infinite;
}

@keyframes announceScroll {
  0%, 30%   { transform: translateX(0); }
  35%, 65%  { transform: translateX(-33.33%); }
  70%, 100% { transform: translateX(-66.66%); }
}

.announcement-bar span {
  white-space: nowrap;
  flex-shrink: 0;
}

.announcement-bar .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--container-pad);
  transition: all var(--duration) var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.navbar.scrolled .nav__logo-text,
.navbar.scrolled .nav__links a,
.navbar.scrolled .nav__cta {
  color: var(--color-text);
}

.navbar.scrolled .nav__cta {
  background: var(--color-bg-dark);
  color: var(--color-cream);
}

.navbar.scrolled .nav__cta:hover {
  background: var(--color-gold-dark);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.04em;
  transition: color var(--duration) var(--ease-out);
}

.nav__logo-text span {
  font-weight: 300;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.nav__links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--duration) var(--ease-smooth);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-bg-dark);
  background: var(--color-white);
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 8px;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--duration-fast) var(--ease-out);
  transform-origin: center;
}

.navbar.scrolled .nav__mobile-toggle span {
  background: var(--color-text);
}

.nav__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Menu (hidden on desktop) ---- */
.mobile-menu {
  display: none;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-hero);
  margin-top: 38px;
  padding-top: 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}

.hero.loaded .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 11, 9, 0.3) 0%,
    rgba(13, 11, 9, 0.5) 50%,
    rgba(13, 11, 9, 0.8) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--container-pad);
  max-width: 800px;
  margin-bottom: 60px;
}

.hero__logo {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-smooth) 0.3s forwards;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-smooth) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-smooth) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-smooth) 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 12px 28px;
  font-size: var(--fs-xs);
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease-smooth) 1.2s forwards;
  opacity: 0;
  pointer-events: none;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

/* ---- Category Navigation Bar ---- */
.category-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-md) 0;
  position: sticky;
  top: 110px;
  z-index: 50;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-bar::-webkit-scrollbar { display: none; }

.category-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  min-width: max-content;
}

.category-bar__item {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.category-bar__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--duration) var(--ease-smooth);
}

.category-bar__item:hover,
.category-bar__item.active {
  color: var(--color-text);
}

.category-bar__item:hover::after,
.category-bar__item.active::after {
  width: 100%;
}

/* ---- About / Story Section ---- */
.story {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.story__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.story__image:hover img {
  transform: scale(1.03);
}

.story__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.story__content {
  padding: var(--space-lg) 0;
}

.story__text {
  font-size: var(--fs-body-lg);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--color-gold-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- Product Categories Section (ThreeSixty-style grid) ---- */
.categories {
  padding: var(--space-section) 0;
  background: var(--color-bg-alt);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.category-card--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.category-card--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(13, 11, 9, 0.7) 100%
  );
  transition: background var(--duration) var(--ease-out);
}

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

.category-card:hover .category-card__overlay {
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(13, 11, 9, 0.8) 100%
  );
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  color: var(--color-white);
  z-index: 2;
  transform: translateY(10px);
  transition: transform var(--duration) var(--ease-out);
}

.category-card:hover .category-card__content {
  transform: translateY(0);
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  margin-bottom: 4px;
}

.category-card__desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease-out);
}

.category-card:hover .category-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.category-card__arrow {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  opacity: 0;
  transform: translate(10px, -10px);
  transition: all var(--duration) var(--ease-out);
  z-index: 2;
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- Featured Products / Gallery Carousel ---- */
.featured {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.featured__header .view-all {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-gold-dark);
  transition: all var(--duration-fast) var(--ease-out);
}

.featured__header .view-all:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  gap: 10px;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--duration-slow) var(--ease-smooth);
  cursor: grab;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__track.no-transition {
  transition: none;
}

.product-card {
  flex: 0 0 calc(25% - var(--space-md) * 3 / 4);
  min-width: 280px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.product-card__quick-view {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 10px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-card__info {
  padding: var(--space-md);
}

.product-card__category {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__moq {
  font-size: var(--fs-xs);
  color: var(--color-gold-dark);
  font-weight: 500;
}

/* Carousel Controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.25rem;
  transition: all var(--duration-fast) var(--ease-out);
  background: var(--color-white);
}

.carousel__btn:hover {
  background: var(--color-bg-dark);
  color: var(--color-white);
  border-color: var(--color-bg-dark);
}

.carousel__dots {
  display: flex;
  gap: 6px;
  margin: 0 var(--space-sm);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.carousel__dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 100px;
}

/* ---- Full-width Feature Banner ---- */
.feature-banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-banner__bg {
  position: absolute;
  inset: 0;
}

.feature-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
}

.feature-banner__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 600px;
  padding: 0 var(--container-pad);
  margin: 0 auto;
  text-align: center;
}

.feature-banner__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-sm);
}

.feature-banner__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 400;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.feature-banner__text {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

/* ---- Product Gallery with Lightbox ---- */
.gallery {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.gallery__filters {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.gallery__filter {
  padding: 10px 24px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: transparent;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.gallery__filter:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

.gallery__filter.active {
  background: var(--color-bg-dark);
  color: var(--color-cream);
  border-color: var(--color-bg-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

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

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.9) 0%, rgba(13, 11, 9, 0.4) 60%, rgba(13, 11, 9, 0.05) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--space-md);
  text-align: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--color-bg-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: auto;
  height: auto;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--duration) var(--ease-out);
  margin-top: 0.25rem;
}

.gallery__item:hover .gallery__item-icon {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item-icon:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease-out);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
  z-index: 2;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.95);
  transition: transform var(--duration) var(--ease-smooth);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---- Why Choose Us / Features ---- */
.features {
  padding: var(--space-section) 0;
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.features .section-title {
  color: var(--color-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-cream);
  position: relative;
  z-index: 1;
}

.feature-card__text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---- MOQ Section ---- */
.moq-section {
  padding: var(--space-section) 0;
  background: var(--color-bg-alt);
}

.moq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.moq__content h3 {
  font-size: var(--fs-h3);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.moq__content p {
  font-size: var(--fs-body);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.moq__highlight {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}

.moq__highlight-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 600;
  color: var(--color-gold-dark);
  line-height: 1;
  white-space: nowrap;
}

.moq__highlight-text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: 1.5;
}

.moq__reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.moq__reason {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.moq__reason-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.moq__reason-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-text);
  margin-bottom: 4px;
}

.moq__reason-text {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.moq__visual {
  position: relative;
}

.moq__visual-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

/* ---- Testimonials / Reviews Section ---- */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  animation: scrollTestimonials 30s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

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

.testimonial-card {
  flex: 0 0 380px;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--duration) var(--ease-out);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-light);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: var(--fs-body);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__author {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ---- Enquiry Form Section ---- */
.enquiry {
  padding: var(--space-section) 0;
  background: var(--color-bg-alt);
}

.enquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.enquiry__info {
  padding: var(--space-xl) 0;
}

.enquiry__info .section-title {
  margin-bottom: var(--space-md);
}

.enquiry__info-text {
  font-size: var(--fs-body-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.enquiry__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.enquiry__contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-gold-dark);
  flex-shrink: 0;
}

.enquiry__contact-text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

.enquiry__contact-text strong {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 2px;
}

.enquiry__form-wrap {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.form__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form__group {
  position: relative;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form__input::placeholder {
  color: var(--color-text-muted);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a8d82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__submit {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ---- Process Section ---- */
.process {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-xl);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--color-border);
}

.process-step {
  text-align: center;
  padding: 0 var(--space-md);
  position: relative;
}

.process-step__number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-gold-dark);
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all var(--duration) var(--ease-out);
}

.process-step:hover .process-step__number {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-text);
  margin-bottom: 6px;
}

.process-step__desc {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-cream);
  padding: var(--space-2xl) 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-cream);
}

.footer__brand-name span {
  color: var(--color-gold);
}

.footer__brand-text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__links a:hover {
  color: var(--color-gold-light);
  padding-left: 4px;
}

.footer__newsletter {
  margin-bottom: var(--space-md);
}

.footer__newsletter p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
}

.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-cream);
  font-size: var(--fs-small);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer__newsletter-input:focus {
  border-color: var(--color-gold);
}

.footer__newsletter-btn {
  padding: 12px 20px;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__newsletter-btn:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}

.footer__bottom {
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer__bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links a:hover {
  color: var(--color-gold-light);
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth),
              transform 0.8s var(--ease-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-smooth),
              transform 0.8s var(--ease-smooth);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-smooth),
              transform 0.8s var(--ease-smooth);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-smooth),
              transform 0.8s var(--ease-smooth);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card--wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .category-card--tall {
    grid-row: span 1;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .process__steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  /* Mobile Menu Overlay */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease-out);
  }

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

  .mobile-menu a {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    color: var(--color-text);
    transition: color var(--duration-fast) var(--ease-out);
  }

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

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .story__image {
    aspect-ratio: 16/10;
  }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

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

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

  .moq__visual {
    order: -1;
  }

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

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

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .category-bar__inner {
    justify-content: flex-start;
  }

  .announcement-bar__inner {
    animation: none;
  }
}

@media (max-width: 480px) {
  .story__stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

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

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

  .testimonial-card {
    flex: 0 0 300px;
  }

  .product-card {
    min-width: 240px;
  }
}

/* ============================================================
   NEW FUNCTIONAL EXTENSIONS: B2B Calculator, Bio, Modals & Widgets
   ============================================================ */

/* ---- Gold Button Variant ---- */
.btn--gold {
  background: var(--color-gold);
  color: var(--color-bg-hero);
  font-weight: 600;
  border: 1px solid var(--color-gold-light);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

/* ---- Nav Actions ---- */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__catalog-btn {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  padding: 8px 16px;
  font-size: 0.8rem;
}
.nav__catalog-btn:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

/* ---- Master Craftsman Section ---- */
.craftsman-section {
  padding: var(--space-section) 0;
  background-color: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.craftsman__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
}

.craftsman__quote {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-style: italic;
  color: var(--color-cognac);
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
  line-height: 1.5;
}

.craftsman__bio {
  font-size: var(--fs-body);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.craftsman__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.craftsman__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-cream);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: var(--fs-small);
  color: var(--color-text);

}

.craftsman__badge--accent {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--color-gold);
  color: var(--color-dark-brown);
  font-weight: 600;
}

.badge__icon {
  color: var(--color-gold-dark);
  font-weight: bold;
}

.craftsman__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.craftsman__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.craftsman__image-overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.9), transparent);
  padding: var(--space-md);
  color: var(--color-gold-light);
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
}

/* ---- B2B MOQ Calculator Section ---- */
.calculator-section {
  padding: var(--space-section) 0;
  background-color: var(--color-bg);
}

.calc__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  background: var(--color-white);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  margin-top: var(--space-lg);
}

.calc__group {
  margin-bottom: var(--space-lg);
}

.calc__label {
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  display: block;
}

.calc__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc__qty-display {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-gold-dark);
  font-weight: 600;
}

.calc__radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.calc__radio-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  text-align: center;
}

.calc__radio-btn input {
  display: none;
}

.calc__radio-btn.active,
.calc__radio-btn:hover {
  background: var(--color-dark-brown);
  color: var(--color-gold-light);
  border-color: var(--color-gold);
}

.calc__range {
  width: 100%;
  accent-color: var(--color-gold);
  height: 6px;
  background: var(--color-bg-alt);
  border-radius: 3px;
  outline: none;
  margin-top: 0.5rem;
}

.calc__range-markers {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.calc__marker-moq {
  color: var(--color-cognac);
  font-weight: 600;
}

.calc__moq-warning {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: var(--radius-md);
  color: #856404;
  font-size: var(--fs-xs);
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

.calc__checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.calc__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
}
.calc__checkbox:has(input:checked) {
  border-color: var(--color-gold);
  color: var(--color-text);
  background: rgba(201, 169, 110, 0.1);
}

.calc__results {
  background: var(--color-bg-dark);
  color: var(--color-cream);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc__results-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-gold-light);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

.calc__result-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.calc__metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.calc__metric-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.calc__metric-value {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-white);
}

.calc__metric-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  background: #2d8a4e;
  color: #fff;
}
.calc__metric-badge.warn {
  background: #d97706;
}

.calc__apply-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ---- Gallery Search Wrap ---- */
.gallery__search-wrap {
  max-width: 600px;
  margin: 0 auto var(--space-md);
  position: relative;
}

#gallery-search {
  width: 100%;
  padding: 12px 40px 12px 18px;
  border-radius: 30px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: all var(--duration-fast) var(--ease-out);
}
#gallery-search:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.25);
}

.search-clear-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--color-text-muted);
  font-weight: bold;
}

.gallery__item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--color-cream);
  margin-bottom: 0.3rem;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease-out);
}

.gallery__item:hover .gallery__item-title {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Gallery Pagination System ---- */
.gallery__pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.gallery__status-counter {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

.gallery__status-counter strong {
  color: var(--color-dark-brown);
  font-weight: 600;
}

.gallery__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.page-btn:hover:not(:disabled) {
  border-color: var(--color-gold);
  color: var(--color-dark-brown);
  background: var(--color-bg-alt);
  transform: translateY(-2px);
}

.page-btn.active {
  background: var(--color-bg-dark);
  color: var(--color-gold);
  border-color: var(--color-dark-brown);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ---- Modals System ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 9, 0.8);
  backdrop-filter: blur(5px);
}

.modal__content {
  position: relative;
  z-index: 2001;
  background: var(--color-white);
  width: 100%;
  max-width: 850px;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__content--sm {
  max-width: 480px;
}

.modal__content--md {
  max-width: 650px;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2005;
}
.modal__close:hover {
  color: var(--color-black);
}

/* Product Spec Modal */
.product-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

.product-modal__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
}
.product-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__badge {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.product-modal__title {
  font-size: var(--fs-h2);
  margin: 0.25rem 0 0.5rem;
}

.product-modal__desc {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.product-modal__specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
}
.spec-key {
  color: var(--color-text-muted);
}
.spec-val {
  font-weight: 600;
  color: var(--color-text);
}

.product-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Confirmation Modal */
.confirm-modal__icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.confirm-modal__title {
  font-size: var(--fs-h2);
  margin-bottom: 0.5rem;
}

.confirm-modal__text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

.confirm-modal__summary {
  background: var(--color-bg-alt);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin: 1rem 0;
  text-align: left;
  font-size: var(--fs-xs);
  line-height: 1.6;
  border: 1px solid var(--color-border);
}

.confirm-modal__note {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Catalog Modal */
.catalog-modal__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.catalog-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  gap: 1rem;
}
.catalog-item h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.catalog-item p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

/* ---- Floating Action Buttons Widget ---- */
.floating-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all var(--duration-fast) var(--ease-out);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn svg {
  display: block;
  transition: transform 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.08);
}

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

/* Floating Tooltips */
.floating-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--color-bg-dark);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.05em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-btn--whatsapp {
  background: #25D366;
  color: #ffffff;
}
.floating-btn--whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.floating-btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}
.floating-btn--instagram:hover {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.footer__social-link--whatsapp:hover {
  background: #25D366;
  color: #ffffff;
}

.footer__social-link--instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.floating-btn--calc {
  background: #241c17;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.floating-btn--calc:hover {
  background: #332720;
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.floating-btn--email {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}
.floating-btn--email:hover {
  background: #d4b57b;
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.floating-btn--top {
  background: rgba(13, 11, 9, 0.85);
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
}
.floating-btn--top.active {
  opacity: 1;
  visibility: visible;
}
.floating-btn--top:hover {
  background: var(--color-bg-dark);
  border-color: var(--color-gold);
}

/* Responsive fixes for new features */
@media (max-width: 900px) {
  .craftsman__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .calc__wrapper {
    grid-template-columns: 1fr;
  }
  .product-modal__grid {
    grid-template-columns: 1fr;
  }
  .calc__radio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .calc__radio-grid {
    grid-template-columns: 1fr;
  }
  .calc__checkbox-grid {
    grid-template-columns: 1fr;
  }
  .catalog-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

