/* 
  =========================================
  InWooden Premium Custom Furniture Theme
  Global Stylesheet & Design System
  =========================================
*/

/* 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,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Color Palette */
  --bg-color: #FFFFFF;
  --primary-color: #9B6A34;
  --primary-hover: #2C1C10;
  --secondary-color: #B98947;
  --text-dark: #2C1C10;
  --text-light: #E7D5BE;
  --bg-beige: #FAF8F5;
  --border-color: rgba(155, 106, 52, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Spacing */
  --container-width: 1320px;
  
  /* Animation Timing */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Disabled for custom smooth scroll interpolation if needed */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.625;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-beige);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-dark);
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

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

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

/* Custom Cursor */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

.custom-cursor.hovered {
  width: 12px;
  height: 12px;
  background-color: var(--secondary-color);
}

.custom-cursor-ring.hovered {
  width: 60px;
  height: 60px;
  border-color: var(--secondary-color);
  background-color: rgba(185, 137, 71, 0.05);
}

/* Page Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: loaderTextFade 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.loader-bar {
  width: 180px;
  height: 1px;
  background-color: rgba(44, 28, 16, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--primary-color);
  animation: loaderProgress 2s forwards cubic-bezier(0.85, 0, 0.15, 1);
}

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

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

/* Global Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 140px 0;
  position: relative;
}

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

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
  display: inline-block;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.section-desc {
  max-width: 600px;
  color: rgba(44, 28, 16, 0.7);
  margin-bottom: 60px;
  font-size: 1.1rem;
}

/* Premium Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.btn:hover {
  color: #FFFFFF;
  border-color: var(--primary-color);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-solid {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

.btn-solid::before {
  background-color: var(--primary-hover);
}

.btn-solid:hover {
  border-color: var(--primary-hover);
}

.btn-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Button Ripple Effect */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Magnetic Button Wrapper */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  padding: 15px 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(44, 28, 16, 0.04);
  border-bottom: 1px solid var(--border-color);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  z-index: 1002;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-svg {
  height: 60px;
  width: auto;
  display: block;
}

.footer-logo .logo-svg {
  height: 70px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-item {
  margin: 0 20px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  padding: 10px 0;
  position: relative;
  opacity: 0.85;
}

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

.nav-link:hover {
  opacity: 1;
  color: var(--primary-color);
}

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

.nav-link.active {
  opacity: 1;
  color: var(--primary-color);
}

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

.header-ctas {
  display: flex;
  align-items: center;
}

.header-action-btn {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-right: 20px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 28, 16, 0.15);
}

.header-action-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Fullscreen Menu Trigger (No boring hamburger) */
.menu-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
  position: relative;
  width: 50px;
  height: 50px;
}

.menu-trigger-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(44, 28, 16, 0.15);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.menu-trigger:hover .menu-trigger-circle {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.menu-trigger-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.menu-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
  transform-origin: center;
}

.menu-line-1 {
  transform: translateY(0);
}

.menu-line-2 {
  transform: translateY(0);
  width: 70%;
  align-self: flex-end;
}

/* Active hamburger states */
.menu-active .menu-line-1 {
  transform: translateY(5px) rotate(45deg);
}

.menu-active .menu-line-2 {
  transform: translateY(-5px) rotate(-45deg);
  width: 100%;
}

.menu-active .menu-trigger-circle {
  border-color: var(--primary-color);
  background-color: rgba(155, 106, 52, 0.05);
}

/* Fullscreen Overlay Menu */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-beige);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}

.fullscreen-nav.open {
  transform: translateY(0);
}

.fullscreen-nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(185, 137, 71, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.fullscreen-nav-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: var(--container-width);
  padding: 0 80px;
  z-index: 2;
}

.fullscreen-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullscreen-link-item {
  overflow: hidden;
  margin-bottom: 25px;
}

.fullscreen-link {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.fullscreen-nav.open .fullscreen-link {
  transform: translateY(0);
}

.fullscreen-link-item:nth-child(1) .fullscreen-link { transition-delay: 0.2s; }
.fullscreen-link-item:nth-child(2) .fullscreen-link { transition-delay: 0.3s; }
.fullscreen-link-item:nth-child(3) .fullscreen-link { transition-delay: 0.4s; }
.fullscreen-link-item:nth-child(4) .fullscreen-link { transition-delay: 0.5s; }

.fullscreen-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-color);
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-link:hover::before {
  width: 100%;
}

.fullscreen-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-color);
  padding-left: 80px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.fullscreen-nav.open .fullscreen-info {
  opacity: 1;
  transform: translateX(0);
}

.fullscreen-info-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.fullscreen-info-text {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin-bottom: 40px;
  color: var(--text-dark);
  line-height: 1.5;
}

.fullscreen-socials {
  display: flex;
  list-style: none;
}

.fullscreen-social-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-right: 30px;
  color: var(--text-dark);
  opacity: 0.6;
}

.fullscreen-social-link:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* =========================================
   HOME PAGE: HERO SECTION
   ========================================= */
.hero {
  height: 100vh;
  min-height: 750px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #170d06; /* Fallback deep luxury wood dark color */
  color: #FFFFFF;
}

.hero + .section {
  padding-top: 50px;
}

/* Background Video Wrapper */
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Luxury Gradient Overlays for Cinematic Depth */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(28, 17, 10, 0.4) 0%, rgba(15, 9, 5, 0.8) 100%);
  z-index: 1;
}

.hero-video-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
  z-index: 2;
}

/* Luxury Animated Hero Background */
.hero-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(185, 137, 71, 0.25); /* Golden particles over dark bg */
  box-shadow: 0 0 10px rgba(185, 137, 71, 0.4);
  pointer-events: none;
  animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-80vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-container.hero-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 5;
  position: relative;
}

.hero-centered .hero-content {
  padding-right: 0;
  opacity: 0;
  transform: translateY(50px);
  animation: heroContentFade 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.hero-centered .hero-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 500;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-centered .hero-title {
  color: #FFFFFF;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-family: var(--font-heading);
}

.hero-centered .hero-title span {
  display: inline-block;
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--secondary-color);
}

.hero-centered .hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 650px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-centered .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.hero-centered .btn {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-centered .btn::before {
  background-color: #FFFFFF;
}

.hero-centered .btn:hover {
  color: var(--text-dark);
  border-color: #FFFFFF;
}

.hero-centered .btn-solid {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #FFFFFF;
}

.hero-centered .btn-solid::before {
  background-color: var(--primary-color);
}

.hero-centered .btn-solid:hover {
  border-color: var(--primary-color);
  color: #FFFFFF;
}

/* Home Page Header styling override (over dark background video) */
body.home-page .header:not(.scrolled) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.home-page .header:not(.scrolled) .logo {
  color: #FFFFFF;
}

body.home-page .header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

body.home-page .header:not(.scrolled) .nav-link:hover,
body.home-page .header:not(.scrolled) .nav-link.active {
  color: var(--secondary-color);
}

body.home-page .header:not(.scrolled) .header-action-btn {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

body.home-page .header:not(.scrolled) .header-action-btn:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

body.home-page .header:not(.scrolled) .btn {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

body.home-page .header:not(.scrolled) .btn:hover {
  color: var(--text-dark);
  background-color: #FFFFFF;
  border-color: #FFFFFF;
}

body.home-page .header:not(.scrolled) .menu-trigger-circle {
  border-color: rgba(255, 255, 255, 0.2);
}

body.home-page .header:not(.scrolled) .menu-trigger:hover .menu-trigger-circle {
  border-color: var(--secondary-color);
}

body.home-page .header:not(.scrolled) .menu-line {
  background-color: #FFFFFF;
}

body.home-page .header:not(.scrolled) .menu-active .menu-line {
  background-color: var(--text-dark);
}

/* Floating 3D Space Furniture Pieces */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Parallax Layers */
.floating-piece {
  position: absolute;
  transition: transform 0.2s ease-out, opacity 0.5s ease;
  filter: drop-shadow(0 25px 50px rgba(44, 28, 16, 0.12));
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

/* Distinct Positions & Initial Sizes for floating items */
.piece-main {
  width: 320px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(100px);
  z-index: 10;
}

.piece-2 {
  width: 180px;
  top: 20%;
  right: 10%;
  transform: translateZ(50px) rotate(15deg);
  z-index: 5;
}

.piece-3 {
  width: 160px;
  bottom: 15%;
  left: 10%;
  transform: translateZ(80px) rotate(-10deg);
  z-index: 6;
}

.piece-4 {
  width: 130px;
  top: 15%;
  left: 15%;
  transform: translateZ(30px) rotate(-25deg);
  z-index: 3;
}

.piece-5 {
  width: 140px;
  bottom: 25%;
  right: 15%;
  transform: translateZ(60px) rotate(8deg);
  z-index: 4;
}

/* Outline/Art SVG styling for premium mockup feel */
.floating-piece svg, .floating-piece img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-piece path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawStroke 3s forwards ease-in-out 1s;
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 4px;
}

.about-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.reveal-active .about-image {
  transform: scale(1);
}

.about-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.reveal-active .about-img-overlay {
  transform: scaleY(0);
}

.about-content {
  padding-right: 40px;
}

.about-p {
  font-size: 1.15rem;
  color: rgba(44, 28, 16, 0.8);
  margin-bottom: 35px;
  line-height: 1.7;
}

.about-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.counter-card {
  border-left: 1px solid var(--border-color);
  padding-left: 20px;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.counter-plus {
  font-size: 2rem;
  margin-left: 2px;
}

.counter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(44, 28, 16, 0.6);
}

/* Craft Timeline Animation */
.timeline-section {
  margin-top: 60px;
  border-left: 2px solid var(--border-color);
  padding-left: 30px;
  position: relative;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: 2px solid var(--primary-color);
  transition: var(--transition-smooth);
}

.timeline-item:hover::before {
  background-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(155, 106, 52, 0.4);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.timeline-desc {
  color: rgba(44, 28, 16, 0.6);
  font-size: 0.95rem;
}

/* =========================================
   FEATURED PRODUCTS SECTION
   ========================================= */
.products-preview-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  list-style: none;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  overflow-x: auto;
}

.tab-item {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.tab-item:hover {
  opacity: 1;
  color: var(--primary-color);
}

.tab-item.active {
  opacity: 1;
  color: var(--primary-color);
}

.tab-item.active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

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

/* Premium Card Layout */
.product-card {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid rgba(44, 28, 16, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card-img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(44, 28, 16, 0) 40%, rgba(44, 28, 16, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}

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

.product-card-btn {
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-btn {
  transform: translateY(0);
  opacity: 1;
}

.product-card-info {
  padding: 25px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(44, 28, 16, 0.03);
}

.product-card:hover .product-card-info {
  background-color: var(--bg-beige);
}

.product-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  margin-bottom: 8px;
  display: block;
}

.product-card-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.product-card-title:hover {
  color: var(--primary-color);
}

.product-card-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Hover: Golden Glow, Border & Shadow Animation */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.product-card:hover {
  box-shadow: 0 30px 60px rgba(155, 106, 52, 0.12);
  transform: translateY(-8px);
}

/* =========================================
   INTERACTIVE GALLERY & LIGHTBOX
   ========================================= */
.gallery-section {
  overflow: hidden;
  padding: 140px 0;
}

.gallery-carousel-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.gallery-carousel-container:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item {
  flex: 0 0 450px;
  height: 550px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 28, 16, 0.8) 0%, rgba(44, 28, 16, 0.2) 50%, rgba(44, 28, 16, 0) 100%);
  opacity: 0.8;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #FFFFFF;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 5px;
}

.gallery-item-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.gallery-indicator-bar {
  flex-grow: 1;
  max-width: 300px;
  height: 2px;
  background-color: var(--border-color);
  position: relative;
}

.gallery-indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease-out;
}

.gallery-nav-btns {
  display: flex;
  gap: 15px;
}

.gallery-nav-btn {
  background: none;
  border: 1px solid var(--border-color);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.gallery-nav-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
}

/* Premium Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 28, 16, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox Premium Glass Card with Animated Golden/White border */
.lightbox-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-card::before, .lightbox-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent, 
    var(--primary-color) 45%, 
    #FFFFFF 50%, 
    var(--primary-color) 55%, 
    transparent 100%
  );
  animation: borderRotate 6s infinite linear;
  z-index: 0;
}

.lightbox-card::after {
  background: conic-gradient(
    transparent, 
    #FFFFFF 30%, 
    var(--secondary-color) 50%, 
    #FFFFFF 70%, 
    transparent 100%
  );
  animation: borderRotate 10s infinite linear reverse;
  opacity: 0.7;
}

@keyframes borderRotate {
  100% {
    transform: rotate(360deg);
  }
}

.lightbox-card-inner {
  position: relative;
  background-color: #2C1C10;
  border-radius: 8px;
  padding: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.5s ease;
  transform: scale(0.95);
  opacity: 0;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-caption {
  margin-top: 15px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* =========================================
   WHY CHOOSE US & ICON CARDS
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(44, 28, 16, 0.05);
  padding: 50px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

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

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(155, 106, 52, 0.08);
}

.why-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: transform 0.5s ease;
}

.why-card:hover .why-icon {
  transform: translateZ(30px) scale(1.1);
}

.why-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.why-desc {
  font-size: 0.95rem;
  color: rgba(44, 28, 16, 0.65);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 380px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.testimonial-author {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(44, 28, 16, 0.5);
  margin-top: 5px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

/* =========================================
   INSTAGRAM SECTION
   ========================================= */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.insta-item {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(155, 106, 52, 0.85);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
}

.insta-item:hover .insta-img {
  transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* =========================================
   CONTACT CTA SECTION
   ========================================= */
.contact-cta {
  background-color: var(--text-dark);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(185, 137, 71, 0.12) 0%, rgba(44, 28, 16, 0) 80%);
  pointer-events: none;
}

.contact-cta .section-title {
  color: #FFFFFF;
  font-size: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.contact-cta-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.contact-cta-btn::before {
  background-color: var(--secondary-color);
}

.contact-cta-btn:hover {
  color: var(--text-dark);
  border-color: var(--secondary-color);
}

/* =========================================
   PRODUCTS PAGE SPECIFIC
   ========================================= */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

.products-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-widget {
  margin-bottom: 40px;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 20px;
  padding-right: 50px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-beige);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--primary-color);
  background-color: #FFFFFF;
}

.search-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 1.1rem;
}

.filter-list {
  list-style: none;
}

.filter-item {
  margin-bottom: 12px;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  color: rgba(44, 28, 16, 0.7);
  cursor: pointer;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-item.active .filter-btn {
  color: var(--primary-color);
  padding-left: 5px;
}

.filter-count {
  font-size: 0.8rem;
  opacity: 0.5;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.results-count {
  font-size: 0.95rem;
  color: rgba(44, 28, 16, 0.6);
}

.products-sorting select {
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.page-number {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.page-number:hover, .page-number.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
}

/* =========================================
   ABOUT PAGE SPECIFIC
   ========================================= */
.about-hero {
  min-height: 450px;
  padding: 160px 0 60px;
  background-color: var(--bg-beige);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(185, 137, 71, 0.08) 0%, rgba(250, 248, 245, 0) 70%);
}

.story-section {
  padding: 140px 0;
}

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

.story-content {
  padding-right: 40px;
}

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

.value-card {
  background-color: var(--bg-beige);
  padding: 50px 40px;
  border-radius: 4px;
}

.value-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.value-desc {
  font-size: 0.95rem;
  color: rgba(44, 28, 16, 0.65);
}

/* =========================================
   CONTACT PAGE SPECIFIC
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
}

.contact-detail-item {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 25px;
  margin-top: 5px;
}

.contact-detail-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(44, 28, 16, 0.5);
  margin-bottom: 8px;
}

.contact-detail-text {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.contact-detail-text a:hover {
  color: var(--primary-color);
}

.contact-form-wrap {
  background-color: var(--bg-beige);
  padding: 60px;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(44, 28, 16, 0.6);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(155, 106, 52, 0.05);
}

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

/* Styled map wrapper */
.map-container {
  height: 450px;
  width: 100%;
  margin-top: 80px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.map-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.map-location-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 10px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 100px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(185, 137, 71, 0.05) 0%, rgba(44, 28, 16, 0) 60%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  color: #FFFFFF;
  margin-bottom: 25px;
}

.footer-desc {
  max-width: 320px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
}

.footer-links-item {
  margin-bottom: 12px;
}

.footer-link {
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.footer-contact-icon {
  color: var(--primary-color);
  margin-right: 12px;
  margin-top: 5px;
}

.footer-newsletter-form {
  margin-top: 20px;
}

.newsletter-group {
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  padding: 14px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-btn {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #FFFFFF;
  padding: 0 25px;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 0.85rem;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS (GSAP STYLE)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(5px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(5px);
  transition: var(--transition-smooth);
}

.reveal-left.reveal-active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  filter: blur(5px);
  transition: var(--transition-smooth);
}

.reveal-right.reveal-active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  filter: blur(5px);
  transition: var(--transition-smooth);
}

.reveal-scale.reveal-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Image Parallax Style */
.parallax-img-container {
  overflow: hidden;
}

.parallax-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  margin-top: -10%;
  will-change: transform;
}

/* Split Text Animation classes */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotate(5deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.reveal-active .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* =========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================= */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .about-split {
    gap: 50px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  :root {
    --container-width: 720px;
  }
  
  .section {
    padding: 100px 0;
  }
  
  .header {
    padding: 20px 0;
  }
  
  .nav-menu, .header-ctas .btn {
    display: none;
  }
  
  .menu-trigger {
    display: block;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0;
    height: auto;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 60px;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    height: 500px;
  }
  
  .about-split {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    padding-right: 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-layout {
    grid-template-columns: 1fr;
  }
  
  .products-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .story-content {
    padding-right: 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .lightbox-prev, .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .lightbox-prev {
    left: -15px;
  }
  
  .lightbox-next {
    right: -15px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-width: 100%;
  }
  
  .container {
    padding: 0 24px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    flex: 0 0 300px;
    height: 420px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-cta .section-title {
    font-size: 2.8rem;
  }
  
  .contact-form-wrap {
    padding: 30px 20px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .fullscreen-nav-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }
  
  .fullscreen-link {
    font-size: 2.8rem;
  }
  
  .fullscreen-info {
    padding-left: 0;
    border-left: none;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
  }
  
  .fullscreen-info-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
  color: #FFF;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .about-hero {
    padding: 130px 0 50px;
  }
}

@media (max-width: 767px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }

  .products-sorting,
  .products-sorting select {
    width: 100%;
  }

  .filter-btn {
    font-size: 0.9rem;
  }

  .product-card-img-wrap {
    height: 280px;
  }

  .about-hero {
    padding: 120px 0 40px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 0;
    padding: 110px 0 40px;
  }

  .about-hero h1.section-title {
    font-size: 2.2rem !important;
  }

  .search-input {
    padding: 12px 16px;
    padding-right: 44px;
    font-size: 0.9rem;
  }

  .product-card-img-wrap {
    height: 220px;
  }

  .product-card-info {
    padding: 18px;
  }
}

/* Global Mobile Responsiveness & Overflow Protection */
@media (max-width: 991px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
  }
  .container {
    max-width: 100%;
    overflow: hidden;
  }
  img, video, svg {
    max-width: 100%;
    height: auto;
  }
  .section {
    overflow: hidden;
  }
}

