/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  /* Colors - Green & Yellow Olive Oil Theme */
  --first-color: #8B7355;
  --first-color-light: #A68A6A;
  --first-color-dark: #6B5840;
  --second-color: #C9A962;
  --second-color-light: #D9BA7D;
  --accent-color: #7A9C5F;
  --accent-light: #9FB887;

  /* Neutral Colors */
  --title-color: #1A1A1A;
  --text-color: #4A4A4A;
  --text-color-light: #6B6B6B;
  --body-color: #FEFDFB;
  --container-color: #FFFFFF;
  --border-color: #E5E5E5;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #C9A962 100%);
  --gradient-olive: linear-gradient(135deg, #7A9C5F 0%, #9FB887 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  --gradient-radial: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  --gradient-mesh: linear-gradient(135deg, rgba(122, 156, 95, 0.05) 0%, rgba(201, 169, 98, 0.05) 100%);

  /* Typography */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-colored: 0 8px 24px rgba(139, 115, 85, 0.25);
  --shadow-glow: 0 0 20px rgba(201, 169, 98, 0.3);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Responsive Typography */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --biggest-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(122, 156, 95, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(139,115,85,0.03)"/></svg>');
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.3;
}

ul {
  list-style: none;
}

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

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

button {
  font-family: var(--font-body);
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition-base);
}

input, textarea, select {
  font-family: var(--font-body);
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-size: var(--normal-font-size);
  transition: var(--transition-base);
  background-color: var(--container-color);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section__subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.section__title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 1px;
}

.section__footer {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.text-highlight {
  color: var(--first-color);
  position: relative;
}

/*=============== BUTTONS ===============*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-colored);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--first-color);
  border-color: var(--first-color);
}

.btn-secondary:hover {
  background: var(--first-color);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: var(--title-color);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--first-color);
  color: #FFFFFF;
  border-color: var(--first-color);
}

.btn-light {
  background: #FFFFFF;
  color: var(--first-color);
}

.btn-light:hover {
  background: var(--body-color);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--first-color);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--small-font-size);
}

/*=============== TOP BAR ===============*/
.top-bar {
  background: linear-gradient(135deg, var(--first-color-dark), var(--first-color));
  color: #FFFFFF;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: calc(var(--z-fixed) + 1);
  transition: transform 0.4s ease;
  overflow: hidden;
  transform: translateY(0);
}

.top-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  background-size: 200% 100%;
  animation: topBarShine 3s linear infinite;
}

@keyframes topBarShine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.top-bar.hide {
  transform: translateY(-100%);
}

.top-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.top-bar__info {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.95;
  transition: all 0.3s ease;
  cursor: pointer;
}

.top-bar__item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.top-bar__item svg {
  flex-shrink: 0;
}

.top-bar__promo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-md);
  font-weight: var(--font-medium);
  backdrop-filter: blur(10px);
  animation: promoPulse 2s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes promoPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

.top-bar__promo svg {
  flex-shrink: 0;
  animation: promoIcon 2s ease-in-out infinite;
}

@keyframes promoIcon {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

@media screen and (max-width: 768px) {
  .top-bar {
    padding: 0.375rem 0;
    font-size: 0.7rem;
  }

  .top-bar__info {
    gap: var(--spacing-sm);
  }

  .top-bar__item:last-child {
    display: none;
  }

  .top-bar__promo {
    font-size: 0.7rem;
    padding: 0.25rem 0.625rem;
  }

  .header {
    top: 30px;
  }

  .header.top-bar-hidden {
    top: 0;
  }
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  z-index: var(--z-fixed);
  transition: top 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  transform: translateY(0);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(201, 169, 98, 0.03) 0%,
    rgba(122, 156, 95, 0.03) 50%,
    rgba(201, 169, 98, 0.03) 100%);
  background-size: 200% 100%;
  animation: headerShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(139, 115, 85, 0.15);
}

.header.scrolled::before {
  opacity: 0.5;
}

.header.top-bar-hidden {
  top: 0;
}

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

.nav__logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  transition: all 0.4s ease;
}

.nav__logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.nav__logo:hover::before {
  opacity: 0.1;
  transform: scale(1);
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.4s ease;
}

.nav__logo:hover::after {
  width: 80%;
}

.logo-text {
  color: var(--title-color);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.nav__logo:hover .logo-text {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(139, 115, 85, 0.2);
}

.logo-highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0px rgba(201, 169, 98, 0));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.6));
  }
}

.nav__logo:hover .logo-highlight {
  animation-play-state: paused;
  transform: scale(1.05);
}

.nav__list {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav__link:hover,
.nav__link.active {
  color: var(--first-color);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 70%;
}

.nav__link.active {
  font-weight: var(--font-semi-bold);
}

/* Staggered animation for nav links */
.nav__link:nth-child(1) { transition-delay: 0ms; }
.nav__link:nth-child(2) { transition-delay: 50ms; }
.nav__link:nth-child(3) { transition-delay: 100ms; }
.nav__link:nth-child(4) { transition-delay: 150ms; }
.nav__link:nth-child(5) { transition-delay: 200ms; }

.nav__toggle,
.nav__close {
  display: none;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-xl) var(--spacing-lg);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: var(--z-fixed);
    border-left: 1px solid rgba(139, 115, 85, 0.1);
  }

  .nav__menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(201, 169, 98, 0.05) 0%,
      rgba(122, 156, 95, 0.05) 100%);
    pointer-events: none;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
    margin-top: var(--spacing-xl);
  }

  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 28px;
    cursor: pointer;
    z-index: var(--z-fixed);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav__toggle:hover {
    background: rgba(201, 169, 98, 0.1);
    transform: scale(1.1);
  }

  .nav__toggle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid var(--first-color);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }

  .nav__toggle:hover::before {
    opacity: 0.3;
    transform: scale(1);
  }

  .nav__toggle span {
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
  }

  .nav__toggle span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--first-color-dark);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .nav__toggle:hover span::after {
    transform: scaleX(1);
  }

  .nav__toggle span:nth-child(1) {
    animation: burgerLine1 2s ease-in-out infinite;
  }

  .nav__toggle span:nth-child(2) {
    animation: burgerLine2 2s ease-in-out infinite;
  }

  .nav__toggle span:nth-child(3) {
    animation: burgerLine3 2s ease-in-out infinite;
  }

  @keyframes burgerLine1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
  }

  @keyframes burgerLine2 {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.8); }
  }

  @keyframes burgerLine3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-3px); }
  }

  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
    color: var(--title-color);
    cursor: pointer;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
  }

  .nav__close:hover {
    background: var(--gradient-gold);
    color: #FFFFFF;
    transform: rotate(90deg) scale(1.1);
    border-color: var(--first-color-dark);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .nav__close::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--first-color);
    border-radius: var(--radius-full);
    opacity: 0;
    animation: closeButtonPulse 2s ease-in-out infinite;
  }

  @keyframes closeButtonPulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.3;
    }
  }
}

/*=============== HERO SECTION ===============*/
.hero {
  margin-top: 116px;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FEFDFB 0%, #F8F6F2 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: var(--gradient-radial);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 156, 95, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding: var(--spacing-2xl) 0;
}

.hero__content {
  z-index: 1;
}

.hero__subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

.hero__title {
  font-size: var(--biggest-font-size);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--title-color) 0%, var(--first-color) 50%, var(--title-color) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(3deg);
  transition: var(--transition-slow);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-shine);
  transform: rotate(45deg);
  animation: shine 3s infinite;
  z-index: 1;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.hero__image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-colored);
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.3), rgba(122, 156, 95, 0.3)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-base);
  z-index: 2;
}

.hero__image-wrapper:hover::after {
  opacity: 1;
}

.hero__image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.hero__scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--first-color);
  border-radius: 12px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--first-color);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* Hero Responsive */
@media screen and (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image-wrapper img {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
  }
}

/*=============== PAGE HERO ===============*/
.page-hero {
  margin-top: 80px;
  padding: var(--spacing-2xl) 0;
  background: var(--gradient-gold);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--spacing-sm);
}

.page-hero__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

/*=============== FEATURES SECTION ===============*/
.features {
  padding: var(--spacing-2xl) 0;
  background: var(--container-color);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature__card {
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  background: var(--body-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-mesh);
  transition: left 0.5s ease;
  z-index: 0;
}

.feature__card:hover::before {
  left: 0;
}

.feature__card > * {
  position: relative;
  z-index: 1;
}

.feature__card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-colored);
  border-color: var(--first-color);
}

.feature__card:hover .feature__icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  position: relative;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature__icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--second-color), var(--accent-color));
  opacity: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.feature__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.feature__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/*=============== PRODUCTS ===============*/
.products-preview,
.products {
  padding: var(--spacing-2xl) 0;
  background: var(--body-color);
}

.products__grid,
.products__catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.product__card,
.product__item {
  background: var(--container-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid transparent;
}

.product__card::after,
.product__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-gold);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product__card:hover,
.product__item:hover {
  box-shadow: var(--shadow-colored);
  transform: translateY(-8px) scale(1.02);
}

.product__card:hover::after,
.product__item:hover::after {
  opacity: 1;
}

.product__image,
.product__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product__image img,
.product__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1) contrast(1);
}

.product__card:hover img,
.product__item:hover img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1) contrast(1.1);
}

.product__image::after,
.product__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.2) 0%, rgba(122, 156, 95, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product__card:hover .product__image::after,
.product__item:hover .product__image-wrapper::after {
  opacity: 1;
}

.product__badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: #FFFFFF;
  z-index: 1;
}

.badge--new {
  background: #4CAF50;
}

.badge--popular {
  background: #FF9800;
}

.badge--sale {
  background: #F44336;
}

.badge--exclusive {
  background: #9C27B0;
}

.product__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.product__item:hover .product__overlay {
  opacity: 1;
}

.product__content,
.product__info {
  padding: var(--spacing-lg);
}

.product__category {
  font-size: var(--small-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
}

.product__title,
.product__name {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.product__description,
.product__excerpt {
  color: var(--text-color-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.product__link {
  color: var(--first-color);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product__link:hover {
  gap: 1rem;
}

.product__features {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.feature-tag {
  padding: 0.25rem 0.75rem;
  background: var(--accent-light);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}

.product__sizes {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.product__sizes span {
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: var(--small-font-size);
  transition: var(--transition-fast);
  cursor: pointer;
}

.product__sizes span:hover {
  border-color: var(--first-color);
  background: var(--first-color);
  color: #FFFFFF;
}

/* Product Filters */
.products__filters,
.gallery__filters {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.filter__btn,
.gallery__filter {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  background: var(--container-color);
  color: var(--text-color);
  border-radius: var(--radius-lg);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter__btn:hover,
.gallery__filter:hover,
.filter__btn.active,
.gallery__filter.active {
  background: var(--first-color);
  border-color: var(--first-color);
  color: #FFFFFF;
}

/*=============== STATS SECTION ===============*/
.stats {
  padding: var(--spacing-2xl) 0;
  background: var(--gradient-gold);
  color: #FFFFFF;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
}

.stat__item {
  text-align: center;
}

.stat__number {
  font-size: 3rem;
  font-family: var(--font-title);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-xs);
}

.stat__number::after {
  content: '+';
}

.stat__label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/*=============== TESTIMONIALS ===============*/
.testimonials {
  padding: var(--spacing-2xl) 0;
  background: var(--container-color);
}

.testimonials__slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial__item {
  display: none;
}

.testimonial__item:first-child {
  display: block;
}

.testimonial__content {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--body-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.testimonial__content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: var(--first-color);
  opacity: 0.1;
  line-height: 1;
}

.testimonial__content:hover {
  border-color: var(--first-color-light);
  box-shadow: var(--shadow-colored);
  transform: translateY(-4px);
}

.testimonial__stars {
  color: #FFB400;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.testimonial__text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.testimonial__name {
  font-size: var(--h3-font-size);
  margin-bottom: 0.25rem;
}

.testimonial__position {
  color: var(--text-color-light);
}

.testimonials__navigation {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.testimonial__btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--first-color);
  color: #FFFFFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.testimonial__btn:hover {
  background: var(--first-color-dark);
  transform: scale(1.1);
}

/*=============== CTA SECTION ===============*/
.cta {
  padding: var(--spacing-2xl) 0;
  background: var(--gradient-olive);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  animation: float 20s ease-in-out infinite;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
  animation: float 15s ease-in-out infinite reverse;
}

.cta:has(.cta__content:hover)::before {
  animation-play-state: paused;
  transform: scale(1.2);
  transition: transform 0.8s ease;
}

.cta__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--spacing-md);
}

.cta__description {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.cta__buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/*=============== STORY SECTION ===============*/
.story {
  padding: var(--spacing-2xl) 0;
}

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

.story__text {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.story__values {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.value__item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.value__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  flex-shrink: 0;
}

.value__text h4 {
  margin-bottom: 0.25rem;
}

.value__text p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.story__image {
  position: relative;
}

.story__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.story__badge {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  background: #FFFFFF;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.badge__number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--first-color);
  line-height: 1;
}

.badge__text {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-top: 0.25rem;
}

@media screen and (max-width: 992px) {
  .story__grid {
    grid-template-columns: 1fr;
  }
}

/*=============== MISSION & VISION ===============*/
.mission-vision {
  padding: var(--spacing-2xl) 0;
  background: var(--body-color);
}

.mv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
}

.mv__card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--container-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.mv__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.mv__icon {
  margin-bottom: var(--spacing-md);
  color: var(--first-color);
}

.mv__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-md);
}

.mv__description {
  color: var(--text-color-light);
  line-height: 1.8;
}

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

/*=============== TIMELINE ===============*/
.process {
  padding: var(--spacing-2xl) 0;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  align-items: center;
}

.timeline__number {
  grid-column: 2;
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.timeline__content {
  grid-column: 3;
  background: var(--container-color);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.timeline__image {
  grid-column: 1;
}

.timeline__item--reverse .timeline__content {
  grid-column: 1;
}

.timeline__item--reverse .timeline__image {
  grid-column: 3;
}

.timeline__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.timeline__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.timeline__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline__item,
  .timeline__item--reverse {
    grid-template-columns: 60px 1fr;
    gap: var(--spacing-md);
  }

  .timeline__number {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline__content,
  .timeline__item--reverse .timeline__content {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline__image,
  .timeline__item--reverse .timeline__image {
    grid-column: 2;
    grid-row: 2;
  }
}

/*=============== CERTIFICATES ===============*/
.certificates {
  padding: var(--spacing-2xl) 0;
  background: var(--body-color);
}

.certificates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.certificate__card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--container-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.certificate__card:hover {
  border-color: var(--first-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.certificate__icon {
  color: var(--first-color);
  margin-bottom: var(--spacing-md);
}

.certificate__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.certificate__description {
  color: var(--text-color-light);
}

/*=============== TEAM ===============*/
.team {
  padding: var(--spacing-2xl) 0;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.team__card {
  text-align: center;
  background: var(--container-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team__image {
  height: 350px;
  overflow: hidden;
}

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

.team__card:hover img {
  transform: scale(1.1);
}

.team__content {
  padding: var(--spacing-lg);
}

.team__name {
  font-size: var(--h3-font-size);
  margin-bottom: 0.25rem;
}

.team__position {
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--spacing-sm);
}

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

/*=============== GALLERY ===============*/
.gallery {
  padding: var(--spacing-2xl) 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

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

.gallery__image {
  width: 100%;
  height: 100%;
}

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

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

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__info {
  color: #FFFFFF;
  text-align: center;
  padding: var(--spacing-md);
}

.gallery__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
}

.gallery__category {
  font-size: var(--small-font-size);
  opacity: 0.9;
}

.gallery__zoom {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  color: var(--first-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-md);
  transition: var(--transition-base);
}

.gallery__zoom:hover {
  transform: scale(1.1);
}

.gallery__footer {
  margin-top: var(--spacing-xl);
}

/*=============== VIDEO SECTION ===============*/
.video-section {
  padding: var(--spacing-2xl) 0;
  background: var(--body-color);
}

.video__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

.video__thumbnail {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.video__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video__info {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.video__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.video__description {
  color: var(--text-color-light);
}

/*=============== INSTAGRAM FEED ===============*/
.instagram-feed {
  padding: var(--spacing-2xl) 0;
}

.instagram__follow {
  display: inline-block;
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  font-size: 1.125rem;
  margin-top: var(--spacing-sm);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

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

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

.instagram__item:hover img {
  transform: scale(1.1);
}

.instagram__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(201, 169, 98, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.instagram__item:hover .instagram__overlay {
  opacity: 1;
}

/*=============== WHY PRODUCTS ===============*/
.why-products {
  padding: var(--spacing-2xl) 0;
  background: var(--body-color);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.why__item {
  text-align: center;
}

.why__icon {
  color: var(--accent-color);
  margin-bottom: var(--spacing-md);
}

.why__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.why__description {
  color: var(--text-color-light);
}

/*=============== PRODUCT DETAILS ===============*/
.product-details {
  padding: var(--spacing-2xl) 0;
}

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

.details__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.details__text {
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.details__list {
  margin: var(--spacing-lg) 0;
}

.detail__item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.detail__icon {
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  flex-shrink: 0;
}

.detail__info h4 {
  margin-bottom: 0.25rem;
}

.detail__info p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

@media screen and (max-width: 992px) {
  .details__grid {
    grid-template-columns: 1fr;
  }
}

/*=============== FAQ ===============*/
.faq {
  padding: var(--spacing-2xl) 0;
  background: var(--container-color);
}

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

.faq__item {
  margin-bottom: var(--spacing-md);
  background: var(--body-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  cursor: pointer;
  transition: var(--transition-base);
}

.faq__question:hover {
  background: rgba(139, 115, 85, 0.05);
}

.faq__question h3 {
  font-size: 1.125rem;
  font-weight: var(--font-medium);
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: var(--transition-base);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer p {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--text-color-light);
  line-height: 1.8;
}

/*=============== CONTACT ===============*/
.contact {
  padding: var(--spacing-2xl) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-2xl);
}

.contact__methods {
  margin-top: var(--spacing-lg);
}

.contact__method {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.contact__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__details h3 {
  margin-bottom: var(--spacing-xs);
}

.contact__details p,
.contact__details a {
  color: var(--text-color-light);
  line-height: 1.8;
}

.contact__details a:hover {
  color: var(--first-color);
}

.contact__social {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border-color);
}

.contact__social h3 {
  margin-bottom: var(--spacing-md);
}

.social__links {
  display: flex;
  gap: var(--spacing-md);
}

.contact__form-wrapper {
  background: var(--body-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact__form-header {
  margin-bottom: var(--spacing-lg);
}

.contact__form-header h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.contact__form-header p {
  color: var(--text-color-light);
}

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

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-medium);
  color: var(--title-color);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form__checkbox {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
}

.form__checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.form__checkbox label {
  font-weight: var(--font-regular);
  font-size: var(--small-font-size);
}

.form__checkbox a {
  color: var(--first-color);
  text-decoration: underline;
}

.form__message {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
}

.form__message.success {
  background: #E8F5E9;
  color: #2E7D32;
  display: block;
}

.form__message.error {
  background: #FFEBEE;
  color: #C62828;
  display: block;
}

@media screen and (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

/*=============== MAP ===============*/
.map-section {
  padding: var(--spacing-2xl) 0;
  background: var(--body-color);
}

.map__wrapper {
  position: relative;
}

.map__container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map__info {
  position: absolute;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 1;
}

.map__card {
  background: #FFFFFF;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 350px;
}

.map__card h4 {
  margin-bottom: var(--spacing-sm);
}

.map__card p {
  color: var(--text-color-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .map__info {
    position: static;
    margin-top: var(--spacing-lg);
  }

  .map__card {
    max-width: 100%;
  }
}

/*=============== FOOTER ===============*/
.footer {
  background: #2C2416;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer__logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
}

.footer__description {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

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

.social__link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social__link:hover {
  background: var(--first-color);
  transform: translateY(-4px);
}

.footer__title {
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.footer__links li {
  margin-bottom: var(--spacing-sm);
}

.footer__links a:hover {
  color: var(--second-color);
  padding-left: 0.5rem;
}

.footer__contact li {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--second-color);
}

.footer__bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer__legal a:hover {
  color: var(--second-color);
}

@media screen and (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

/*=============== SCROLL TO TOP ===============*/
.scroll-top {
  position: fixed;
  bottom: -60px;
  right: var(--spacing-lg);
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-tooltip);
  transition: var(--transition-base);
  cursor: pointer;
}

.scroll-top.show {
  bottom: var(--spacing-lg);
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/*=============== FLOATING CONTACT BUTTONS ===============*/
.floating-contact {
  position: fixed;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  z-index: var(--z-tooltip);
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.floating-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.floating-btn:hover::before {
  transform: scale(1);
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.floating-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

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

.floating-btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  animation: floatWhatsApp 3s ease-in-out infinite;
}

.floating-btn--phone {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-dark) 100%);
  color: #FFFFFF;
  animation: floatPhone 3s ease-in-out infinite 0.5s;
}

@keyframes floatWhatsApp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.floating-btn--whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  animation: none;
}

.floating-btn--phone:hover {
  background: linear-gradient(135deg, var(--first-color-dark) 0%, var(--first-color) 100%);
  animation: none;
}

/* Tooltip for floating buttons */
.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 70px;
  background: rgba(0, 0, 0, 0.85);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--small-font-size);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.floating-btn:hover::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .floating-contact {
    bottom: var(--spacing-md);
    left: var(--spacing-md);
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn::after {
    display: none;
  }
}

/*=============== MODALS ===============*/
.modal,
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.show,
.image-modal.show {
  display: flex;
}

.modal__backdrop,
.image-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--container-color);
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  animation: modalAppear 0.3s ease;
}

.image-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  z-index: 1;
  animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal__close,
.image-modal__close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-base);
}

.modal__close:hover,
.image-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
}

.modal__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.modal__info h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-md);
}

.modal__info p {
  color: var(--text-color-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.image-modal__prev,
.image-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--first-color);
  border-radius: var(--radius-full);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 2;
}

.image-modal__prev {
  left: var(--spacing-lg);
}

.image-modal__next {
  right: var(--spacing-lg);
}

.image-modal__prev:hover,
.image-modal__next:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

#modal-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
}

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

/*=============== AOS ANIMATIONS ===============*/
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/*=============== NEWSLETTER ===============*/
.newsletter {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #F8F6F2 0%, #FEFDFB 100%);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.newsletter__wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  background: var(--container-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
}

.newsletter__wrapper > * {
  position: relative;
  z-index: 1;
}

.newsletter__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-md);
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
  animation: pulse 2s ease-in-out infinite;
}

.newsletter__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--title-color), var(--first-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter__description {
  color: var(--text-color-light);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__form {
  margin-bottom: var(--spacing-lg);
}

.newsletter__input-group {
  display: flex;
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
  background: var(--body-color);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-inner);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.newsletter__input-group:focus-within {
  border-color: var(--first-color);
  box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
}

.input-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-light);
  pointer-events: none;
}

.newsletter__input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.875rem 1rem 0.875rem 3rem;
  font-size: var(--normal-font-size);
  outline: none;
}

.newsletter__submit {
  background: var(--gradient-gold);
  color: #FFFFFF;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newsletter__submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.newsletter__submit:hover::before {
  width: 300px;
  height: 300px;
}

.newsletter__submit:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-colored);
}

.newsletter__submit svg {
  transition: transform 0.3s ease;
}

.newsletter__submit:hover svg {
  transform: translateX(4px);
}

.newsletter__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--spacing-md);
}

.newsletter__privacy input[type="checkbox"] {
  width: auto;
}

.newsletter__message {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-md);
  display: none;
}

.newsletter__message.success {
  background: #E8F5E9;
  color: #2E7D32;
  display: block;
}

.newsletter__message.error {
  background: #FFEBEE;
  color: #C62828;
  display: block;
}

.newsletter__benefits {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
}

.benefit__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.benefit__item svg {
  flex-shrink: 0;
  color: var(--accent-color);
}

@media screen and (max-width: 768px) {
  .newsletter__input-group {
    flex-direction: column;
  }

  .input-icon {
    top: 1.25rem;
  }

  .newsletter__input-group input {
    padding: 0.875rem 1rem 0.875rem 3rem;
  }

  .newsletter__submit {
    width: 100%;
    justify-content: center;
  }

  .newsletter__benefits {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 576px) {
  .hero__buttons,
  .cta__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}