/* ================================================
   Sweet Joy Almaty — candybar.kz
   Main Stylesheet
   ================================================ */

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

/* ------------------------------------------------
   CSS Variables
   ------------------------------------------------ */
:root {
  --bg: #FAF7F2;
  --white: #FFFFFF;
  --pink: #E8A0A8;
  --pink-dark: #D4849A;
  --gold: #C9956B;
  --gold-light: #E8C4A0;
  --text: #3D3232;
  --text-light: #7A6060;
  --border: #EAE0D5;
  --shadow: 0 4px 24px rgba(61, 50, 50, 0.08);
  --shadow-hover: 0 8px 32px rgba(61, 50, 50, 0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --font-script: 'Dancing Script', cursive;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Nunito', 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ------------------------------------------------
   Typography
   ------------------------------------------------ */
h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--border);
}

.section-divider span {
  color: var(--pink);
  font-size: 1.2rem;
}

/* ------------------------------------------------
   Layout
   ------------------------------------------------ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--light {
  background: var(--bg);
}

.section--white {
  background: var(--white);
}

.section--cream {
  background: #F5EEE6;
}

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 160, 168, 0.4);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 132, 154, 0.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 149, 107, 0.35);
}

.btn-gold:hover {
  background: #B8845C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 149, 107, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1EBE58;
  transform: translateY(-2px);
}

.btn-email {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-email:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ------------------------------------------------
   Header & Navigation
   ------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(61, 50, 50, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

.footer__logo .logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo__script {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--pink-dark);
  line-height: 1;
}

.logo__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
}

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

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--pink-dark);
  background: rgba(232, 160, 168, 0.1);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-switcher button {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  background: none;
  border: none;
  padding: 4px 10px;
  border-radius: 20px;
  transition: var(--transition);
  letter-spacing: 0.05em;
  min-height: 0;
}

.lang-switcher button.active {
  background: var(--pink);
  color: var(--white);
}

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

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav__link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--pink-dark);
  background: rgba(232, 160, 168, 0.08);
}

.mobile-nav__lang {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  margin-top: 0.5rem;
}

.mobile-nav__lang button {
  flex: 1;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-light);
  transition: var(--transition);
}

.mobile-nav__lang button.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* ------------------------------------------------
   Hero Section
   ------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EDE0 50%, #FAEAE8 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 160, 168, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 149, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 149, 107, 0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 149, 107, 0.2);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero__title em {
  font-style: italic;
  color: var(--pink-dark);
}

.hero__text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__image {
  position: relative;
  z-index: 1;
}

.hero__img-wrap {
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  background: linear-gradient(135deg, #FAEAE8 0%, #F0D8CC 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(61, 50, 50, 0.12);
}

.hero__img-placeholder {
  font-size: 8rem;
  line-height: 1;
  text-align: center;
  opacity: 0.8;
}

/* ------------------------------------------------
   Why Us Section
   ------------------------------------------------ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-us__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-us__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.why-us__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(232, 160, 168, 0.15);
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.why-us__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ------------------------------------------------
   Services Cards
   ------------------------------------------------ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card__image {
  background: linear-gradient(135deg, #FAEAE8 0%, #F0D8CC 100%);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.service-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.service-card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  flex: 1;
}

/* ------------------------------------------------
   Events / Occasions Section
   ------------------------------------------------ */
.events__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.event-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  cursor: default;
}

.event-tag:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ------------------------------------------------
   Steps / Process Section
   ------------------------------------------------ */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  font-family: var(--font-script);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 15px rgba(212, 132, 154, 0.4);
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ------------------------------------------------
   Legal / B2B Section
   ------------------------------------------------ */
.legal-block {
  background: linear-gradient(135deg, var(--text) 0%, #5A4040 100%);
  border-radius: var(--radius);
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.legal-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.legal-block p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.legal-block .legal-note {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

/* ------------------------------------------------
   Clients Section
   ------------------------------------------------ */
.clients__placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
}

.clients__placeholder .note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ------------------------------------------------
   Product Cards (Сладости page)
   ------------------------------------------------ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #FAEAE8 0%, #F5E0D0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

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

.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.product-card__price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card__price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-dark);
}

.product-card__price .min-order {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--bg);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 1rem;
}

/* ------------------------------------------------
   Product Card Slider
   ------------------------------------------------ */
.product-card__slider {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #FAEAE8 0%, #F5E0D0 100%);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
}

.slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
}

.slider__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  color: #3D3232;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  padding: 0;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-card__slider:hover .slider__btn {
  opacity: 1;
}

.slider__btn--prev { left: 8px; }
.slider__btn--next { right: 8px; }

.slider__btn:hover {
  background: rgba(255, 255, 255, 1);
}

.slider__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slider__dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* On mobile show buttons always (no hover) */
@media (max-width: 768px) {
  .slider__btn {
    opacity: 1;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}

.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 40px;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  margin-top: 1rem;
}

.product-card__btn:hover {
  background: #1EBE58;
  transform: translateY(-2px);
  color: #ffffff;
}

/* ------------------------------------------------
   Gift Cards (Подарки page)
   ------------------------------------------------ */
.gifts-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.gifts-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.holiday-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.holiday-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.holiday-nav__link:hover,
.holiday-nav__link.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 160, 168, 0.3);
}

.holiday-nav__link.featured {
  border-color: var(--gold);
  color: var(--gold);
}

.holiday-nav__link.featured:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 149, 107, 0.3);
}

.gifts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gift-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--gold-light);
}

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--gold);
}

.gift-card__icon {
  font-size: 2.5rem;
  line-height: 1;
}

.gift-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.gift-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  flex: 1;
}

/* ------------------------------------------------
   About Page
   ------------------------------------------------ */
.about-hero {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EDE0 100%);
  padding: 4rem 0;
  text-align: center;
}

.about-hero .section-divider {
  margin-top: 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #FAEAE8 0%, #F0D8CC 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow);
}

.story-content h2 {
  margin-bottom: 1.25rem;
}

.story-content p {
  margin-bottom: 1rem;
}

.stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat__num {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--pink-dark);
  line-height: 1;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.how-we-work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.how-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.how-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.how-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.how-item__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.how-item__text {
  font-size: 0.875rem;
  color: var(--text-light);
}

.clients-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.client-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.client-type__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.client-type__text {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ------------------------------------------------
   FAQ Accordion
   ------------------------------------------------ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.faq__item.open {
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(232, 160, 168, 0.15);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  min-height: 44px;
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--pink-dark);
}

.faq__item.open .faq__question {
  color: var(--pink-dark);
}

.faq__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(232, 160, 168, 0.12);
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  transition: var(--transition);
  line-height: 1;
}

.faq__item.open .faq__icon {
  background: var(--pink);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq__item.open .faq__answer {
  display: block;
}

/* ------------------------------------------------
   Contact Page
   ------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info__icon--whatsapp { background: rgba(37, 211, 102, 0.12); }
.contact-info__icon--phone { background: rgba(232, 160, 168, 0.15); }
.contact-info__icon--email { background: rgba(201, 149, 107, 0.12); }
.contact-info__icon--instagram { background: rgba(225, 48, 108, 0.1); }

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contact-info__value a:hover {
  color: var(--pink-dark);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 160, 168, 0.15);
}

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #27AE60;
}

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

/* ------------------------------------------------
   SEO Text Block
   ------------------------------------------------ */
.seo-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  margin-top: 4rem;
}

.seo-block h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text);
}

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

.seo-block .btn-group {
  margin-top: 1.5rem;
}

/* ------------------------------------------------
   Breadcrumbs
   ------------------------------------------------ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.breadcrumbs a:hover {
  color: var(--pink-dark);
}

.breadcrumbs span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* ------------------------------------------------
   Page Hero (inner pages)
   ------------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EDE0 60%, #FAEAE8 100%);
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 160, 168, 0.12) 0%, transparent 70%);
}

.page-hero__emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ------------------------------------------------
   Holiday Page Hero
   ------------------------------------------------ */
.holiday-hero {
  padding: 4rem 0;
  text-align: center;
}

.holiday-hero .holiday-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* ------------------------------------------------
   CTA Section
   ------------------------------------------------ */
.cta-section {
  background: linear-gradient(135deg, #F5E8E0 0%, #F9EEE8 100%);
  border-radius: var(--radius);
  padding: 3.5rem;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ------------------------------------------------
   Info Badges
   ------------------------------------------------ */
.info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.info-badge--pink {
  background: rgba(232, 160, 168, 0.1);
  border-color: rgba(232, 160, 168, 0.3);
  color: var(--pink-dark);
}

.info-badge--gold {
  background: rgba(201, 149, 107, 0.1);
  border-color: rgba(201, 149, 107, 0.3);
  color: var(--gold);
}

/* ------------------------------------------------
   Footer
   ------------------------------------------------ */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer__logo {
  min-width: 0;
  overflow: hidden;
}

.footer__logo .logo__script {
  color: var(--pink);
}

.footer__logo .logo__sub {
  color: var(--gold-light);
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #ffffff;
  text-decoration: none;
}

.social-link svg {
  display: block;
  flex-shrink: 0;
}

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

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

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

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--pink);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.footer__contact-item a:hover {
  color: var(--pink);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ------------------------------------------------
   WhatsApp Floating Button
   ------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-green 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ------------------------------------------------
   Decorative SVG Ornaments
   ------------------------------------------------ */
.ornament {
  text-align: center;
  color: var(--pink);
  opacity: 0.4;
  font-size: 1.5rem;
  margin: 0.75rem 0;
}

/* ------------------------------------------------
   Responsive — Tablet (≤ 1024px)
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__image {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

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

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

/* ------------------------------------------------
   Responsive — Mobile (≤ 768px)
   ------------------------------------------------ */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header__right .lang-switcher {
    display: none;
  }

  .hero {
    padding: 3rem 0;
    text-align: center;
  }

  .hero__title {
    font-size: 2rem;
  }

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

  .hero__inner {
    gap: 2.5rem;
  }

  .btn-group {
    justify-content: center;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-block {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

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

  .cta-section {
    padding: 2.5rem 1.5rem;
  }

  .seo-block {
    padding: 2rem 1.5rem;
  }

  .stat-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .how-we-work__grid {
    grid-template-columns: 1fr 1fr;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }

  .holiday-nav {
    gap: 0.5rem;
  }
}

/* ------------------------------------------------
   Responsive — Small Mobile (≤ 480px)
   ------------------------------------------------ */
@media (max-width: 480px) {
  :root {
    --radius: 12px;
  }

  .container {
    padding: 0 1rem;
  }

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

  .how-we-work__grid {
    grid-template-columns: 1fr;
  }

  .hero__img-placeholder {
    font-size: 5rem;
  }
}

/* ------------------------------------------------
   Animations
   ------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
