/* ============================================================
   TAVAZO — Homepage Sections
   Hero, Categories, Featured, Story, Gifts, Testimonials,
   Newsletter, Instagram
   ============================================================ */

/* ═══════════════════════════════════════════════
   HERO — SPLIT LAYOUT
   ═══════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--tavazo-teal-darker);
}

/* Background image layer with Ken Burns */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 1;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.8%, -0.4%); }
}

/* Gradient overlay — darker on left, transparent on right so image shows */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 30, 30, 0.85) 0%,
    rgba(11, 30, 30, 0.65) 35%,
    rgba(11, 30, 30, 0.25) 70%,
    rgba(11, 30, 30, 0.1) 100%
  );
}

/* Pattern overlay — Persian arabesque (more visible) */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/svg/hero-pattern.svg');
  background-repeat: repeat;
  background-size: 250px 250px;
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}

/* Hero corner ornaments — removed for clean luxury look */

/* Container: single-column with content on the left */
.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
}

.hero__content {
  max-width: 580px;
}

/* ── Left: Content ── */
.hero__content {
  text-align: left;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: var(--fw-bold);
  color: var(--tavazo-white);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero__title-accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--tavazo-gold) 0%, #E8D08C 30%, var(--tavazo-gold-light, #D4B96A) 50%, #E8D08C 70%, var(--tavazo-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
}

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

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

@keyframes heroPulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.04); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__gold-line {
  width: 120px;
  height: 20px;
  background: url('../assets/svg/divider-ornament.svg') center/contain no-repeat;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

.hero__gold-line::after {
  display: none;
}

.hero__description {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Glass glow on hero CTA */
.hero__cta .btn--gold {
  box-shadow: 0 4px 20px rgba(194, 158, 83, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.hero__cta .btn--gold:hover {
  box-shadow: 0 8px 32px rgba(194, 158, 83, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ── Right: Product Showcase ── */
.hero__showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__showcase-frame {
  position: relative;
  padding: var(--space-lg);
}

/* Clean frame — let image speak */
.hero__showcase-frame::before,
.hero__showcase-frame::after {
  display: none;
}

.hero__showcase-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* ── Floating Badges ── */
.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero__badge-icon {
  color: var(--tavazo-gold-luxury);
  font-size: var(--fs-xs);
}

.hero__badge--1 {
  top: 15%;
  right: -10px;
}

.hero__badge--2 {
  bottom: 20%;
  left: -5px;
}

/* ── Floating Product Thumbnails ── */
.hero__float {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(194, 158, 83, 0.3);
  background: rgba(16, 117, 113, 0.5);
  backdrop-filter: blur(6px);
  overflow: hidden;
  z-index: 4;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.hero__float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__float--1 { top: 8%; left: -28px; animation: heroFloat1 6s ease-in-out infinite; }
.hero__float--2 { bottom: 12%; right: -22px; animation: heroFloat2 7s ease-in-out infinite; }
.hero__float--3 { top: 55%; left: -40px; animation: heroFloat3 8s ease-in-out infinite; }

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.5deg); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

/* ── Hero Light Follow (mouse) ── */
.hero__light-follow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle 400px at var(--light-x, 50%) var(--light-y, 50%),
    rgba(194, 158, 83, 0.04) 0%,
    transparent 70%
  );
}

/* ── Scroll Hint ── */
.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  animation: float 2.5s ease-in-out infinite;
}

.hero__scroll-hint svg {
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}


/* ═══════════════════════════════════════════════
   CATEGORIES SECTION
   ═══════════════════════════════════════════════ */

.categories-section {
  position: relative;
}

/* Pattern overlay removed for cleaner look */

/* Categories grid — horizontal scroll of circles */
.categories__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════
   FEATURED PRODUCTS SECTION
   ═══════════════════════════════════════════════ */

.featured-section .swiper {
  padding: var(--space-md) var(--space-sm) var(--space-2xl);
}

.featured-section .product-card {
  margin: 0;
}

.featured__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.featured__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--tavazo-gold);
  color: var(--tavazo-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: all var(--transition-fast);
}

.featured__nav-btn:hover {
  background: var(--tavazo-gold);
  color: var(--tavazo-white);
}

.featured__nav-btn svg {
  width: 18px;
  height: 18px;
}


/* ═══════════════════════════════════════════════
   BRAND STORY SECTION
   ═══════════════════════════════════════════════ */

.story-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-rich) !important;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.story__image-wrapper {
  position: relative;
  padding: var(--space-lg);
}

.story__image {
  width: 100%;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(194, 158, 83, 0.2);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story__image-wrapper:hover .story__image {
  transform: scale(1.02);
}

/* Decorative gold corner accents on the story image */
.story__image-wrapper::before,
.story__image-wrapper::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--tavazo-gold);
  z-index: 2;
  pointer-events: none;
}

.story__image-wrapper::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.story__image-wrapper::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

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

.story__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--tavazo-gold);
  margin-bottom: var(--space-md);
}

.story__title {
  font-size: var(--fs-3xl);
  color: var(--tavazo-white);
  margin-bottom: var(--space-lg);
}

.story__text {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.story__gold-line {
  width: 60px;
  height: 2px;
  background: var(--tavazo-gold);
  margin-bottom: var(--space-xl);
}


/* ═══════════════════════════════════════════════
   GIFT BOXES SECTION
   ═══════════════════════════════════════════════ */

.gifts-section {
  position: relative;
}

.gifts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.gift-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.gift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(194, 158, 83, 0.25);
}

.gift-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px 4px 0 0;
}

.gift-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gift-card__body {
  padding: 24px;
  text-align: center;
}

.gift-card__name {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--tavazo-charcoal);
  margin-bottom: 8px;
}

.gift-card__description {
  font-size: 13px;
  color: var(--tavazo-gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.gift-card__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--tavazo-gold);
  margin-bottom: 20px;
}

.gift-card .btn {
  border-color: var(--tavazo-teal);
  color: var(--tavazo-teal);
  background: transparent;
}

.gift-card .btn:hover {
  background: var(--tavazo-teal);
  border-color: var(--tavazo-teal);
  color: #fff;
}

.gift-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  background: var(--tavazo-gold);
  color: #1A1A1A;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  z-index: 2;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════ */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  overflow: visible;
}

/* Override Swiper defaults on desktop so grid layout works */
.testimonials__grid .swiper-wrapper {
  display: contents;
}

.testimonials__grid .swiper-slide {
  width: auto !important;
}

.testimonials__pagination {
  margin-top: var(--space-lg);
  text-align: center;
  display: none;
}

.testimonials__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials__pagination .swiper-pagination-bullet-active {
  background: var(--tavazo-gold);
  transform: scale(1.2);
}


/* ═══════════════════════════════════════════════
   DELIVEROO ORDER SECTION
   ═══════════════════════════════════════════════ */

.deliveroo-section {
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════
   DELIVERY PARTNERS — Deliveroo + Instashop
   ═══════════════════════════════════════════════ */

.delivery-section {
  position: relative;
  background: linear-gradient(180deg, #FDFBF7 0%, #F5F2EE 100%);
  overflow: hidden;
}

.delivery-section__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/svg/arabesque-pattern.svg');
  background-size: 240px 240px;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.delivery-section .container {
  position: relative;
  z-index: 1;
}

.delivery-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.delivery-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 32px 32px 28px;
  background: #fff;
  border-radius: 18px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  border: 1px solid #eee;
  border-top: 3px solid var(--tavazo-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.delivery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(194, 158, 83, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.delivery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

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

.delivery-card__icon-wrap {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.delivery-card:hover .delivery-card__icon-wrap {
  transform: scale(1.05) rotate(-3deg);
}

.delivery-card--deliveroo .delivery-card__icon-wrap {
  background: linear-gradient(135deg, #00DDC9 0%, #00CCBC 100%);
  box-shadow: 0 8px 24px rgba(0, 204, 188, 0.3);
}

.delivery-card--instashop .delivery-card__icon-wrap {
  background: linear-gradient(135deg, #FF8533 0%, #FF6900 100%);
  box-shadow: 0 8px 24px rgba(255, 105, 0, 0.3);
}

.delivery-card__icon-wrap svg {
  width: 38px;
  height: 38px;
  color: #fff;
}

.delivery-card__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.delivery-card--deliveroo .delivery-card__icon-wrap {
  padding: 0;
  overflow: hidden;
}

.delivery-card__body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.delivery-card__brand-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.delivery-card--deliveroo .delivery-card__brand-label {
  color: #00B8A9;
}

.delivery-card--instashop .delivery-card__brand-label {
  color: #E05C00;
}

.delivery-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--tavazo-charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}

.delivery-card__text {
  font-size: 13px;
  color: var(--tavazo-gray);
  line-height: 1.5;
  margin-bottom: 14px;
}

.delivery-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tavazo-charcoal);
  transition: gap 0.3s ease, color 0.3s ease;
}

.delivery-card:hover .delivery-card__cta {
  gap: 12px;
}

.delivery-card--deliveroo:hover .delivery-card__cta {
  color: #00B8A9;
}

.delivery-card--instashop:hover .delivery-card__cta {
  color: #E05C00;
}

@media (max-width: 1024px) {
  .delivery-partners {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .delivery-section { padding: var(--space-3xl) 0; }

  .delivery-partners {
    gap: 14px;
  }

  .delivery-card {
    padding: 22px 22px 22px 18px;
    gap: 16px;
    border-radius: 14px;
  }

  .delivery-card__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .delivery-card__icon-wrap svg {
    width: 30px;
    height: 30px;
  }

  .delivery-card__brand-label { font-size: 10px; letter-spacing: 0.16em; }
  .delivery-card__title { font-size: 20px; margin-bottom: 4px; }
  .delivery-card__text { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
  .delivery-card__cta { font-size: 11px; }
}

@media (max-width: 480px) {
  .delivery-card {
    padding: 18px;
    gap: 14px;
    align-items: flex-start;
  }

  .delivery-card__icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .delivery-card__icon-wrap svg {
    width: 26px;
    height: 26px;
  }

  .delivery-card__title { font-size: 18px; }
  .delivery-card__text { font-size: 12px; line-height: 1.45; }
}

.deliveroo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.deliveroo__label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--tavazo-gold);
  margin-bottom: var(--space-md);
}

.deliveroo__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--tavazo-charcoal);
  margin-bottom: var(--space-md);
}

.deliveroo__text {
  font-size: var(--fs-md);
  color: var(--tavazo-gray);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.btn--deliveroo {
  background: #00CCBC;
  color: var(--tavazo-white);
  border-color: #00CCBC;
  box-shadow: 0 4px 15px rgba(0, 204, 188, 0.3);
  font-size: var(--fs-base);
}

.btn--deliveroo:hover {
  background: #00b8a9;
  box-shadow: 0 6px 25px rgba(0, 204, 188, 0.45);
  transform: translateY(-2px);
  color: var(--tavazo-white);
}

.deliveroo__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.deliveroo__image img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .deliveroo__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .deliveroo__image {
    order: -1;
  }

  .deliveroo__title {
    font-size: var(--fs-2xl);
  }
}


/* ═══════════════════════════════════════════════
   NEWSLETTER SECTION (standalone on homepage)
   ═══════════════════════════════════════════════ */

.newsletter-section {
  position: relative;
  overflow: hidden;
  background: var(--tavazo-teal-darker) !important;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter__icon {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.newsletter__title {
  color: var(--tavazo-gold);
  font-size: var(--fs-2xl);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.newsletter__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 16px 20px;
  font-size: var(--fs-base);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: 50px 0 0 50px;
  color: var(--tavazo-white);
  outline: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter__input:focus {
  border-color: rgba(194, 158, 83, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter__btn {
  padding: 16px 32px;
  background: rgba(194, 158, 83, 0.85);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  border: 1px solid rgba(194, 158, 83, 0.5);
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.newsletter__btn:hover {
  background: rgba(194, 158, 83, 1);
  box-shadow: 0 4px 20px rgba(194, 158, 83, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}


/* ═══════════════════════════════════════════════
   INSTAGRAM / GALLERY SECTION
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   INSTAGRAM — Edge-to-edge dark section
   ═══════════════════════════════════════════════ */

.instagram-section {
  background: #fff;
  overflow: hidden;
}

/* Header bar — handle + follow button */
.instagram__header {
  padding: 56px 0 40px;
}

.instagram__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.instagram__handle {
  display: flex;
  align-items: center;
  gap: 18px;
}

.instagram__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.25);
  position: relative;
}

.instagram__icon-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 19px;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  z-index: -1;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
}

.instagram__handle:hover .instagram__icon-wrap::after {
  opacity: 0.6;
}

.instagram__icon {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}

.instagram__handle-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--tavazo-charcoal);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.instagram__handle-tag {
  display: block;
  font-size: 13px;
  color: var(--tavazo-gray);
  letter-spacing: 0.04em;
  margin-top: 4px;
  font-style: italic;
}

/* Instagram gradient CTA button */
.btn--instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s ease, background-position 0.6s ease;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
  position: relative;
  overflow: hidden;
}

.btn--instagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn--instagram:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.45);
  color: #fff;
}

.btn--instagram:hover::before {
  transform: translateX(100%);
}

/* Edge-to-edge image grid — 8 images, 4 columns */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.instagram__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none;
  background: #F5F2EE;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.instagram__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

/* Overlay with heart + likes */
.instagram__item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.instagram__item-overlay svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.instagram__item-overlay span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE HOMEPAGE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .hero__showcase-img {
    max-width: 320px;
  }

  .hero__badge--1 { right: -5px; }
  .hero__badge--2 { left: 0; }

  .categories__grid {
    gap: 32px;
  }

  .story__grid {
    gap: var(--space-2xl);
  }

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

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

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

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 var(--space-3xl);
  }

  .hero {
    min-height: 100vh;
  }

  .hero__container {
    text-align: center;
    padding-top: 110px;
    padding-bottom: 360px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
    padding: 0 8px;
  }

  /* Mobile: image fills the bottom half so the gift box is fully visible */
  .hero__bg-image {
    background-position: center 80%;
    background-size: cover;
  }

  .hero__bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(11, 30, 30, 0.92) 0%,
        rgba(11, 30, 30, 0.78) 30%,
        rgba(11, 30, 30, 0.45) 55%,
        rgba(11, 30, 30, 0.15) 100%);
  }

  .hero__title {
    font-size: clamp(2.5rem, 11vw, 3.6rem) !important;
  }

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

  .hero__cta {
    justify-content: center;
  }

  .hero__showcase {
    order: -1;
    margin-bottom: var(--space-lg);
  }

  .hero__showcase-img {
    max-width: 300px;
  }

  .hero__badge { display: none; }
  .hero__float { display: none; }
  .hero__light-follow { display: none; }
  .hero__showcase-frame::before { display: none; }

  .hero__scroll-hint { display: none; }

  /* ── Mobile Hero Animations ── */
  .hero__showcase-img {
    animation: heroFloat 4s ease-in-out infinite;
  }

  .hero__showcase-frame {
    position: relative;
  }

  .hero__showcase-frame::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(194, 158, 83, 0.25) 0%, transparent 70%);
    animation: heroPulseGlow 3s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
  }

  .hero__label {
    animation: heroFadeUp 0.8s ease-out both;
  }

  .hero__title {
    animation: heroFadeUp 0.8s ease-out 0.15s both;
  }

  .hero__gold-line {
    animation: heroFadeUp 0.8s ease-out 0.3s both;
  }

  .hero__description {
    animation: heroFadeUp 0.8s ease-out 0.45s both;
  }

  .hero__cta {
    animation: heroFadeUp 0.8s ease-out 0.6s both;
  }

  .categories__grid {
    gap: 24px;
  }

  .category-card__image-wrap,
  .category-card__image-ring {
    width: 120px;
    height: 120px;
  }

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

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

  .testimonials__grid.testimonials__swiper {
    display: block;
  }

  .testimonials__grid .swiper-wrapper {
    display: flex;
  }

  .testimonials__grid .swiper-slide {
    width: 100% !important;
  }

  .testimonials__pagination {
    display: block;
  }

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

  .instagram__header-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .instagram__handle {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__input {
    border-right: 1px solid rgba(var(--tavazo-gold-rgb), 0.3);
    border-radius: var(--radius-sm);
  }

  .newsletter__btn {
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 var(--space-2xl);
  }

  .hero__container {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
  }

  .hero__showcase-img {
    max-width: 260px;
  }

  .hero__gold-line {
    width: 80px;
    height: 14px;
  }

  .categories__grid {
    gap: 16px;
  }

  .category-card__image-wrap,
  .category-card__image-ring {
    width: 90px;
    height: 90px;
  }

  .category-card__name {
    font-size: 13px;
  }

  .gift-card__body { padding: 16px; }
  .gift-card__name { font-size: 18px; }
  .gift-card__price { font-size: 20px; }

  .deliveroo__title { font-size: var(--fs-xl); }

  .newsletter__title { font-size: var(--fs-xl); }
  .newsletter__form { flex-direction: column; gap: 8px; }
  .newsletter__input { border-radius: 50px; border-right: 1px solid rgba(255,255,255,0.15); }
  .newsletter__btn { border-radius: 50px; }

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

  .instagram__item {
    aspect-ratio: 1 / 1;
  }
}
