﻿/* ============================================================
   Masal Flowers – style.css
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #8B5E3C;
  --primary-light: #C8956C;
  --primary-dark: #5C3D20;
  --accent: #D4A574;
  --accent2: #E8C5A0;
  --blush: #F5E6D8;
  --cream: #FDF8F3;
  --white: #FFFFFF;
  --black: #1A1008;
  --gray: #6B6560;
  --gray-light: #F0EBE5;
  --green: #4A7C59;

  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 10px rgba(139, 94, 60, 0.08);
  --shadow-md: 0 8px 30px rgba(139, 94, 60, 0.12);
  --shadow-lg: 0 20px 60px rgba(139, 94, 60, 0.18);
  --shadow-xl: 0 30px 80px rgba(139, 94, 60, 0.25);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 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: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

body.custom-cursor {
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
}

select,
input,
textarea {
  font-family: var(--font-body);
}

/* ---- Custom Cursor ---- */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s;
  opacity: 0.6;
}

body.cursor-hover .cursor {
  transform: translate(-50%, -50%) scale(2.5);
  background: var(--accent);
}

body.cursor-hover .cursor-follower {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-flower {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  animation: spin 2s linear infinite;
}

.loader-flower .petal {
  transform-origin: 50px 50px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

/* ---- Container ---- */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(200, 149, 108, 0.12);
  border: 1px solid rgba(200, 149, 108, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--primary-light);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(139, 94, 60, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 94, 60, 0.45);
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(139, 94, 60, 0.1);
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  overflow: hidden;
  width: 200px;
}

.nav-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--black);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-light);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover {
  color: var(--primary-light);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
}

.navbar.scrolled .nav-phone {
  color: var(--primary);
}

.nav-phone:hover {
  color: var(--accent);
}

.btn-order {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(139, 94, 60, 0.3);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 94, 60, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar.scrolled .hamburger span {
  background: var(--primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero.loaded .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(91, 50, 20, 0.75) 0%,
      rgba(139, 94, 60, 0.55) 50%,
      rgba(40, 20, 8, 0.7) 100%);
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.4);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero-title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 28px;
}

.title-line {
  display: block;
  color: var(--white);
  animation: fadeInLeft 0.8s ease both;
}

.title-line:nth-child(2) {
  animation-delay: 0.15s;
}

.title-line:nth-child(3) {
  animation-delay: 0.3s;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent2), var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeIn 0.8s 0.4s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s 0.65s ease both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent2);
  line-height: 1;
}

.stat-item>span:last-of-type {
  color: var(--accent2);
  font-size: 2rem;
  font-family: var(--font-serif);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: fadeIn 1s 1s ease both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  50% {
    transform: translateY(8px);
    opacity: 0.3
  }
}

.hero-floating-card {
  position: absolute;
  bottom: 80px;
  right: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  animation: float 4s ease-in-out infinite, fadeIn 1s 0.8s ease both;
  z-index: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.fc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.fc-text {
  display: flex;
  flex-direction: column;
}

.fc-text strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.fc-text span {
  font-size: 0.78rem;
  opacity: 0.75;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
}

.marquee-content .sep {
  color: var(--accent);
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories {
  background: var(--cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-large {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}

.cat-img-wrap {
  position: relative;
  overflow: hidden;
}

.cat-card:not(.cat-large) .cat-img-wrap {
  height: 240px;
}

.cat-large .cat-img-wrap {
  height: 100%;
  min-height: 500px;
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-img-wrap img {
  transform: scale(1.06);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(91, 50, 20, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.cat-card:hover .cat-overlay {
  opacity: 1;
}

.cat-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-info {
  padding: 18px 20px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.cat-count {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: var(--white);
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-light);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  background: transparent;
  transition: var(--transition);
  cursor: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139, 94, 60, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.badge-new {
  background: linear-gradient(135deg, #2d7d46, #4ade80);
}

.badge-sale {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(60px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.product-card:hover .product-actions {
  transform: translateX(0);
}

.pa-btn {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--gray);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  cursor: none;
}

.pa-btn:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: scale(1.1);
}

.pa-btn.active i {
  color: #e74c3c;
}

.pa-btn-main {
  color: var(--primary);
}

.pa-btn-main:hover {
  background: var(--primary);
  color: var(--white);
}

.product-info {
  padding: 20px;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}

.product-old-price {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 0.9rem;
  margin-left: 6px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gray);
}

.product-rating i {
  color: #f59e0b;
}

.products-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   OCCASIONS
   ============================================================ */
.occasions {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.occ-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all 0.4s;
  cursor: none;
}

.occ-card:hover,
.occ-highlight {
  border-color: var(--primary-light);
  background: linear-gradient(135deg, var(--white), var(--blush));
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.occ-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.occ-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.occ-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 22px;
}

.occ-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.occ-link:hover {
  gap: 10px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 50, 20, 0.88), rgba(40, 20, 8, 0.75));
}

.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 60px 24px;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
}

.cta-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 80px;
  text-align: center;
}

.countdown-item span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.countdown-item small {
  font-size: 0.72rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.countdown-sep {
  font-size: 2rem;
  font-family: var(--font-serif);
  opacity: 0.5;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-sm {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.abf-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.abf-text {
  font-size: 0.78rem;
  opacity: 0.85;
}

.about-content {
  padding-bottom: 40px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-dark);
  line-height: 1.7;
  margin: 24px 0;
  font-style: italic;
}

.about-text {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.af-icon {
  width: 48px;
  height: 48px;
  background: var(--blush);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.af-item>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.af-item strong {
  font-size: 0.93rem;
  color: var(--primary-dark);
}

.af-item span {
  font-size: 0.83rem;
  color: var(--gray);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: linear-gradient(135deg, var(--blush), var(--cream));
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 8px;
}

.step {
  flex: 1;
  max-width: 220px;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.step:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(139, 94, 60, 0.12);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 8px auto 18px;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.step-arrow {
  align-self: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  padding-bottom: 20px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.cart-drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 2001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--pdp-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.2rem;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  background: #f8f8f8;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: block;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1rem;
}

.cart-item-qty {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 5px;
  margin-left: 10px;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--pdp-border);
  background: #fafafa;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cart-total strong {
  font-weight: 800;
  color: var(--text-dark);
}

/* Badge for Cart Icon */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #fff;
}

.testimonials-slider {
  overflow: hidden;
  margin-bottom: 32px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 44px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tc-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.tc-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.tc-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.tc-author strong {
  display: block;
  font-size: 0.93rem;
  color: var(--primary-dark);
}

.tc-author span {
  font-size: 0.82rem;
  color: var(--gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: none;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: all 0.3s;
  cursor: none;
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-section {
  background: var(--white);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: none;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 94, 60, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-cta {
  text-align: center;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

.btn-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 39, 67, 0.4);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(180deg, var(--blush), var(--cream));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-info .section-title {
  font-size: 2.2rem;
  margin: 16px 0;
}

.contact-info>p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ci-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  color: var(--black);
}

.ci-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--blush);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.ci-item>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.ci-item span {
  font-size: 0.85rem;
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: all 0.3s;
  cursor: none;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.social-wa {
  border-color: #25d366;
  color: #25d366;
}

.social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(139, 94, 60, 0.3);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit span,
.btn-submit i {
  position: relative;
  z-index: 1;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139, 94, 60, 0.4);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Trust bar */
.trust-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  font-size: 1.3rem;
  color: var(--accent2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 120px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  width: auto;
  object-fit: contain;
  margin-left: -30px;
  /* Kenar kısımları için dengeleme */
}

.footer-brand {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 200px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent2);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer-contact li i {
  color: var(--accent);
  flex-shrink: 0;
  width: 14px;
  margin-top: 2px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-contact li a:hover {
  color: var(--accent2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--accent2);
}

/* Footer social */
.footer .social-btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

.footer .social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.3)
  }

  70% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0)
  }
}

.wa-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9990;
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  box-shadow: var(--shadow-md);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .about-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-sm {
    right: -16px;
    bottom: -16px;
    width: 150px;
    height: 150px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .step-arrow {
    display: none;
  }

  .hero-floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    color: var(--black);
    font-size: 1.2rem;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .occasions-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cat-large {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .about-badge-float {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .section-padding {
    padding: 70px 0;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 68px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .tc-text {
    font-size: 1rem;
  }
}

/* ============================================================
   DRAWERS (Cart & Favorites)
   ============================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.cart-close {
  font-size: 1.2rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-close:hover {
  color: var(--primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  background: #f9f9f9;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.cart-item-qty-row {
  font-size: 0.82rem;
  color: var(--gray);
}

.cart-item-remove {
  color: #ef4444;
  font-size: 1rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 8px;
}

.cart-item-remove:hover {
  opacity: 1;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-light);
  background: #fdfaf7;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.cart-total span {
  font-size: 0.9rem;
  color: var(--gray);
}

.cart-total strong {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

/* responsive */
@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
}