/* ============================================================
   BOSS CANDY — MAIN STYLESHEET
   Premium Candy Brand | style.css
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --red: #ff2d55;
  --pink: #ff6b8a;
  --orange: #ff9f43;
  --yellow: #ffd32a;
  --purple: #a020f0;
  --purple-lt: #c76bfc;
  --teal: #00d2d3;
  --white: #ffffff;
  --off-white: #fff8f9;
  --dark: #1a0a2e;
  --dark-card: #2a1050;
  --text-body: #3d1c5e;

  --gradient-hero: linear-gradient(135deg, #1a0a2e 0%, #3d0068 40%, #6a0572 70%, #ff2d55 100%);
  --gradient-candy: linear-gradient(135deg, #ff2d55, #ff9f43);
  --gradient-pink: linear-gradient(135deg, #ff6b8a, #a020f0);
  --gradient-syrup: linear-gradient(180deg, #ff2d55 0%, #ff9f43 50%, #ffd32a 100%);

  --shadow-glow: 0 0 30px rgba(255, 45, 85, 0.5);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-btn: 0 4px 20px rgba(255, 45, 85, 0.55);

  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 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(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

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

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-candy);
  border-radius: 999px;
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   GLOBAL ANIMATED BACKGROUND BLOBS
   ============================================================ */
.blob-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

.blob-bg .blob-1 {
  width: 500px;
  height: 500px;
  background: var(--red);
  top: -100px;
  left: -120px;
  animation-duration: 14s;
}

.blob-bg .blob-2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  top: 40%;
  right: -100px;
  animation-duration: 18s;
  animation-delay: -4s;
}

.blob-bg .blob-3 {
  width: 350px;
  height: 350px;
  background: var(--purple);
  bottom: -80px;
  left: 30%;
  animation-duration: 16s;
  animation-delay: -8s;
}

.blob-bg .blob-4 {
  width: 280px;
  height: 280px;
  background: var(--teal);
  top: 20%;
  left: 50%;
  animation-duration: 20s;
  animation-delay: -2s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.08);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.94);
  }

  100% {
    transform: translate(15px, -15px) scale(1.05);
  }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 10, 46, 0.75);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 10, 46, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 45, 85, 0.6));
  transition: transform var(--transition);
}

.nav-logo img:hover {
  transform: scale(1.05) rotate(-3deg);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-candy);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

/* CTA nav button */
.nav-cta {
  padding: 0.5rem 1.4rem;
  background: var(--gradient-candy);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white) !important;
  box-shadow: var(--shadow-btn);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 45, 85, 0.7);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26, 10, 46, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--pink);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(150%) skewX(-15deg);
}

.btn-primary {
  background: var(--gradient-candy);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 45, 85, 0.65);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

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

.btn-ghost {
  color: var(--pink);
  background: rgba(255, 107, 138, 0.1);
  border: 1px solid rgba(255, 107, 138, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 107, 138, 0.2);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--gradient-candy);
  width: 28px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-title .highlight {
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
}

/* Divider */
.candy-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-candy);
  border-radius: 4px;
  margin: 1rem 0 1.5rem;
}

/* ============================================================
   FADE-IN SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   HERO SECTION (index.html)
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

/* Animated syrup gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(255, 45, 85, 0.2) 0%, transparent 70%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

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

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

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: badgePulse 2.5s ease-in-out infinite;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: dotBlink 1.2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 211, 42, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 211, 42, 0);
  }
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .line-1 {
  display: block;
  color: var(--white);
}

.hero-title .line-2 {
  display: block;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-3 {
  display: block;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating candy emojis */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-candy {
  position: absolute;
  font-size: 2.2rem;
  animation: floatCandy 6s ease-in-out infinite;
  opacity: 0.65;
}

.float-candy:nth-child(1) {
  top: 15%;
  right: 8%;
  animation-duration: 7s;
  animation-delay: 0s;
}

.float-candy:nth-child(2) {
  top: 55%;
  right: 15%;
  animation-duration: 9s;
  animation-delay: -2s;
}

.float-candy:nth-child(3) {
  top: 30%;
  right: 28%;
  animation-duration: 8s;
  animation-delay: -4s;
}

.float-candy:nth-child(4) {
  top: 70%;
  right: 5%;
  animation-duration: 6s;
  animation-delay: -1s;
}

.float-candy:nth-child(5) {
  top: 80%;
  right: 35%;
  animation-duration: 10s;
  animation-delay: -3s;
}

.float-candy:nth-child(6) {
  top: 10%;
  right: 45%;
  animation-duration: 8.5s;
  animation-delay: -5s;
}

@keyframes floatCandy {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-22px) rotate(8deg) scale(1.1);
  }

  50% {
    transform: translateY(-10px) rotate(-5deg) scale(0.95);
  }

  75% {
    transform: translateY(-30px) rotate(12deg) scale(1.05);
  }
}

/* Hero image / product visual */
.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(500px, 42vw);
  z-index: 2;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  /* box-shadow: 0 20px 80px rgba(255,45,85,0.45); */
  animation: heroImgFloat 5s ease-in-out infinite;
  /* border: 2px solid rgba(255, 255, 255, 0.1); */
}

.product-media {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@keyframes heroImgFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

@keyframes scrollBounce {

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

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

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  padding: 3rem 5%;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 45, 85, 0.3);
}

.about-preview-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-preview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.25) 0%, transparent 60%);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(26, 10, 46, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge .ab-icon {
  font-size: 2rem;
}

.about-badge .ab-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.3;
}

/* ============================================================
   FEATURED PRODUCTS (home)
   ============================================================ */
.featured-products {
  padding: 100px 5%;
  text-align: center;
  position: relative;
}

.featured-products .section-sub {
  margin: 0 auto 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
  justify-content: center;
  /* centers the whole grid */
  gap: 2rem;
  margin-top: 3rem;
}

/* Product Card */
.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 45, 85, 0.4);
  border-color: rgba(255, 45, 85, 0.35);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Glossy shine on product images */
.product-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}

.product-card:hover .product-img-wrap::after {
  left: 130%;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-candy);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 5%;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
  justify-content: center;
  /* center the whole grid */
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-candy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   CONTACT PREVIEW (HOME)
   ============================================================ */
.contact-preview {
  padding: 100px 5%;
  text-align: center;
}

.contact-preview-inner {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.12) 0%, rgba(160, 32, 240, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.contact-preview-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 45, 85, 0.08), transparent);
  animation: contactGlow 5s ease-in-out infinite alternate;
}

@keyframes contactGlow {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: rgba(10, 2, 20, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 46px;
  filter: drop-shadow(0 0 8px rgba(255, 45, 85, 0.5));
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.social-icon:hover {
  background: var(--gradient-candy);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--pink);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0;
}

.footer-contact-item span:first-child {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--pink);
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 45vh;
  padding: 140px 5% 80px;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(255, 45, 85, 0.18), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: var(--orange);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb .sep {
  opacity: 0.4;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 45, 85, 0.3);
}

.about-story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0 5% 100px;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 45, 85, 0.25);
  border-color: rgba(255, 45, 85, 0.25);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Mission/Vision */
.mission-vision {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.mv-card.mission {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.15), rgba(255, 159, 67, 0.15));
  border: 1px solid rgba(255, 45, 85, 0.25);
}

.mv-card.vision {
  background: linear-gradient(135deg, rgba(160, 32, 240, 0.15), rgba(0, 210, 211, 0.15));
  border: 1px solid rgba(160, 32, 240, 0.25);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Team/Why Choose */
.why-choose {
  padding: 60px 5% 100px;
  text-align: center;
  /* centers title + text */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  /* centers the grid itself */
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  transition: transform var(--transition);
}

.why-item:hover {
  transform: translateY(-6px);
}

.why-item .wi-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-candy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-btn);
}

.why-item h4 {
  font-family: var(--font-heading);
  font-weight: 800;
}

.why-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-page {
  padding: 80px 5% 100px;
}

.products-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-candy);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

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

/* Category titles */
.cat-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 3rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 80px 5% 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: transform var(--transition);
  backdrop-filter: blur(8px);
}

.contact-info-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 45, 85, 0.25);
}

.ci-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: var(--gradient-candy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
}

.ci-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 4px;
}

.ci-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* Contact Form */
.contact-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  min-height: 130px;
}

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(0, 210, 100, 0.1);
  border: 1px solid rgba(0, 210, 100, 0.3);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  color: #00d264;
  font-weight: 700;
  margin-top: 1rem;
}

.form-success.show {
  display: flex;
  animation: fadeIn 0.5s ease;
}

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

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

/* ============================================================
   LIQUID FLOW DECORATION
   ============================================================ */
.liquid-flow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-syrup);
  background-size: 200% 100%;
  animation: liquidFlow 3s linear infinite;
}

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

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

/* Wave separator */
.wave-separator {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -2px;
}

.wave-separator svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story,
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-story-img img,
  .about-preview-img img {
    height: 320px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }
}

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

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

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

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

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

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    text-align: center;
    justify-content: center;
  }

  .contact-page {
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 4%;
  }

  .products-full-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

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

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

/* Glowing orb decoration */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.15;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(20px, -30px);
  }
}