/* ================================================================
   SHAM SWEETS — Premium Levantine Patisserie
   Redesigned with Lily Blue + Gold palette
   ================================================================ */

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

:root {
  --bg: #fdfcf8;
  --white: #ffffff;
  --black: #111111;
  --dark: #1a1209;
  --text: #2d2416;
  --text-muted: #7a6a52;
  --gold: #C9A84C;
  --gold-light: #f7edcc;
  --gold-dark: #a8872e;
  --blue: #5B9BD5;
  --blue-light: #E8F0F8;
  --blue-lighter: #F2F7FC;
  --blue-dark: #3A7BBF;
  --blue-muted: rgba(91, 155, 213, 0.15);
  --border: rgba(201, 168, 76, 0.18);
  --border-blue: rgba(91, 155, 213, 0.2);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-arabic: 'Noto Naskh Arabic', serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Sticky scroll — proximity so scrolling still feels natural */
  scroll-snap-type: y proximity;
}

/* Each major section snaps into place */
.hero,
.section,
.marquee,
footer {
  scroll-snap-align: start;
  scroll-margin-top: 0px;
}

/* Sections below hero need navbar offset so title doesn't hide under nav */
.section,
footer {
  scroll-margin-top: 76px;
}


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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 200;
  transition: width 0.1s linear;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 16px;
  animation: preloaderFadeIn 0.8s var(--ease) both;
}

.preloader-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  animation: preloaderLine 1.2s var(--ease) infinite;
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes preloaderLine {

  0%,
  100% {
    transform: scaleX(0.3);
    opacity: 0.3;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.5s var(--ease);
}

.navbar.scrolled {
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar.scrolled .logo {
  color: var(--black);
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--blue);
}

.navbar.scrolled .hamburger .bar {
  background: var(--black);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}

.logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
}

.nav-links {
  display: none;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width 0.3s var(--ease);
}

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

.nav-links a:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 110;
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #ffffff;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(20, 14, 4, 0.96) 0%,
      rgba(26, 18, 9, 0.97) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  /* Subtle inner top border */
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-drawer-content a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s, transform 0.25s var(--ease-spring);
  display: inline-block;
}

.mobile-drawer-content a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.mobile-drawer-footer {
  margin-top: 24px;
}

.mobile-drawer-footer .arabic-accent {
  font-family: var(--font-arabic);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.18;
}

/* HERO */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/BaklavaHero.jpeg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 6, 0, 0.62) 0%, rgba(10, 6, 0, 0.35) 50%, rgba(10, 6, 0, 0.12) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s var(--ease) infinite;
}

.particle-1 {
  top: 20%;
  left: 60%;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  left: 75%;
  animation-delay: 1.2s;
}

.particle-3 {
  top: 60%;
  left: 50%;
  animation-delay: 2.4s;
}

.particle-4 {
  top: 30%;
  left: 85%;
  animation-delay: 3.6s;
}

.particle-5 {
  top: 70%;
  left: 65%;
  animation-delay: 4.8s;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  20% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }

  80% {
    opacity: 0.3;
    transform: translateY(-80px) scale(0.6);
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0);
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 640px;
}

.hero-reveal-line {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: heroWordReveal 0.8s var(--ease-out) forwards;
}

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

.hero-reveal-line em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 380px;
  margin-top: 24px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.9s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.badge-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.badge-text {
  font-weight: 500;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% {
    top: -50%;
  }

  100% {
    top: 150%;
  }
}

.circle-cta {
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
}

.circle-cta svg {
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
  will-change: transform;
}

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

.circle-cta-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-cta-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease-spring), background 0.3s;
}

.circle-cta:hover .circle-cta-arrow span {
  transform: scale(1.15);
  background: var(--blue);
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}

/* SECTION LABELS & TITLES */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-label--light {
  color: rgba(91, 155, 213, 0.8);
}

/* BUTTONS */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 16px 32px;
  background: var(--gold);
  color: #1a1209;
  border-radius: 40px;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.btn-dark:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-dark:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 155, 213, 0.25);
}

.btn-dark span,
.btn-dark .arrow {
  position: relative;
  z-index: 1;
}

.btn-dark .arrow {
  transition: transform 0.3s var(--ease);
}

.btn-dark:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 40px;
  transition: all 0.35s var(--ease);
}

.btn-outline:hover {
  background: var(--gold);
  color: #1a1209;
  transform: translateY(-2px);
}

/* SECTION SPACING */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-dark);
}

/* SHAM STORY */
.sham-story {
  background: var(--blue-lighter);
  position: relative;
  overflow: hidden;
}

.sham-arabic-bg {
  position: absolute;
  font-family: var(--font-arabic);
  font-size: clamp(12rem, 30vw, 28rem);
  font-weight: 700;
  color: var(--blue);
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.sham-story-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.sham-story-left .section-title {
  margin-bottom: 24px;
}

.sham-meaning {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-blue);
  box-shadow: var(--shadow-sm);
}

.sham-meaning-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  flex: 1;
}

.sham-arabic-word {
  font-family: var(--font-arabic);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
}

.sham-translation {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sham-meaning-divider {
  width: 1px;
  height: 48px;
  background: var(--border-blue);
  flex-shrink: 0;
}

.sham-story-right p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 560px;
}

.sham-story-right p strong {
  color: var(--text);
  font-weight: 600;
}

/* Signature closing line — hero statement */
.sham-signature {
  margin-top: 32px;
  padding-top: 28px;
  position: relative;
  max-width: 560px;
}

.sham-signature-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  margin-bottom: 20px;
  border-radius: 2px;
}

.sham-signature em {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-dark);
  line-height: 1.35;
  display: block;
}

.sham-arches {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
  opacity: 0.12;
}

.arch {
  width: 80px;
  height: 120px;
  border: 2px solid var(--blue);
  border-radius: 40px 40px 0 0;
  border-bottom: none;
}

.arch:nth-child(2) {
  height: 150px;
  width: 100px;
  border-radius: 50px 50px 0 0;
}

@media (min-width: 768px) {
  .sham-story-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .sham-story-left {
    flex: 0 0 35%;
    position: sticky;
    top: 120px;
  }

  .sham-story-right {
    flex: 1;
  }

  .arch {
    width: 100px;
    height: 160px;
  }

  .arch:nth-child(2) {
    width: 130px;
    height: 200px;
  }
}

/* REVIEWS — enhanced with animations */
.reviews {
  background: var(--bg);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.reviews-header .section-title {
  margin-bottom: 0;
}

/* Animated rating badge with shimmer */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 20px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.google-rating-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.12), transparent);
  animation: badgeShimmer 3s var(--ease) infinite;
}

@keyframes badgeShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.google-rating-badge .rating-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.google-rating-badge .rating-stars {
  color: #fbbc04;
  font-size: 0.9rem;
}

.google-rating-badge .rating-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Carousel — auto-scrolling */
.reviews-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-behavior: smooth;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-carousel .review-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .reviews-carousel .review-card {
    flex: 0 0 280px;
  }
}

/* Cards — compact Google-style */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: reviewCardIn 0.6s var(--ease-out) forwards;
}

.review-card:nth-child(1) {
  animation-delay: 0.1s;
}

.review-card:nth-child(2) {
  animation-delay: 0.18s;
}

.review-card:nth-child(3) {
  animation-delay: 0.26s;
}

.review-card:nth-child(4) {
  animation-delay: 0.34s;
}

.review-card:nth-child(5) {
  animation-delay: 0.42s;
}

.review-card:nth-child(6) {
  animation-delay: 0.5s;
}

.review-card:nth-child(n+7) {
  animation-delay: 0.55s;
}

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

/* Top gradient line — animated on hover */
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.review-card:hover::before {
  opacity: 1;
  animation: reviewGradientShift 2s linear infinite;
}

@keyframes reviewGradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* Hover lift */
.review-card {
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.review-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Animated quote mark */
.review-quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue);
  opacity: 0.1;
  line-height: 0.6;
  margin-bottom: -2px;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.review-card:hover .review-quote-mark {
  opacity: 0.2;
  transform: scale(1.1) rotate(-5deg);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.reviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

.reviewer-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.review-google-icon {
  flex-shrink: 0;
  opacity: 0.5;
}

.review-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 6px;
  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

/* When expanded — remove clamp */
.review-text.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

/* "Mehr lesen" / "Weniger" toggle button */
.review-expand-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.review-expand-btn:hover {
  color: var(--blue-dark);
}

.review-time {
  display: none;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}


/* BESTSELLERS */
.bestsellers {
  background: var(--white);
  border-top: 3px solid var(--blue);
}

.bestsellers .section-title {
  text-align: center;
  margin-bottom: 48px;
}

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

.product-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

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

.product-card-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--blue-lighter);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.product-card-body {
  padding: 16px 20px 20px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.product-card .collection {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bestsellers-cta {
  text-align: center;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* GALLERY */
.gallery {
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-header .section-label {
  margin-bottom: 12px;
}

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

.gallery-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-item--large {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item--large {
  aspect-ratio: 16 / 7;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

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

.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .gallery-item--large {
    grid-column: span 1;
    aspect-ratio: 3 / 4;
  }

  .gallery-item {
    aspect-ratio: 1;
  }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  cursor: zoom-out;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.25s, background 0.25s;
  z-index: 2;
  cursor: pointer;
}

.lightbox-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.45s var(--ease-out);
  cursor: default;
}

.lightbox.open .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  letter-spacing: 0.04em;
}

/* DARK FEATURE */
.feature-dark {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.feature-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.feature-dark-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-dark-image {
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
}

.feature-dark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.feature-dark-image:hover img {
  transform: scale(1.04);
}

.feature-dark-text .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.feature-dark-text .section-title em {
  color: var(--blue);
}

.feature-dark-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 480px;
}

@media (min-width: 768px) {
  .feature-dark-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .feature-dark-image {
    flex: 0 0 50%;
    height: 480px;
  }

  .feature-dark-text {
    flex: 1;
  }
}

/* FOOTER — ultra-compact */
.footer {
  background: var(--bg);
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
}

.footer-main address {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-main address a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.footer-main address a:hover {
  color: var(--blue);
}

.footer-hours {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.open-now {
  color: #1a8a1a;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.25s, transform 0.25s;
  display: flex;
}

.footer-social a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* SCROLL REVEAL — multiple variants */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Reveal with scale */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Animated section divider line */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  margin: 0 auto 48px;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out) 0.2s;
}

.section-divider.visible {
  transform: scaleX(1);
}

/* Gallery items — tilt on hover */
.gallery-item {
  transition: transform 0.5s var(--ease);
}

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

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

/* Product cards — animated border glow on hover */
.product-card {
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover::after {
  opacity: 0.3;
}

/* Navbar links — stagger fade in on load */
.nav-links li {
  opacity: 0;
  animation: navLinkIn 0.5s var(--ease-out) forwards;
}

.nav-links li:nth-child(1) {
  animation-delay: 0.8s;
}

.nav-links li:nth-child(2) {
  animation-delay: 0.9s;
}

.nav-links li:nth-child(3) {
  animation-delay: 1.0s;
}

.nav-links li:nth-child(4) {
  animation-delay: 1.1s;
}

.nav-links li:nth-child(5) {
  animation-delay: 1.2s;
}

.nav-links li:nth-child(6) {
  animation-delay: 1.3s;
}

@keyframes navLinkIn {
  to {
    opacity: 1;
  }
}

/* Logo breathing dot */
.logo-dot {
  animation: logoDotPulse 3s var(--ease) infinite;
}

@keyframes logoDotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* WhatsApp button entrance */
.whatsapp-float {
  opacity: 0;
  animation: whatsappIn 0.6s var(--ease-out) 2s forwards;
}

@keyframes whatsappIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Instagram grid — stagger */
.instagram-item:nth-child(1) {
  transition-delay: 0s;
}

.instagram-item:nth-child(2) {
  transition-delay: 0.06s;
}

.instagram-item:nth-child(3) {
  transition-delay: 0.12s;
}

.instagram-item:nth-child(4) {
  transition-delay: 0.18s;
}

.instagram-item:nth-child(5) {
  transition-delay: 0.24s;
}

.instagram-item:nth-child(6) {
  transition-delay: 0.3s;
}

/* Arch animation — subtle sway */
.sham-arches .arch {
  animation: archSway 4s ease-in-out infinite;
}

.sham-arches .arch:nth-child(1) {
  animation-delay: 0s;
}

.sham-arches .arch:nth-child(2) {
  animation-delay: 0.6s;
}

.sham-arches .arch:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes archSway {

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

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

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-scale,
  .hero-word {
    opacity: 1;
    transform: none;
  }

  .hero-sub,
  .hero-bottom {
    opacity: 1;
  }

  .section-divider {
    transform: scaleX(1);
  }

  .review-card {
    opacity: 1;
    transform: none;
  }

  .nav-links li {
    opacity: 1;
  }

  .whatsapp-float {
    opacity: 1;
  }
}

/* (cursor removed — too much) */

/* ================================================================
   GRAIN TEXTURE OVERLAY
   ================================================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ================================================================
   MARQUEE TICKER
   ================================================================ */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: var(--blue-lighter);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  position: relative;
}

.marquee--reverse {
  background: var(--bg);
  border-color: var(--border);
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee--reverse .marquee-inner {
  animation: marqueeScrollReverse 35s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0 12px;
}

.marquee-dot {
  color: var(--gold) !important;
  font-size: 0.7rem !important;
  padding: 0 8px !important;
}

.marquee--reverse .marquee-inner span {
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

/* ================================================================
   INSTAGRAM FEED — bento grid with video support
   ================================================================ */
.instagram-feed {
  background: var(--blue-lighter);
}

.instagram-header {
  text-align: center;
  margin-bottom: 48px;
}

.instagram-header .section-label {
  margin-bottom: 12px;
}

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

.instagram-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 600px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

/* Video spans both rows = full height left side */
.instagram-item--tall {
  grid-row: 1 / -1;
}

.instagram-item img,
.instagram-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.instagram-item:hover img,
.instagram-item:hover video {
  transform: scale(1.06);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(91, 155, 213, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

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

/* Play indicator for videos */
.instagram-play {
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: 1.2fr 1fr;
    height: 640px;
    gap: 14px;
  }
}

/* ================================================================
   CONTACT FORM SECTION
   ================================================================ */
.contact-section {
  background: var(--bg);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info>p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}

.contact-detail span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-body {
  padding: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

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

.form-group select {
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Success state */
.btn-submit.success {
  background: #1a8a1a !important;
  color: #fff !important;
}

.btn-submit.success::before {
  display: none;
}

@media (min-width: 768px) {
  .contact-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .contact-info {
    flex: 0 0 40%;
  }

  .contact-form-wrap {
    flex: 1;
  }

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

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  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.35);
  z-index: 90;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s;
}

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

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s var(--ease) infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}