/* ===== DESIGN SYSTEM — İlaç Kutusu Davetiye ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #0B7A75;
  --primary-dark: #065551;
  --primary-light: #E0F2F1;
  --primary-glow: rgba(11, 122, 117, 0.15);
  --accent: #C8A951;
  --accent-light: #F5ECD7;
  --accent-dark: #9E8340;
  --bg: #FFFBF5;
  --bg-alt: #F7F3ED;
  --bg-dark: #1A1A2E;
  --bg-darker: #12121F;
  --text: #2C3E50;
  --text-light: #7F8C8D;
  --text-muted: #B0B5B3;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(11, 122, 117, 0.12);
  --gradient: linear-gradient(135deg, #0B7A75 0%, #0D9B93 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  --gold-gradient: linear-gradient(135deg, #C8A951 0%, #E2C97E 50%, #C8A951 100%);
  --hero-gradient: linear-gradient(135deg, #0B7A75 0%, #0D9B93 40%, #16A085 100%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container: 1240px;
  --header-h: 80px;
}

/* --- 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);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

input,
textarea,
select {
  font-family: var(--font-body);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-badge i {
  font-size: 0.75rem;
}

.section-title {
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin: 0 auto;
}

/* ================================================================
   HEADER / NAVBAR
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo {
  color: var(--primary-dark);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.header.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent);
}

.header.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--gold-gradient) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 81, 0.45) !important;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
  background: var(--text);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-3deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: slideUp 0.8s ease-out 0.15s both;
}

.hero-text h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
  animation: slideUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.45s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: slideUp 1s ease-out 0.3s both;
}

.hero-image-wrapper {
  position: relative;
  width: 460px;
  height: 460px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-float-card.card-1 {
  top: 30px;
  left: -40px;
}

.hero-float-card.card-2 {
  bottom: 50px;
  right: -30px;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.float-card-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.float-card-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ================================================================
   BUTTONS  
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(200, 169, 81, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 169, 81, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--bg-darker);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-telegram {
  background: #0088CC;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
  background: #006699;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn i {
  font-size: 1.1em;
}

/* ================================================================
   CATEGORIES SECTION
   ================================================================ */
/* ================================================================
   CATEGORIES SECTION - FISH EYE EFFECT
   ================================================================ */
.categories {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  padding: 40px 0;
}

.category-card {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--white);
  flex-shrink: 0;
}

/* Fish Eye / Magnification Effect */
.category-card:hover {
  transform: scale(1.35);
  /* Significant magnification */
  z-index: 10;
  box-shadow: 0 20px 50px rgba(11, 122, 117, 0.3);
  border-color: var(--primary);
}

/* Sibling fade effect for focus */
.categories-grid:hover .category-card:not(:hover) {
  transform: scale(0.9);
  opacity: 0.7;
  filter: blur(2px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  opacity: 0;
}

.category-card:hover .category-overlay {
  opacity: 1;
  background: rgba(11, 122, 117, 0.7);
  /* Primary color overlay */
}

.category-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card:hover .category-overlay h3 {
  transform: translateY(0);
}

.category-overlay span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.category-card:hover .category-overlay span {
  transform: translateY(0);
}

.category-overlay .cat-arrow {
  display: none;
  /* Removed for circular design */
}

/* Specific adjustments for small type if needed, but here all are treated equally for the effect */
.category-card.category-sm {
  /* Using same styles for uniformity in fish eye menu */
  animation: none;
  /* Disable floating for this effect */
}

/* ================================================================
   FEATURED PRODUCTS
   ================================================================ */
.featured {
  padding: 100px 0;
  background: var(--bg-alt);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.product-card-body {
  padding: 22px;
}

.product-card-body h4 {
  font-family: var(--font-heading);
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: var(--text);
  transition: var(--transition);
}

.product-card:hover .product-card-body h4 {
  color: var(--primary);
}

.product-card-body .product-category {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-price .from {
  font-size: 0.78rem;
  color: var(--text-light);
}

.product-price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.product-price .currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ================================================================
   WHY US SECTION
   ================================================================ */
.why-us {
  padding: 100px 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient);
  color: var(--white);
  transform: scale(1.08);
}

.why-card h4 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================================================
   HOW TO ORDER
   ================================================================ */
.how-to {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: var(--white);
}

.how-to .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
}

.how-to .section-title {
  color: var(--white);
}

.how-to .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200, 169, 81, 0.3);
}

.step-card h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--bg-alt);
}

.cta-inner {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(200, 169, 81, 0.15);
  border-radius: 50%;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--accent);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* ================================================================
   FLOATING CONTACT BUTTONS
   ================================================================ */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.telegram {
  background: #0088CC;
}

.float-btn .tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateX(10px);
}

.float-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   PRODUCTS PAGE
   ================================================================ */
.page-header {
  padding: 140px 0 60px;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.12), transparent);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  font-size: 0.7rem;
}

/* Filter bar */
.filter-bar {
  padding: 30px 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  backdrop-filter: blur(20px);
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-pill {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--white);
  color: var(--text);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(11, 122, 117, 0.25);
}

.products-listing {
  padding: 50px 0 100px;
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail-section {
  padding: 40px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.product-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 1;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.product-gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--bg-alt);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-thumb:hover {
  border-color: var(--primary-glow);
  transform: translateY(-2px);
}

.gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 122, 117, 0.2);
}

.gallery-thumb.active img {
  opacity: 0.9;
}

.product-info {
  padding-top: 10px;
}

.product-info .product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.product-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.3;
}

.product-info .product-desc {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Pricing options */
.pricing-section {
  margin-bottom: 30px;
}

.pricing-section h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-section h3 i {
  color: var(--accent);
}

.size-options {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.size-option {
  flex: 1;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: var(--white);
}

.size-option:hover {
  border-color: var(--primary-glow);
}

.size-option.active {
  border-color: var(--primary);
  background: var(--primary-light);
}

.size-option .size-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.size-option .size-dim {
  font-size: 0.78rem;
  color: var(--text-light);
}

.weight-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.weight-option {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weight-option:hover {
  border-color: var(--primary-glow);
}

.weight-option.active {
  border-color: var(--primary);
  background: var(--primary-light);
}

.weight-option .weight-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.weight-option .weight-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

/* Quantity */
.quantity-section {
  margin-bottom: 24px;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border: none;
  font-size: 1.2rem;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.qty-input {
  width: 70px;
  text-align: center;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  background: transparent;
  outline: none;
}

.qty-min-note {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Price summary */
.price-summary {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.92rem;
}

.price-row.extra-fee {
  color: var(--accent-dark);
}

.price-row.total {
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

/* ================================================================
   ORDER FORM
   ================================================================ */
.order-form-section {
  margin-top: 0;
  padding: 40px 0 80px;
}

.order-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  margin-bottom: 36px;
}

.form-title h2 {
  margin-bottom: 8px;
}

.form-title p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group label .required {
  color: #E74C3C;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.char-counter {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

.char-counter.limit {
  color: #E74C3C;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 30px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title i {
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.form-note {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

/* ================================================================
   RELATED PRODUCTS CAROUSEL
   ================================================================ */
.related-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 20px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track .product-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 25px rgba(11, 122, 117, 0.2);
}

.carousel-nav.prev {
  left: -20px;
}

.carousel-nav.next {
  right: -20px;
}

/* ================================================================
   PROFORMA INVOICE MODAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  transform: translateY(30px);
  transition: var(--transition);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: #fde8e8;
  color: #e74c3c;
}

/* Invoice styles */
.invoice-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--bg-alt);
  margin-bottom: 24px;
}

.invoice-header h2 {
  font-size: 1.5rem;
  color: var(--primary);
}

.invoice-header p {
  color: var(--text-light);
  font-size: 0.88rem;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.invoice-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.invoice-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.92rem;
}

.invoice-table .total-row td {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  border-top: 2px solid var(--primary);
}

/* ================================================================
   TOAST NOTIFICATIONS
   ================================================================ */
.toast {
  position: fixed;
  top: 100px;
  right: 28px;
  z-index: 3000;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  transform: translateX(120%);
  transition: var(--transition);
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid #27AE60;
}

.toast.error {
  border-left: 4px solid #E74C3C;
}

.toast i {
  font-size: 1.3rem;
}

.toast.success i {
  color: #27AE60;
}

.toast.error i {
  color: #E74C3C;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(11, 122, 117, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  cursor: pointer;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(11, 122, 117, 0.45);
}

/* ================================================================
   LOADING ANIMATION
   ================================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--text) !important;
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .size-options {
    flex-direction: column;
  }

  .weight-options {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    display: none;
  }

  .cta-inner {
    padding: 40px 24px;
  }

  .order-form-wrapper {
    padding: 24px;
  }

  .modal-content {
    padding: 24px;
  }

  .floating-btns {
    bottom: 20px;
    right: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .scroll-top {
    bottom: 88px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 90vh;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
  }

  .product-card-body {
    padding: 16px;
  }
}

/* Success page */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.success-box {
  text-align: center;
  max-width: 500px;
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #E8F8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #27AE60;
}

.success-box h2 {
  margin-bottom: 12px;
}

.success-box p {
  color: var(--text-light);
  margin-bottom: 30px;
}