@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  /* Core Theme: Organic Teal and Warm Neutrals */
  --fresh-primary: #0d9488; /* Calming, natural teal instead of tech blue */
  --fresh-primary-light: #ccfbf1; /* Soft minty highlight */
  --fresh-text: #292524; /* Warm stone/charcoal for softer reading contrast */
  --fresh-text-light: #78716c; /* Muted stone */
  --fresh-bg: #ffffff;
  --fresh-bg-alt: #fafaf9; /* Extremely subtle warm off-white */
  --fresh-border: #e7e5e4;

  /* Refined, softer shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -2px rgba(0, 0, 0, 0.04);

  /* Bento Grid Variables */
  --bento-bg: #ffffff;
  --bento-text: #292524;
  --bento-text-muted: #78716c;
  --bento-primary: #0d9488;
  --bento-primary-light: #ccfbf1;
  --bento-accent: #d97706; /* Warm amber instead of harsh violet */
  --bento-accent-light: #fef3c7;
  --bento-radius: 20px; /* Reduced from 32px for a cleaner, less cartoonish look */
  --bento-shadow:
    0 2px 8px -2px rgba(0, 0, 0, 0.04), 0 1px 4px -1px rgba(0, 0, 0, 0.02);
  --bento-shadow-hover:
    0 12px 24px -4px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.02);

  /* Feature Section Variables */
  --feat-bg: #ffffff;
  --feat-text: #292524;
  --feat-text-muted: #78716c;

  /* Organic Pastel Backgrounds - Desaturated for a lifestyle/fresh feel */
  --feat-card-1: #f0fdfa; /* Mint */
  --feat-icon-1: #0f766e;

  --feat-card-2: #fff1f2; /* Soft Rose */
  --feat-icon-2: #be123c;

  --feat-card-3: #fffbeb; /* Warm Sand */
  --feat-icon-3: #b45309;

  --feat-card-4: #f8fafc; /* Crisp Cloud */
  --feat-icon-4: #334155;

  --feat-radius: 16px; /* Tighter, more elegant corners */
  --feat-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fresh-bg); /* Fixed from undefined --bg */
  color: var(--fresh-text); /* Fixed from undefined --text */
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6; /* Slightly tighter line-height for cleaner typography */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Breadcrumb & Header */
.fresh-page-header {
  /* Soft, organic gradient replacing the tech blue */
  background: linear-gradient(135deg, #fafaf9 0%, #f0fdfa 100%);
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e7e5e4; /* Warm, subtle border */
}

/* Abstract blurred shape for depth */
.fresh-header-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  opacity: 0.45; /* Softened opacity for a more subtle glow */
  width: 350px;
  height: 350px;
  background: #ccfbf1; /* Soft Mint instead of bright sky blue */
  top: -150px;
  right: 15%;
}

.fresh-header-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating Pill Breadcrumb */
.fresh-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 50px; /* Kept the pill shape, works well for breadcrumbs */
  font-size: 0.85rem;
  font-weight: 600; /* Dropped from 700 to 600 for a less aggressive look */
  color: #78716c; /* Warm muted stone */
  /* Softer, more diffused shadow with a faint border */
  box-shadow:
    0 4px 12px -4px rgba(0, 0, 0, 0.04),
    0 2px 4px -2px rgba(0, 0, 0, 0.02);
  border: 1px solid #f5f5f4;
  margin-bottom: 24px;
}

.fresh-breadcrumb a {
  color: #0d9488; /* Organic Teal */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.fresh-breadcrumb a:hover {
  color: #0f766e; /* Deeper Teal on hover */
}

.fresh-separator {
  color: #d6d3d1; /* Warmer light gray */
  font-weight: 400;
}

.fresh-current {
  color: #292524; /* Warm stone/charcoal */
}

/* Typography */
.fresh-page-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; /* Dropped from 800 to 700 for a cleaner appearance */
  color: #292524;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.02em; /* Slight negative tracking for modern headings */
}

.fresh-text-accent {
  color: #0d9488; /* Organic Teal */
}

.fresh-page-desc {
  font-size: 1.15rem;
  color: #78716c; /* Warm muted stone */
  line-height: 1.6; /* Tighter line height matching the base body */
  margin: 0;
  max-width: 600px;
}

/* --- Top Bar --- */
/* Announcement Topbar */
.fresh-topbar {
  background-color: var(--fresh-primary-light); /* Soft Mint */
  color: #0f766e; /* Slightly darker teal for better reading contrast */
  padding: 10px 5%;
  font-size: 0.85rem; /* Slightly smaller for a refined, modern look */
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px; /* Tightened the gap slightly for better visual grouping */
  text-align: center;
  letter-spacing: 0.01em;
}

.fresh-topbar-badge {
  background: var(--fresh-primary); /* Organic Teal */
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 50px; /* Full pill shape to match your breadcrumbs */
  font-size: 0.7rem;
  font-weight: 600; /* Dropped from 700 to feel less shouty */
  letter-spacing: 0.06em; /* Increased letter-spacing for elegant uppercase */
  text-transform: uppercase;
  box-shadow: 0 2px 4px -1px rgba(13, 148, 136, 0.2); /* Very subtle teal glow */
}

.fresh-topbar strong {
  color: #0d9488; /* Swapped the bright sky blue for our primary teal */
  font-weight: 600; /* Dropped from 700 to keep the minimalist vibe */
}

/* --- Main Header --- */
/* --- Header Container --- */
.fresh-header {
  background-color: var(--fresh-bg);
  border-bottom: 1px solid var(--fresh-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm); /* Using the softer shadow */
}

.fresh-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.fresh-logo img {
  height: 70px;
  object-fit: contain;
}

/* --- Desktop Nav --- */
.fresh-nav {
  display: flex;
  gap: 32px; /* Slightly wider for an airy, uncluttered feel */
  align-items: center;
}

@media (max-width: 1024px) {
  .fresh-nav {
    display: none;
  }
}

.fresh-nav a {
  text-decoration: none;
  color: var(--fresh-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px; /* Gives the underline breathing room */
}

.fresh-nav a:hover {
  color: var(--fresh-primary); /* Organic Teal */
}

.fresh-nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--fresh-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.fresh-nav a:hover::after {
  width: 100%;
}

/* --- Right Actions --- */
.fresh-actions {
  display: flex;
  align-items: center;
  gap: 12px; /* Tighter grouping for icons */
}

/* Pill-shaped Search */
.fresh-search {
  display: flex;
  align-items: center;
  background: var(--fresh-bg-alt); /* Soft off-white */
  border-radius: 50px;
  padding: 8px 16px;
  border: 1px solid transparent; /* Removed static border for a cleaner resting state */
  transition: all 0.3s ease;
}

.fresh-search:focus-within {
  background: var(--fresh-bg);
  border-color: var(--fresh-primary-light);
  box-shadow: 0 0 0 3px var(--fresh-primary-light); /* Soft mint glow instead of hard line */
}

.fresh-search i {
  color: var(--fresh-text-light);
  font-size: 1rem;
}

.fresh-search input {
  border: none;
  background: transparent;
  outline: none;
  padding-left: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--fresh-text);
  width: 140px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Buttery smooth expansion */
}

.fresh-search input::placeholder {
  color: var(--fresh-text-light);
  opacity: 0.7;
}

.fresh-search input:focus {
  width: 200px;
}

@media (max-width: 768px) {
  .fresh-search {
    display: none;
  }
}

/* Icon Buttons (Cart, Account) */
.fresh-icon-btn {
  text-decoration: none;
  color: var(--fresh-text);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}

.fresh-icon-btn:hover {
  background: var(--fresh-bg-alt);
  color: var(--fresh-primary);
}

.fresh-cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--fresh-primary); /* Teal */
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  height: 18px;
  min-width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 0 5px;
  border: 2px solid var(--fresh-bg); /* Creates a nice cutout effect against the icon */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Mobile Toggle */
.fresh-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--fresh-text);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}

.fresh-menu-toggle:hover {
  color: var(--fresh-primary);
}

@media (max-width: 1024px) {
  .fresh-menu-toggle {
    display: block;
  }
}

/* --- Mobile Drawer Menu --- */
.fresh-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* Swapped cold dark blue for a warm, transparent stone color */
  background: rgba(41, 37, 36, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fresh-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fresh-mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--fresh-bg);
  z-index: 1002;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.04); /* Diffused shadow */
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.fresh-mobile-drawer.active {
  right: 0;
}

.fresh-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--fresh-border);
}

.fresh-drawer-header img {
  height: 32px;
}

.fresh-drawer-close {
  background: var(--fresh-bg-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fresh-text-light);
  transition: all 0.2s ease;
}

.fresh-drawer-close:hover {
  background: var(--fresh-border);
  color: var(--fresh-text);
}

.fresh-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 8px; /* Tighter gap, relies on padding instead */
  overflow-y: auto;
}

.fresh-drawer-nav a {
  text-decoration: none;
  color: var(--fresh-text);
  font-weight: 500; /* Softened weight */
  font-size: 1.05rem;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.fresh-drawer-nav a:hover {
  background: var(--fresh-bg-alt);
  color: var(--fresh-primary);
  transform: translateX(
    4px
  ); /* Hardware-accelerated slide instead of clunky padding jump */
}

.fresh-drawer-footer {
  margin-top: auto;
  padding: 24px 20px;
  background: var(--fresh-bg-alt);
  font-size: 0.85rem;
  color: var(--fresh-text-light);
  text-align: center;
  border-top: 1px solid var(--fresh-border);
}

/* =====================================================
   HERO BANNER — MODERN SPLIT LAYOUT
===================================================== */
.fresh-hero-split {
  background-color: var(--fresh-bg);
  padding: 60px 5% 0px;
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow: hidden;
}

.fresh-hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Text gets slightly more room */
  gap: 60px;
  align-items: center;
}

/* --- TEXT CONTENT (LEFT) --- */
.fresh-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.fresh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fresh-primary-light); /* Soft mint */
  color: var(--fresh-primary); /* Teal */
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.fresh-title {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--fresh-text);
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.text-teal {
  color: var(--fresh-primary);
}

.fresh-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--fresh-text-light);
  margin: 0 0 40px 0;
  max-width: 90%;
}

/* --- BUTTONS --- */
.fresh-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fresh-primary);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -6px rgba(13, 148, 136, 0.4);
}

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -6px rgba(13, 148, 136, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--fresh-text);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 16px 0;
}

.btn-secondary:hover {
  color: var(--fresh-primary);
}

/* --- INLINE TRUST INDICATORS --- */
.fresh-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--fresh-border);
  width: 100%;
  max-width: 500px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fresh-text-light);
}

.trust-item strong {
  color: var(--fresh-text);
  font-weight: 600;
}

.trust-item .stars {
  color: #d97706; /* Warm amber */
  font-size: 0.9rem;
}

.trust-item i.fa-circle-check {
  color: var(--fresh-primary);
  font-size: 1.1rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background-color: var(--fresh-border);
}

/* --- VISUAL CONTENT (RIGHT) --- */
.fresh-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Soft organic shape behind the printer */
.visual-backdrop {
  position: absolute;
  width: 100%;
  padding-bottom: 100%; /* Creates a perfect circle/square ratio */
  background: linear-gradient(135deg, var(--fresh-bg-alt) 0%, #f0fdfa 100%);
  border-radius: 50%;
  z-index: 0;
}

.main-printer-img {
  position: relative;
  z-index: 1;
  width: 110%; /* Image gently breaks out of the backdrop */
  max-width: 600px;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
  animation: floatImage 6s ease-in-out infinite;
}

/* Gentle floating animation for a premium feel */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Floating Feature Card */
.floating-feature {
  position: absolute;
  bottom: 10%;
  left: -5%;
  z-index: 2;
  background: var(--fresh-bg);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--fresh-border);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #fffbeb; /* Warm yellow background */
  color: #d97706; /* Warm amber icon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fresh-text);
}

.feature-text span {
  font-size: 0.8rem;
  color: var(--fresh-text-light);
}

/* =====================================================
   RESPONSIVE (All Screen Size Friendly)
===================================================== */
@media (max-width: 1024px) {
  .fresh-hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .fresh-hero-text {
    align-items: center;
  }

  .fresh-description {
    max-width: 700px;
  }

  .fresh-hero-actions {
    justify-content: center;
  }

  .fresh-hero-trust {
    justify-content: center;
  }

  .main-printer-img {
    width: 80%;
    max-width: 500px;
  }

  .floating-feature {
    left: auto;
    right: 0; /* Move to the right on tablet so it doesn't overlap text */
  }
}

@media (max-width: 768px) {
  .fresh-hero-split {
    padding: 40px 5% 60px;
  }

  .fresh-title {
    font-size: clamp(32px, 8vw, 40px);
  }

  .fresh-hero-actions {
    flex-direction: column; /* Stack buttons vertically on phones */
    width: 100%;
    gap: 15px;
  }

  .btn-primary {
    width: 100%; /* Full width touch target for better UX */
    justify-content: center;
  }

  .fresh-hero-trust {
    flex-direction: column; /* Stack trust info on small screens */
    gap: 12px;
    padding-top: 20px;
  }

  .trust-divider {
    display: none; /* Hide the vertical divider when stacked */
  }

  .floating-feature {
    display: none; /* Hide floating card on small phones to keep the image clean */
  }
}

/* =====================================================
   FEATURES & TRUST SECTION — ORGANIC & MINIMAL
===================================================== */

.fresh-features-section {
  /* Beautiful, soft gradient background to anchor the section */
  background: linear-gradient(180deg, #fafaf9 0%, #f0fdfa 100%);
  padding: 100px 5%; /* Increased padding for a more breathable, premium feel */
  font-family: "Plus Jakarta Sans", sans-serif;
  border-top: 1px solid #f5f5f4;
}

.fresh-features-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Section Header --- */
.fresh-section-header {
  text-align: center;
  max-width: 650px;
  margin-bottom: 60px;
}

.fresh-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0d9488; /* Organic Teal */
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600; /* Softened from 700 */
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid rgba(13, 148, 136, 0.15); /* Delicate teal border */
  box-shadow: 0 4px 10px -5px rgba(0, 0, 0, 0.03);
}

.fresh-section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; /* Dropped from 800 for elegance */
  color: #292524; /* Warm stone charcoal */
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fresh-section-header p {
  font-size: 1.15rem;
  color: #78716c; /* Muted stone */
  margin: 0;
  line-height: 1.6;
}

/* --- Features Grid --- */
.fresh-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 70px;
}

.fresh-feature-card {
  border-radius: 20px; /* Modern, refined radius */
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid transparent;
}

.fresh-feature-card:hover {
  transform: translateY(-4px); /* Much softer lift */
  /* Replaced heavy shadow with a diffused, premium glow */
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

/* 
   Remapped Card Colors to Organic Pastels 
   (Kept your original class names for easy integration)
*/
.feat-card-blue {
  background-color: #f0fdfa; /* Soft Mint */
  border-color: #ccfbf1;
}
.feat-card-blue:hover {
  border-color: #99f6e4;
}

.feat-card-rose {
  background-color: #fffbeb; /* Warm Sand */
  border-color: #fef3c7;
}
.feat-card-rose:hover {
  border-color: #fde68a;
}

.feat-card-yellow {
  background-color: #f5f5f4; /* Soft Stone */
  border-color: #e7e5e4;
}
.feat-card-yellow:hover {
  border-color: #d6d3d1;
}

.feat-card-violet {
  background-color: #ecfdf5; /* Gentle Sage */
  border-color: #d1fae5;
}
.feat-card-violet:hover {
  border-color: #a7f3d0;
}

/* Feature Icons */
.fresh-feature-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%; /* Swapped to circles for a friendlier, organic feel */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

.fresh-feature-card:hover .fresh-feature-icon {
  transform: scale(1.1); /* Icon scales up slightly on card hover */
}

/* Icon Colors mapped to their new backgrounds */
.feat-card-blue .fresh-feature-icon {
  color: #0d9488;
} /* Teal */
.feat-card-rose .fresh-feature-icon {
  color: #d97706;
} /* Amber */
.feat-card-yellow .fresh-feature-icon {
  color: #57534e;
} /* Slate */
.feat-card-violet .fresh-feature-icon {
  color: #059669;
} /* Emerald */

/* Card Typography */
.fresh-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #292524;
  margin: 0 0 10px 0;
}

.fresh-feature-card p {
  font-size: 0.95rem;
  color: #57534e; /* Slightly darker than muted stone for readability */
  margin: 0;
  line-height: 1.6;
}

/* --- Floating Trust Pill (Glassmorphism Effect) --- */
.fresh-trust-pill {
  /* Replaced flat white with a sleek, translucent glass effect */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 16px 48px;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.04);
}

.fresh-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #292524;
}

.fresh-trust-divider {
  width: 4px;
  height: 4px;
  background: #d6d3d1;
  border-radius: 50%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .fresh-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fresh-features-section {
    padding: 60px 5%;
  }

  .fresh-trust-pill {
    border-radius: 20px;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    width: 100%;
    align-items: flex-start;
  }

  .fresh-trust-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .fresh-features-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CATEGORIES SECTION — COLORFUL ORGANIC CARDS
===================================================== */

.fresh-categories-section {
  background: linear-gradient(135deg, #fffbeb 0%, #f0fdfa 100%);
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-top: 1px solid #f5f5f4;
}

.fresh-categories-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Section Header --- */
.fresh-cat-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.fresh-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0d9488; /* Organic Teal */
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  box-shadow: 0 4px 10px -5px rgba(13, 148, 136, 0.1);
}

.fresh-cat-pill i {
  color: #d97706; /* Warm Amber */
}

.fresh-cat-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; /* Dropped from 800 for elegance */
  color: #292524; /* Charcoal Stone */
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fresh-cat-gradient {
  color: #0d9488; /* Solid Teal Emphasis */
}

.fresh-cat-desc {
  font-size: 1.15rem;
  color: #78716c; /* Muted Stone */
  line-height: 1.6;
  margin: 0;
}

/* --- Categories Grid --- */
.fresh-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

/* --- Category Card (Entirely Colorful) --- */
.fresh-cat-card {
  border-radius: 28px; /* Soft, friendly corners */
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.02);
}

/* 
   Automatically assigns organic pastel colors to the entire card.
*/
.fresh-cat-card:nth-child(4n + 1) {
  background: #f0fdfa;
  border-color: #ccfbf1;
} /* Mint */
.fresh-cat-card:nth-child(4n + 2) {
  background: #fffbeb;
  border-color: #fef3c7;
} /* Sand */
.fresh-cat-card:nth-child(4n + 3) {
  background: #eff6ff;
  border-color: #dbeafe;
} /* Soft Blue */
.fresh-cat-card:nth-child(4n + 4) {
  background: #ecfdf5;
  border-color: #d1fae5;
} /* Sage */

.fresh-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.06);
}

/* Image Box Area */
.fresh-cat-image-box {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

/* 
   Overrides your old HTML background classes so they 
   don't clash with the new full-card backgrounds 
*/
.cat-bg-violet,
.cat-bg-rose,
.cat-bg-blue,
.cat-bg-emerald {
  background-color: transparent !important;
}

.fresh-cat-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: #ffffff; /* White circle to pop against pastels */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  z-index: 2;
  transition: transform 0.4s ease;
}

.fresh-cat-card:hover .fresh-cat-icon {
  transform: scale(1.1); /* Fun, subtle pop on hover */
}

/* Remapped old icon colors to the new theme */
.cat-icon-violet {
  color: #8b5cf6;
}
.cat-icon-rose {
  color: #e11d48;
}
.cat-icon-blue {
  color: #0ea5e9;
}
.cat-icon-emerald {
  color: #059669;
}

.fresh-cat-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.fresh-cat-card:hover .fresh-cat-img {
  transform: scale(1.05); /* Premium, slow zoom without the clunky rotation */
}

/* Card Content */
.fresh-cat-info {
  padding: 0 24px 0 24px;
  flex-grow: 1;
}

.fresh-cat-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #292524; /* Dark Stone */
  margin: 0 0 8px 0;
}

.fresh-cat-info p {
  font-size: 0.95rem;
  color: #57534e; /* Readable dark gray */
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Card Footer */
.fresh-cat-footer {
  padding: 20px 24px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0d9488; /* Organic Teal */
  font-weight: 700;
  font-size: 0.95rem;
}

.fresh-cat-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff; /* White button base */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.fresh-cat-card:hover .fresh-cat-arrow {
  background: #0d9488; /* Fills with teal on hover */
  color: #ffffff;
  transform: translateX(4px);
}

/* --- Bottom Action --- */
.fresh-center-action {
  text-align: center;
}

.fresh-btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #292524;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid #e7e5e4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.fresh-btn-view-all:hover {
  background: #0d9488;
  color: #ffffff;
  border-color: #0d9488;
  box-shadow: 0 8px 20px -6px rgba(13, 148, 136, 0.4);
  transform: translateY(-2px);
}

/* =====================================================
   PRODUCTS SECTION — SHARP & STRUCTURAL (ORGANIC PALETTE)
===================================================== */

.fresh-collection-section {
  background-color: #ffffff; /* Keeping the background stark white as requested */
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.fresh-collection-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Header --- */
.fresh-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

/* Transformed into a sharp, structural tag */
.fresh-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0d9488;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  box-shadow: 0 4px 10px -5px rgba(0, 0, 0, 0.03);
}

.fresh-badge-pill i {
  color: #0d9488; /* Organic Teal */
}

.fresh-section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #292524;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: -0.03em; /* Tight tracking for hard-hitting headlines */
}

.fresh-text-gradient {
  color: #0d9488; /* Replaced gradient with solid, confident Teal */
}

.fresh-section-header p {
  font-size: 1.1rem;
  color: #78716c;
  line-height: 1.6;
  margin: 0;
}

/* --- Tabs --- */
.fresh-products-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0; /* Removed gap for a connected, tabular look */
  margin-bottom: 50px;
  border-bottom: 2px solid #e7e5e4;
}

/* Sharp, brutalist-lite tabs */
.tab-btn {
  background: transparent;
  color: #78716c;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 32px;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -2px; /* Overlaps the container border */
  transition: all 0.2s ease-out; /* Fast, snappy transition */
}

.tab-btn:hover {
  color: #0d9488;
  background: #fafaf9;
}

.tab-btn.active {
  background: transparent;
  color: #292524;
  border-bottom: 2px solid #0d9488; /* Sharp underline indicator */
  box-shadow: none; /* Stripped the glowing shadow */
}

/* --- Grid --- */
.fresh-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px; /* Distinct separation */
}

/* --- Product Card --- */
.fresh-product-card {
  background: #ffffff;
  border: 1px solid #e7e5e4; /* Crisp, visible structural border */
  border-radius: 0; /* Razor sharp corners */
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.2s ease-out;
  box-shadow: none; /* Flat, modern look */
  animation: fadeScaleIn 0.4s ease-out forwards;
}

@keyframes fadeScaleIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hard-hitting hover effect */
.fresh-product-card:hover {
  transform: translateY(-4px) translateX(-4px); /* Moves diagonally */
  border-color: #292524; /* Border darkens dramatically */
  box-shadow:
    6px 6px 0px #f0fdfa,
    7px 7px 0px #0d9488; /* Sharp, offset architectural shadow */
}

/* Image Area */
.fresh-product-image-box {
  width: 100%;
  height: 260px;
  background: #fafaf9; /* Warm off-white */
  border-radius: 0; /* Sharp corners */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
}

.fresh-product-card:hover .fresh-product-image-box {
  border-color: #e7e5e4; /* Image box gets framed on hover */
}

.fresh-product-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s ease-out;
}

/* Removed the bouncy rotation, replaced with a direct, intense zoom */
.fresh-product-card:hover .fresh-product-img {
  transform: scale(1.1);
}

/* Badges */
.fresh-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #292524; /* Striking charcoal instead of light red */
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 0; /* Sharp edges */
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.fresh-product-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  color: #292524;
  padding: 6px 10px;
  border-radius: 0; /* Sharp edges */
  border: 1px solid #e7e5e4;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
  z-index: 2;
}

.fresh-product-rating i {
  color: #d97706; /* Warm amber */
}

/* Info Area */
.fresh-product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fresh-product-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #78716c;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fresh-product-title {
  font-size: 1.2rem;
  font-weight: 800; /* Heavy weight for impact */
  color: #292524;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.fresh-product-desc {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.5;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

/* Footer Area */
.fresh-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e7e5e4; /* Stronger dividing line */
}

.fresh-product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d9488; /* Primary Teal */
  letter-spacing: -0.02em;
}

/* Transformed from a circle to a sharp, structural block */
.fresh-product-cta {
  width: 40px;
  height: 40px;
  border-radius: 0; /* Sharp square */
  background: #ffffff;
  border: 1px solid #e7e5e4;
  color: #292524;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
}

.fresh-product-card:hover .fresh-product-cta {
  background: #0d9488;
  border-color: #0d9488;
  color: #ffffff;
}

/* =====================================================
   ABOUT / MISSION SECTION — COLORFUL & ORGANIC
===================================================== */

.fresh-about-section {
  /* A beautiful, sweeping gradient from Warm Sand to Soft Mint */
  background: linear-gradient(135deg, #fffbeb 0%, #f0fdfa 100%);
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f5f5f4;
}

/* Ambient background blobs for depth (Updated to organic colors) */
.fresh-about-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px); /* Increased blur for a smoother blend */
  z-index: 0;
  opacity: 0.5;
}

.fresh-shape-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  right: -50px;
  background: #ccfbf1; /* Vibrant Mint */
}

.fresh-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -50px;
  background: #fde68a; /* Warm Amber */
}

.fresh-about-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 80px; /* Increased gap for better breathing room */
}

/* --- Left: Text Content --- */
.fresh-about-content {
  flex: 1;
  max-width: 600px;
}

.fresh-about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0d9488; /* Organic Teal */
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px -2px rgba(13, 148, 136, 0.1);
  margin-bottom: 24px;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.fresh-about-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #292524; /* Charcoal Stone */
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.fresh-about-gradient {
  color: #0d9488; /* Teal Emphasis */
}

.fresh-about-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #57534e; /* Dark Stone */
  margin: 0 0 16px 0;
  font-weight: 500;
}

.fresh-about-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #78716c; /* Muted Stone */
  margin: 0 0 40px 0;
}

/* Buttons */
.fresh-about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d9488;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px -6px rgba(13, 148, 136, 0.4);
}

.fresh-btn-primary:hover {
  background: #0f766e;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -6px rgba(13, 148, 136, 0.5);
}

.fresh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #292524;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e7e5e4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.fresh-btn-secondary:hover {
  background: #fafaf9;
  border-color: #d6d3d1;
  color: #0d9488;
}

/* --- Right: Staggered Grid --- */
.fresh-about-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

/* Base Card Styling */
.fresh-about-card {
  padding: 40px 32px;
  border-radius: 32px; /* Super smooth, friendly rounded corners */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5); /* Glassy border */
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.fresh-about-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

/* 
   Automatically inject colorful, vibrant backgrounds into the cards 
   using the organic palette theme. No HTML changes needed! 
*/
.fresh-about-card:nth-child(1) {
  background: #d1fae5; /* Vibrant Emerald/Mint */
}
.fresh-about-card:nth-child(2) {
  background: #fde68a; /* Vibrant Amber */
}
.fresh-about-card:nth-child(3) {
  background: #fbcfe8; /* Vibrant Rose */
}
.fresh-about-card:nth-child(4) {
  background: #e0e7ff; /* Soft Indigo/Periwinkle */
}

/* Offset layout */
.fresh-card-stagger {
  margin-top: 60px; /* Increased stagger for a more dramatic layout */
}

.fresh-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%; /* Perfect circle */
  background: #ffffff; /* White background to pop off the colorful cards */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #292524;
}

/* Dynamic text colors so they read perfectly against the vibrant backgrounds */
.fresh-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1c1917; /* Near black for maximum contrast */
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.fresh-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #292524;
  margin: 0 0 8px 0;
}

.fresh-card-desc {
  font-size: 0.95rem;
  color: #44403c; /* Dark, legible gray */
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fresh-about-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .fresh-about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fresh-about-actions {
    justify-content: center;
  }

  .fresh-card-stagger {
    margin-top: 0; /* Flatten the stagger on mobile */
  }
}

@media (max-width: 600px) {
  .fresh-about-section {
    padding: 60px 5%;
  }

  .fresh-about-grid {
    grid-template-columns: 1fr;
  }

  .fresh-about-card {
    padding: 32px 24px;
  }
}

/* =====================================================
   WHY CHOOSE US SECTION — COLORFUL CARDS (WHITE BG)
===================================================== */

.fresh-why-section {
  background-color: #ffffff; /* Clean white as requested */
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-top: 1px solid #f5f5f4;
}

.fresh-why-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Section Header --- */
.fresh-why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.fresh-why-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0d9488; /* Organic Teal */
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600; /* Softened from 700 */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  box-shadow: 0 4px 10px -5px rgba(13, 148, 136, 0.1);
}

.fresh-why-pill i {
  color: #d97706; /* Warm Amber accent inside the pill */
}

.fresh-why-headline {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #292524; /* Charcoal Stone */
  margin: 0 0 20px 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fresh-why-gradient {
  color: #0d9488; /* Solid Teal emphasis */
}

.fresh-why-desc {
  font-size: 1.15rem;
  color: #78716c; /* Muted Stone */
  line-height: 1.6;
  margin: 0;
}

/* --- Grid Layout --- */
.fresh-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* --- Individual Cards (Colorful Backgrounds) --- */
.fresh-why-card {
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.02);
}

/* 
   Automatically assigns a vibrant, organic pastel color to each card.
   This makes the grid colorful without needing a section background. 
*/
.fresh-why-card:nth-child(6n + 1) {
  background: #f0fdfa;
  border-color: #ccfbf1;
} /* Mint */
.fresh-why-card:nth-child(6n + 2) {
  background: #fffbeb;
  border-color: #fef3c7;
} /* Sand */
.fresh-why-card:nth-child(6n + 3) {
  background: #ecfdf5;
  border-color: #d1fae5;
} /* Sage */
.fresh-why-card:nth-child(6n + 4) {
  background: #fff1f2;
  border-color: #ffe4e6;
} /* Rose */
.fresh-why-card:nth-child(6n + 5) {
  background: #f8fafc;
  border-color: #e2e8f0;
} /* Cloud */
.fresh-why-card:nth-child(6n + 6) {
  background: #f5f5f4;
  border-color: #e7e5e4;
} /* Stone */

.fresh-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.06);
}

/* Icon Boxes */
.fresh-why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Changed to a circle for a friendlier feel */
  background: #ffffff; /* White background makes it pop against the colorful cards */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

.fresh-why-card:hover .fresh-why-icon {
  transform: scale(1.1); /* Subtle playful pop on hover */
}

/* 
   Icon Colors 
   (Kept your original HTML classes, but mapped the colors to the new organic theme) 
*/
.icon-violet {
  color: #78716c;
} /* Muted Stone */
.icon-rose {
  color: #e11d48;
} /* Soft Crimson */
.icon-green {
  color: #059669;
} /* Emerald */
.icon-amber {
  color: #d97706;
} /* Amber */
.icon-blue {
  color: #0d9488;
} /* Teal */
.icon-indigo {
  color: #3b82f6;
} /* Soft Blue */

/* Card Text */
.fresh-why-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #292524; /* High contrast charcoal */
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.fresh-why-text {
  font-size: 0.95rem;
  color: #57534e; /* Dark, highly readable stone */
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* =====================================================
   RECENTLY VIEWED — ORGANIC & MINIMAL
===================================================== */

.fresh-recent-section {
  /* Warm off-white to anchor the bottom of the page and contrast with white cards */
  background-color: #fafaf9;
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-top: 1px solid #f5f5f4;
}

.fresh-recent-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Header --- */
.fresh-recent-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.fresh-recent-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0d9488; /* Organic Teal */
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600; /* Softened from 700 */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  box-shadow: 0 4px 10px -5px rgba(0, 0, 0, 0.03);
}

.fresh-recent-pill i {
  color: #d97706; /* Warm Amber */
}

.fresh-recent-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; /* Sleeker, less bulky heading */
  color: #292524; /* Charcoal Stone */
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fresh-recent-gradient {
  color: #0d9488; /* Solid Teal */
}

.fresh-recent-desc {
  font-size: 1.1rem;
  color: #78716c; /* Muted Stone */
  line-height: 1.6;
  margin: 0;
}

/* --- Grid --- */
.fresh-recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* --- Cards --- */
.fresh-recent-card {
  background: #ffffff;
  border: 1px solid transparent; /* Removed static border for a cleaner resting state */
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.03); /* Extremely soft shadow */
}

.fresh-recent-card:hover {
  transform: translateY(-4px);
  border-color: #ccfbf1; /* Soft mint border on hover */
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.06); /* Premium lift */
}

.fresh-recent-img-box {
  width: 100%;
  height: 200px;
  background: #f5f5f4; /* Muted stone background lets the product stand out */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; /* Slight increase for better breathing room */
  overflow: hidden;
  transition: background 0.4s ease;
}

.fresh-recent-card:hover .fresh-recent-img-box {
  background: #f0fdfa; /* Shifts to a very light mint on hover */
}

.fresh-recent-img-box img {
  max-width: 80%; /* Slightly larger product emphasis */
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fresh-recent-card:hover .fresh-recent-img-box img {
  transform: scale(1.06); /* Smooth, slow zoom */
}

.fresh-recent-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fresh-recent-rating {
  font-size: 0.8rem;
  font-weight: 600;
  color: #78716c;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fresh-recent-rating i {
  color: #d97706; /* Warm Amber */
}

.fresh-recent-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #292524;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.fresh-recent-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f5f5f4; /* Warmer, softer divider line */
}

.fresh-recent-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0d9488; /* Primary Teal */
  letter-spacing: -0.01em;
}

.fresh-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdfa; /* Mint button base */
  color: #0d9488; /* Teal text */
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fresh-recent-card:hover .fresh-view-btn {
  background: #0d9488; /* Solid teal on hover */
  color: #ffffff;
}

/* =====================================================
   FOOTER — SERENE EARTH (ORGANIC DARK)
===================================================== */

.fresh-dark-footer {
  background-color: #1c1917; /* Deep, rich charcoal stone instead of tech slate */
  color: #a8a29e; /* Warm muted stone text */
  padding: 80px 5% 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-top: 1px solid #292524;
}

.fresh-footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Top Section Grid --- */
.fresh-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.fresh-footer-h4 {
  color: #fafaf9; /* Warm off-white */
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: 0.02em;
}

/* --- Brand Column --- */
.fresh-footer-brand .fresh-footer-logo {
  display: block;
  margin-bottom: 24px;
}

.fresh-footer-brand .fresh-footer-logo img {
  height: 95px;
  object-fit: contain;
}

.fresh-footer-brand p {
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-size: 0.95rem;
  max-width: 90%;
  color: #78716c;
}

.fresh-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fresh-contact-item {
  display: flex;
  flex-direction: column;
}

.fresh-contact-item strong {
  color: #57534e; /* Dark stone */
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 700;
}

.fresh-contact-item a {
  color: #0d9488; /* Organic Teal */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.fresh-contact-item a:hover {
  color: #5eead4; /* Bright minty teal on hover */
}

/* --- Links Columns --- */
.fresh-footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fresh-footer-links a {
  color: #a8a29e;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Smooth slide-in arrow on hover using Teal */
.fresh-footer-links a::before {
  content: "\f061"; /* FontAwesome arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #0d9488; /* Teal Arrow */
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fresh-footer-links a:hover {
  color: #fafaf9; /* Text brightens to off-white */
  transform: translateX(4px);
}

.fresh-footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* --- Newsletter Column --- */
.fresh-newsletter p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: #78716c;
}

.fresh-newsletter-form {
  display: flex;
  position: relative;
  margin-bottom: 12px;
}

.fresh-newsletter-form input {
  width: 100%;
  background: #292524; /* Elevated stone container */
  border: 1px solid #44403c;
  color: #ffffff;
  padding: 16px 130px 16px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.fresh-newsletter-form input::placeholder {
  color: #78716c;
}

.fresh-newsletter-form input:focus {
  border-color: #0d9488;
  background: #1c1917;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15); /* Soft teal glow */
}

.fresh-newsletter-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  background: #0d9488; /* Teal Button */
  color: #ffffff;
  border: none;
  padding: 0 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fresh-newsletter-form button:hover {
  background: #ccfbf1; /* Soft mint on hover */
  color: #0f766e; /* Dark teal text for contrast */
}

.fresh-newsletter-note {
  font-size: 0.8rem;
  color: #57534e;
  display: block;
  margin-top: 10px;
}

/* --- Divider & Bottom --- */
.fresh-footer-divider {
  height: 1px;
  background: #292524; /* Warm dark divider */
  margin: 0;
  width: 100%;
}

.fresh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.fresh-footer-company {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fresh-footer-company strong {
  color: #fafaf9;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.fresh-footer-company span {
  font-size: 0.9rem;
  color: #78716c;
}

.fresh-footer-copy {
  font-size: 0.9rem;
  color: #78716c;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .fresh-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .fresh-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fresh-footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .fresh-footer-company {
    align-items: center;
  }
}

/* =====================================================
   CONTACT PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-contact-section {
  background-color: #f8fafc; /* Soft page background */
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.fresh-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* --- Left: Contact Info --- */
.fresh-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #475569;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fresh-contact-pill i {
  color: #0284c7; /* Primary Blue */
}

.fresh-contact-headline {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  line-height: 1.15;
}

.fresh-text-gradient {
  color: #0284c7;
}

.fresh-contact-lead {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* Bullet Points */
.fresh-contact-points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fresh-contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #334155;
  font-weight: 500;
}

.fresh-contact-points i {
  color: #10b981; /* Emerald Green */
  font-size: 1.25rem;
  margin-top: 2px;
}

/* Contact Details Cards */
.fresh-contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fresh-detail-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fresh-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: #e2e8f0;
}

.fresh-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

/* Icon Colors */
.icon-blue {
  background: #e0f2fe;
  color: #0284c7;
}
.icon-rose {
  background: #fff1f2;
  color: #e11d48;
}
.icon-amber {
  background: #fffbeb;
  color: #d97706;
}
.icon-emerald {
  background: #ecfdf5;
  color: #059669;
}

.fresh-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fresh-detail-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.fresh-detail-text span {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

/* --- Right: Form Area --- */
.fresh-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.fresh-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.fresh-form-desc {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 32px 0;
}

.fresh-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fresh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fresh-input,
.fresh-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.fresh-textarea {
  resize: vertical;
  min-height: 120px;
}

.fresh-input::placeholder,
.fresh-textarea::placeholder {
  color: #94a3b8;
}

.fresh-input:focus,
.fresh-textarea:focus {
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.fresh-btn-full {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.fresh-btn-full:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* --- Success State --- */
.fresh-contact-success {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fresh-success-icon {
  width: 80px;
  height: 80px;
  background: #d1fae5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.fresh-success-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.fresh-success-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.fresh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.fresh-btn-outline:hover {
  border-color: #0f172a;
  background: #f8fafc;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fresh-contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .fresh-contact-details {
    grid-template-columns: 1fr;
  }
  .fresh-form-row {
    grid-template-columns: 1fr;
  }
  .fresh-form-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   FAQ PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-faq-section {
  background-color: #f8fafc; /* Soft background to make white cards pop */
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.fresh-faq-container {
  max-width: 850px; /* Kept narrow for perfect readability */
  margin: 0 auto;
}

/* --- Header --- */
.fresh-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.fresh-faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #475569;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fresh-faq-pill i {
  color: #0284c7; /* Primary Blue */
}

.fresh-faq-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.fresh-faq-gradient {
  color: #0284c7;
}

.fresh-faq-desc {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

/* --- FAQ Groups (Cards) --- */
.fresh-faq-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fresh-faq-group-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.fresh-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f8fafc;
}

.fresh-group-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Specific Icon Colors */
.icon-indigo {
  background: #e0e7ff;
  color: #4f46e5;
}
.icon-rose {
  background: #fff1f2;
  color: #e11d48;
}
.icon-emerald {
  background: #ecfdf5;
  color: #059669;
}
.icon-amber {
  background: #fffbeb;
  color: #d97706;
}
.icon-blue {
  background: #e0f2fe;
  color: #0284c7;
}

.fresh-group-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* --- Individual FAQ Items --- */
.fresh-faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.fresh-faq-item:last-child {
  border-bottom: none;
}

.fresh-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s ease;
}

.fresh-faq-question:hover {
  color: #0284c7;
}

/* The Plus/Cross Icon Animation */
.fresh-faq-toggle-icon {
  font-size: 1.1rem;
  color: #94a3b8;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
}

.fresh-faq-item.active .fresh-faq-toggle-icon {
  transform: rotate(45deg);
  color: #0284c7;
}

/* --- Smooth Accordion Answer --- */
.fresh-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    padding 0.4s ease;
}

.fresh-faq-item.active .fresh-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 24px;
}

.fresh-answer-inner {
  overflow: hidden;
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .fresh-faq-group-card {
    padding: 24px;
  }
  .fresh-faq-question {
    font-size: 1rem;
    padding: 20px 0;
  }
}

/* =====================================================
   AUTH HERO — SERENE EARTH
===================================================== */

.auth-x-hero {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
}

/* Removed the data grid overlay completely */
.auth-x-hero::before {
  display: none;
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* EYEBROW - Editorial Subtitle */

.auth-x-eyebrow {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  /* Removed neon text-shadow */
}

/* Removed terminal brackets */
.auth-x-eyebrow::before,
.auth-x-eyebrow::after {
  display: none;
}

/* LEFT CONTENT */

.auth-x-hero-left h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed aggressive uppercase and heavy text-shadows */
}

.auth-x-hero-left h1 span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed neon highlight and shadow */
}

.auth-x-hero-left p {
  max-width: 520px;
  font-size: 17px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary); /* Sage accent line */
  padding-left: 20px;
}

/* RIGHT PANEL — SOFT INFO CONTEXT */

.auth-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border); /* Clean, solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.auth-x-panel-item {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 24px 30px; /* More breathing room */
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}

/* Removed hover laser line */
.auth-x-panel-item::before {
  display: none;
}

.auth-x-panel-item:hover {
  border-color: var(--primary); /* Sage green hover border */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.auth-x-panel-item strong {
  display: block;
  font-family: var(--font-body); /* Removed monospace/heavy heading */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-x-panel-item span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .auth-x-hero-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }
}

/* =====================================================
   AUTH / LOGIN SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-auth-section {
  /* Soft, airy gradient background to focus the user */
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Abstract background blur for depth */
.fresh-auth-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #bae6fd;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
  top: -100px;
  left: -100px;
}

.fresh-auth-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

/* --- Auth Card --- */
.fresh-auth-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #ffffff;
}

/* Header */
.fresh-auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.fresh-auth-icon {
  width: 64px;
  height: 64px;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px auto;
}

.fresh-auth-headline {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.fresh-auth-gradient {
  color: #0284c7;
}

.fresh-auth-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* --- Form Elements --- */
.fresh-input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fresh-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
}

.fresh-required {
  color: #ef4444;
}

.fresh-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.fresh-input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.fresh-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 16px 14px 44px; /* Extra left padding for the icon */
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.fresh-input::placeholder {
  color: #94a3b8;
}

.fresh-input:focus {
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* Highlight icon when input is focused */
.fresh-input:focus + .fresh-input-icon,
.fresh-input-wrapper:focus-within .fresh-input-icon {
  color: #0284c7;
}

/* Buttons */
.fresh-btn-full {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.fresh-btn-primary {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* --- Dividers & Secondary --- */
.fresh-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 32px 0;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}

.fresh-auth-divider::before,
.fresh-auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.fresh-auth-divider span {
  padding: 0 16px;
}

.fresh-auth-secondary {
  text-align: center;
}

.fresh-secondary-text {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 16px 0;
}

.fresh-btn-outline {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.fresh-btn-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

/* Responsive */
@media (max-width: 600px) {
  .fresh-auth-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   SIGNUP HERO — SERENE EARTH
===================================================== */

.signup-x-hero {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
  overflow: hidden;
}

/* Removed the data grid overlay completely */
.signup-x-hero::before {
  display: none;
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* EYEBROW - Editorial Subtitle */

.signup-x-eyebrow {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  /* Removed neon text-shadow */
}

/* Removed the terminal prompt prefix */
.signup-x-eyebrow::before {
  display: none;
}

/* LEFT CONTENT */

.signup-x-hero-left h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed aggressive uppercase and heavy text-shadows */
}

.signup-x-hero-left h1 span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed neon teal highlight and shadow */
}

.signup-x-hero-left p {
  max-width: 520px;
  font-size: 17px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary); /* Sage accent line */
  padding-left: 20px;
}

/* RIGHT PANEL — SOFT INFO CONTEXT */

.signup-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border); /* Clean, solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signup-x-panel-item {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 24px 30px; /* More breathing room */
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}

/* Removed hover laser line */
.signup-x-panel-item::before {
  display: none;
}

.signup-x-panel-item:hover {
  border-color: var(--primary); /* Sage green hover border */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.signup-x-panel-item strong {
  display: block;
  font-family: var(--font-body); /* Removed monospace/heavy heading */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.signup-x-panel-item span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================================================
   SIGN UP / REGISTRATION SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-signup-section {
  /* Soft, airy gradient background to focus the user */
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Abstract background blur for depth */
.fresh-signup-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #bae6fd;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
  bottom: -100px;
  right: -100px;
}

.fresh-signup-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

/* --- Auth Card --- */
.fresh-signup-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #ffffff;
}

/* Header */
.fresh-signup-header {
  text-align: center;
  margin-bottom: 32px;
}

.fresh-signup-icon {
  width: 64px;
  height: 64px;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px auto;
}

.fresh-signup-headline {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.fresh-signup-gradient {
  color: #0284c7;
}

.fresh-signup-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* --- Form Elements --- */
.fresh-input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fresh-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
}

.fresh-required {
  color: #ef4444;
}

.fresh-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.fresh-input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.fresh-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 16px 14px 44px; /* Extra left padding for the icon */
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.fresh-input::placeholder {
  color: #94a3b8;
}

.fresh-input:focus {
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* Highlight icon when input is focused */
.fresh-input:focus + .fresh-input-icon,
.fresh-input-wrapper:focus-within .fresh-input-icon {
  color: #0284c7;
}

/* Buttons */
.fresh-btn-full {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.fresh-btn-primary {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* --- Dividers & Secondary --- */
.fresh-signup-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 32px 0;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}

.fresh-signup-divider::before,
.fresh-signup-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.fresh-signup-divider span {
  padding: 0 16px;
}

.fresh-signup-secondary {
  text-align: center;
}

.fresh-btn-outline {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.fresh-btn-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

/* Responsive */
@media (max-width: 600px) {
  .fresh-signup-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   USER DASHBOARD SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-dashboard-section {
  background-color: #f8fafc; /* Soft background to make white panels pop */
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 70vh;
}

.fresh-dash-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Sidebar Navigation --- */
.fresh-dash-sidebar {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  position: sticky;
  top: 100px;
}

/* User Profile Summary */
.fresh-user-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed #e2e8f0;
}

.fresh-avatar-lg {
  width: 80px;
  height: 80px;
  background: #e0f2fe; /* Light Blue */
  color: #0284c7; /* Primary Blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.1);
}

.fresh-user-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  display: block;
}

.fresh-user-email {
  font-size: 0.9rem;
  color: #64748b;
}

/* Nav Links */
.fresh-dash-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fresh-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fresh-nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.fresh-nav-link:hover {
  background: #f8fafc;
  color: #0f172a;
}

.fresh-nav-link.active {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}

.fresh-nav-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 12px 0;
}

.fresh-nav-danger {
  color: #ef4444;
}

.fresh-nav-danger:hover {
  background: #fee2e2;
  color: #dc2626;
}

/* --- Main Content Area --- */
.fresh-dash-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header */
.fresh-dash-header .fresh-headline {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.fresh-text-gradient {
  color: #0284c7;
}

.fresh-dash-header p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Bento Grid */
.fresh-dash-bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.fresh-bento-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.fresh-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.05);
}

.fresh-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.fresh-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icon-blue {
  background: #e0f2fe;
  color: #0284c7;
}
.icon-rose {
  background: #fff1f2;
  color: #e11d48;
}

.fresh-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* Info Layout */
.fresh-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fresh-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fresh-info-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fresh-info-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

/* Action Links (Quick Actions) */
.fresh-action-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fresh-action-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #fafafa;
}

.fresh-action-link:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.fresh-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.icon-indigo {
  background: #e0e7ff;
  color: #4f46e5;
}
.icon-amber {
  background: #fffbeb;
  color: #d97706;
}

.fresh-action-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fresh-action-text strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
}

.fresh-action-text span {
  color: #64748b;
  font-size: 0.85rem;
}

.fresh-action-arrow {
  color: #94a3b8;
  transition: transform 0.2s;
}

.fresh-action-link:hover .fresh-action-arrow {
  color: #0284c7;
  transform: translateX(4px);
}

/* Notice Alert */
.fresh-notice-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eff6ff; /* Very soft blue */
  border: 1px solid #bfdbfe;
  padding: 24px;
  border-radius: 20px;
}

.fresh-notice-icon {
  color: #3b82f6;
  font-size: 1.5rem;
  margin-top: 2px;
}

.fresh-notice-text strong {
  display: block;
  color: #1e3a8a;
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.fresh-notice-text p {
  margin: 0;
  color: #1e40af;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fresh-dash-container {
    grid-template-columns: 1fr;
  }
  .fresh-dash-sidebar {
    position: static;
    display: flex;
    flex-direction: column;
  }
  .fresh-user-profile {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
  }
  .fresh-avatar-lg {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .fresh-bento-card {
    padding: 24px;
  }
  .fresh-user-profile {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   ORDER TRACKING SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-track-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Abstract background blur for depth */
.fresh-track-shape {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #bae6fd;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 1;
  top: -50px;
  left: -100px;
}

.fresh-track-container {
  width: 100%;
  max-width: 650px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Main Cards --- */
.fresh-track-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #ffffff;
}

.fresh-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.fresh-header-icon {
  width: 64px;
  height: 64px;
  background: #e0f2fe;
  color: #0284c7; /* Primary Blue */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px auto;
}

.fresh-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.fresh-track-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* --- Form Elements --- */
.fresh-track-form {
  margin-bottom: 0;
}

.fresh-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
  display: block;
  margin-bottom: 8px;
}

/* Inline Input & Button Group */
.fresh-track-input-group {
  display: flex;
  gap: 12px;
}

.fresh-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.fresh-input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 1rem;
  transition: color 0.3s ease;
  pointer-events: none;
}

.fresh-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 16px 16px 16px 44px; /* Extra left padding for the icon */
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.fresh-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.fresh-input:focus {
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.fresh-input-wrapper:focus-within .fresh-input-icon {
  color: #0284c7;
}

.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
  white-space: nowrap;
}

.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* --- Alerts --- */
.fresh-alert-error {
  background: #fee2e2;
  border: 1px solid #f87171;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}
.fresh-alert-icon {
  color: #dc2626;
  font-size: 1.25rem;
  margin-top: 2px;
}
.fresh-alert-text strong {
  display: block;
  color: #991b1b;
  font-size: 1rem;
  margin-bottom: 4px;
}
.fresh-alert-text p {
  margin: 0;
  color: #b91c1c;
  font-size: 0.9rem;
}

/* --- Result Card --- */
.fresh-result-card {
  padding: 32px;
  animation: fadeScaleIn 0.4s ease forwards;
}

@keyframes fadeScaleIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fresh-status-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}

/* Processing State Colors */
.status-processing {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.status-processing .fresh-status-icon-blob {
  background: #dbeafe;
  color: #2563eb;
}
.status-processing .fresh-status-title {
  color: #1e3a8a;
}

/* Dispatched State Colors */
.status-dispatched {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.status-dispatched .fresh-status-icon-blob {
  background: #d1fae5;
  color: #059669;
}
.status-dispatched .fresh-status-title {
  color: #064e3b;
}

.fresh-status-icon-blob {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fresh-status-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fresh-status-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.fresh-status-desc {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* Track Summary Grid */
.fresh-track-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fresh-summary-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fresh-summary-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fresh-summary-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .fresh-track-card,
  .fresh-result-card {
    padding: 30px 20px;
  }
  .fresh-track-input-group {
    flex-direction: column;
  }
  .fresh-btn-primary {
    width: 100%;
  }
  .fresh-status-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .fresh-track-summary {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RETURN ORDER SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-return-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Abstract background blur for depth */
.fresh-return-shape {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #bae6fd;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 1;
  top: -50px;
  right: -100px;
}

.fresh-return-container {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* --- Main Card --- */
.fresh-return-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #ffffff;
  text-align: left;
}

/* --- Success State --- */
.fresh-success-content {
  text-align: center;
}

.fresh-success-icon {
  width: 80px;
  height: 80px;
  background: #d1fae5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px auto;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.fresh-return-headline {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.fresh-text-emerald {
  color: #10b981;
}

.fresh-text-blue {
  color: #0284c7;
}

.fresh-return-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.fresh-return-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.fresh-summary-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fresh-summary-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

/* --- Form State Header --- */
.fresh-card-header-center {
  text-align: center;
  margin-bottom: 32px;
}

.fresh-header-icon-blob {
  width: 64px;
  height: 64px;
  background: #fffbeb;
  color: #d97706; /* Amber */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px auto;
}

/* --- Form Elements --- */
.fresh-input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fresh-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
}

.fresh-required {
  color: #ef4444;
}

.fresh-optional {
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.8rem;
}

.fresh-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.fresh-input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 1rem;
  transition: color 0.3s ease;
  pointer-events: none;
}

.fresh-select-arrow {
  position: absolute;
  right: 16px;
  color: #94a3b8;
  font-size: 0.9rem;
  pointer-events: none;
}

.fresh-input,
.fresh-textarea,
.fresh-select {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.fresh-input-with-icon {
  padding-left: 44px; /* Space for the absolute icon */
}

.fresh-select {
  appearance: none; /* Hide native dropdown arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px; /* Space for custom arrow */
}

.fresh-textarea {
  resize: vertical;
  min-height: 100px;
}

.fresh-input::placeholder,
.fresh-textarea::placeholder {
  color: #94a3b8;
}

.fresh-input:focus,
.fresh-textarea:focus,
.fresh-select:focus {
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.fresh-input-wrapper:focus-within .fresh-input-icon {
  color: #0284c7;
}

/* --- Buttons --- */
.fresh-btn-full {
  width: 100%;
}

.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  color: #ffffff;
}

/* --- Alerts & Notes --- */
.fresh-alert-error {
  background: #fee2e2;
  border: 1px solid #f87171;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.fresh-alert-icon {
  color: #dc2626;
  font-size: 1.25rem;
  margin-top: 2px;
}
.fresh-alert-text strong {
  display: block;
  color: #991b1b;
  font-size: 1rem;
  margin-bottom: 4px;
}
.fresh-alert-text p {
  margin: 0;
  color: #b91c1c;
  font-size: 0.9rem;
}

.fresh-policy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f1f5f9;
  padding: 16px;
  border-radius: 12px;
  margin-top: 24px;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.5;
}

.fresh-policy-note i {
  color: #64748b;
  font-size: 1rem;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .fresh-return-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   CART PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-cart-section {
  background-color: #f8fafc; /* Soft page background */
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 60vh;
}

.fresh-cart-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Empty State --- */
.fresh-empty-state {
  background: #ffffff;
  border-radius: 32px;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.fresh-empty-icon {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  color: #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
}

.fresh-empty-headline {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.fresh-empty-gradient {
  color: #0284c7;
}

.fresh-empty-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  color: #ffffff;
}

/* --- Cart Layout --- */
.fresh-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.fresh-cart-header {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
}

.fresh-cart-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Cart Item Card --- */
.fresh-cart-item-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.3s ease;
}

.fresh-cart-item-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.fresh-item-img-box {
  width: 100px;
  height: 100px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

.fresh-item-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.fresh-item-info {
  flex-grow: 1;
}

.fresh-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.fresh-item-unit-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
}

.fresh-item-unit-price small {
  font-weight: 500;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Quantity Controls */
.fresh-qty-wrap form {
  margin: 0;
}

.fresh-qty-pill {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border-radius: 50px;
  padding: 4px;
  border: 1px solid #e2e8f0;
}

.fresh-qty-input {
  width: 45px;
  text-align: center;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  outline: none;
  font-family: inherit;
  /* Remove arrows in modern browsers */
  -moz-appearance: textfield;
}
.fresh-qty-input::-webkit-outer-spin-button,
.fresh-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fresh-qty-update-btn {
  background: #ffffff;
  color: #0284c7;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.fresh-qty-update-btn:hover {
  background: #0284c7;
  color: #ffffff;
}

/* Total & Remove */
.fresh-item-total-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 100px;
}

.fresh-item-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0284c7;
}

.fresh-remove-btn {
  background: #fee2e2;
  color: #ef4444;
  border: none;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fresh-remove-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

/* --- Order Summary --- */
.fresh-summary-wrapper {
  position: sticky;
  top: 100px; /* Sticks smoothly while scrolling */
}

.fresh-summary-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.fresh-summary-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
}

.fresh-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #475569;
}

.fresh-summary-value {
  font-weight: 700;
  color: #0f172a;
}

.fresh-summary-divider {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 20px 0;
}

.fresh-total-row {
  font-size: 1.25rem;
}

.fresh-total-row .fresh-summary-label {
  font-weight: 800;
  color: #0f172a;
}

.fresh-total-row .fresh-summary-value {
  font-weight: 800;
  color: #0284c7;
}

.fresh-btn-full {
  width: 100%;
  margin-top: 24px;
}

.fresh-summary-trust {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.fresh-summary-trust i {
  color: #10b981; /* Green lock/shield */
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fresh-cart-layout {
    grid-template-columns: 1fr;
  }
  .fresh-summary-wrapper {
    position: static;
  }
}

@media (max-width: 600px) {
  .fresh-cart-item-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fresh-item-total-wrap {
    align-items: center;
    width: 100%;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
  }
}

/* =====================================================
   CHECKOUT PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-checkout-section {
  background-color: #f8fafc; /* Soft page background */
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 70vh;
}

.fresh-checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Alerts --- */
.fresh-alert-error {
  background: #fee2e2;
  border: 1px solid #f87171;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.fresh-alert-icon {
  color: #dc2626;
  font-size: 1.5rem;
  margin-top: 2px;
}
.fresh-alert-text strong {
  display: block;
  color: #991b1b;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.fresh-alert-text p {
  margin: 0;
  color: #b91c1c;
  font-size: 0.95rem;
}

/* --- Layout --- */
.fresh-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* --- Cards --- */
.fresh-checkout-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  margin-bottom: 32px;
}

.fresh-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.fresh-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* Icon Colors */
.icon-blue {
  background: #e0f2fe;
  color: #0284c7;
}
.icon-rose {
  background: #fff1f2;
  color: #e11d48;
}

.fresh-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* --- Forms --- */
.fresh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.fresh-grid-single {
  grid-template-columns: 1fr;
}

.fresh-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.fresh-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
}
.fresh-required {
  color: #ef4444;
}

.fresh-input,
.fresh-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.fresh-textarea {
  resize: vertical;
  min-height: 100px;
}

.fresh-input:focus,
.fresh-textarea:focus {
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* --- Payment Options --- */
.fresh-payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fresh-payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.fresh-payment-option:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

/* Active State (Triggered by your existing JS) */
.fresh-payment-option.active {
  border-color: #0284c7;
  background: #f0f9ff;
}

.fresh-pay-icon {
  font-size: 1.8rem;
  color: #64748b;
  transition: color 0.3s ease;
}

.fresh-payment-option.active .fresh-pay-icon {
  color: #0284c7;
}

.fresh-pay-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fresh-pay-info strong {
  color: #0f172a;
  font-size: 1.05rem;
}
.fresh-pay-info span {
  color: #64748b;
  font-size: 0.85rem;
}

.fresh-pay-check {
  color: #cbd5e1;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.fresh-payment-option.active .fresh-pay-check {
  color: #0284c7;
}

/* --- Order Summary (Sidebar) --- */
.fresh-checkout-summary {
  position: sticky;
  top: 100px;
}

.fresh-summary-items {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fresh-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px dashed #e2e8f0;
}

.fresh-item-name-qty {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fresh-item-name {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
}
.fresh-item-qty {
  color: #64748b;
  font-size: 0.85rem;
}
.fresh-item-price {
  color: #0f172a;
  font-weight: 700;
}

.fresh-summary-totals {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.fresh-totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #475569;
}
.fresh-totals-row:last-child {
  margin-bottom: 0;
}
.fresh-totals-value {
  font-weight: 700;
  color: #0f172a;
}

.fresh-total-final {
  font-size: 1.25rem;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #cbd5e1;
}
.fresh-total-final .fresh-totals-label {
  font-weight: 800;
  color: #0f172a;
}
.fresh-total-final .fresh-totals-value {
  color: #0284c7;
  font-weight: 800;
}

/* Submit Button */
.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
  width: 100%;
}

.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  color: #ffffff;
}

.fresh-summary-trust {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.fresh-summary-trust i {
  color: #10b981;
}

/* Responsive */
@media (max-width: 1024px) {
  .fresh-checkout-layout {
    grid-template-columns: 1fr;
  }
  .fresh-checkout-summary {
    position: static;
  }
}
@media (max-width: 600px) {
  .fresh-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ORDER SUCCESS SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-success-section {
  /* Soft, reassuring mint-to-slate gradient for success */
  background: linear-gradient(135deg, #ecfdf5 0%, #f8fafc 100%);
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 80vh;
}

.fresh-success-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.fresh-success-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.fresh-success-icon-blob {
  width: 88px;
  height: 88px;
  background: #d1fae5;
  color: #10b981; /* Emerald Green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px auto;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.fresh-success-headline {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.15;
}

.fresh-text-gradient {
  color: #10b981; /* Emerald gradient mapped to solid for compatibility */
}

.fresh-success-desc {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.fresh-success-desc strong {
  color: #0f172a;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-left: 4px;
}

/* --- Layout --- */
.fresh-success-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* --- Cards --- */
.fresh-success-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #ffffff;
  margin-bottom: 32px;
}

.fresh-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.fresh-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icon-rose {
  background: #fff1f2;
  color: #e11d48;
}
.icon-blue {
  background: #e0f2fe;
  color: #0284c7;
}

.fresh-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* --- Payment Status Box --- */
.fresh-payment-status {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.fresh-status-icon {
  font-size: 1.5rem;
  color: #0284c7;
  margin-top: 2px;
}

.fresh-status-text {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.5;
}
.fresh-status-text strong {
  color: #0f172a;
}

/* --- Stats Bento Grid --- */
.fresh-stats-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fresh-stat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fresh-stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fresh-stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.text-emerald {
  color: #10b981;
}

/* --- Next Steps List --- */
.fresh-next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fresh-next-steps-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: #334155;
  font-weight: 500;
}

.fresh-next-steps-list i {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* --- Actions --- */
.fresh-success-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}
.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

.fresh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0f172a;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #cbd5e1;
}
.fresh-btn-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

/* --- Sidebar Tracker --- */
.fresh-tracker-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
}

.fresh-progress-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 20px;
  border-left: 2px solid #e2e8f0;
  margin-left: 12px;
}

.fresh-rail-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.fresh-step-circle {
  position: absolute;
  left: -37px; /* Pull it over the border */
  top: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #94a3b8;
}

.fresh-rail-step.active .fresh-step-circle {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
  box-shadow: 0 0 0 4px #d1fae5;
}

.fresh-step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fresh-step-info strong {
  font-size: 1.05rem;
  color: #0f172a;
}

.fresh-rail-step.pending .fresh-step-info strong {
  color: #64748b;
}

.fresh-step-info span {
  font-size: 0.9rem;
  color: #64748b;
}

/* --- Help Card --- */
.fresh-help-card {
  background: #eff6ff; /* Soft Blue */
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.fresh-help-icon {
  font-size: 1.5rem;
  color: #0284c7;
}

.fresh-help-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fresh-help-content strong {
  font-size: 1rem;
  color: #0f172a;
}

.fresh-help-content p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  color: #475569;
}

.fresh-help-content a,
.fresh-help-content span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0284c7;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .fresh-success-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .fresh-stats-bento {
    grid-template-columns: 1fr;
  }
  .fresh-success-actions {
    flex-direction: column;
  }
  .fresh-btn-primary,
  .fresh-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — SERENE EARTH
===================================================== */

.shop-hard {
  background: var(--bg); /* Warm off-white */
  position: relative;
}

/* Removed the subtle schematic grid overlay completely */
.shop-hard::before {
  display: none;
}

.shop-hard-body {
  padding: 100px 20px 120px; /* Added horizontal padding for safety */
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* =====================================================
   EMPTY STATE (NO PRODUCTS FOUND)
===================================================== */

.shop-hard-empty {
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border); /* Clean boundary */
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 56px;
  border-radius: var(--radius-lg); /* Soft corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  /* Removed dark glass, cyberpunk red border, and glowing shadows */
}

.shop-hard-empty strong {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase, heavy letter-spacing, and neon red glow */
}

.shop-hard-empty p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* =====================================================
   SHOP GRID — CATALOG
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(280px, 1fr)
  ); /* Slightly wider for elegant spacing */
  gap: 40px;
}

/* =====================================================
   SHOP PRODUCT — EDITORIAL TILE
===================================================== */

.shop-product-card {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-lg); /* Friendly rounded edges */
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  /* Removed dark glass filter and neon top separator */
}

.shop-product-card:hover {
  transform: translateY(-6px); /* Gentle lift */
  border-color: var(--primary); /* Sage green hover border */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* =====================================================
   IMAGE (SOFT HOUSING)
===================================================== */

.shop-product-image {
  position: relative;
  background: var(--card); /* Soft beige background */
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md); /* Soft corners */
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.shop-product-card:hover .shop-product-image {
  background: var(--surface);
  border-color: var(--border);
}

.shop-product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  /* Removed heavy drop shadow */
  transition: transform 0.6s var(--ease);
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.05); /* Gentle, elegant zoom */
  /* Removed hologram glow */
}

/* =====================================================
   STOCK BADGE — ELEGANT INDICATOR
===================================================== */

.shop-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px; /* Soft pill shape */
  z-index: 2;
  /* Removed neon box-shadows */
}

.shop-stock.in {
  background: rgba(92, 113, 94, 0.1); /* Subtle sage tint */
  color: var(--primary-dark);
  border: 1px solid rgba(92, 113, 94, 0.2);
}

.shop-stock.out {
  background: rgba(217, 125, 84, 0.1); /* Subtle terracotta tint */
  color: var(--accent);
  border: 1px solid rgba(217, 125, 84, 0.2);
}

/* =====================================================
   INFO (CLEAN TYPOGRAPHY)
===================================================== */

.shop-product-info {
  padding: 24px 0 0;
  flex: 1;
}

.shop-product-info h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter-spacing */
}

.shop-product-card:hover .shop-product-info h3 {
  color: var(--primary-dark);
  /* Removed neon teal text-shadow */
}

.shop-product-info p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border); /* Clean solid line instead of dashed */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  font-weight: 600;
  color: var(--text); /* Deep charcoal */
  /* Removed neon purple glow */
}

/* =====================================================
   ADD TO CART — PILL BUTTON
===================================================== */

.shop-add-btn {
  background: var(--surface);
  color: var(--primary); /* Sage green */
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px; /* Elegant pill shape */
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy letter spacing */
}

.shop-add-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15); /* Soft sage lift */
  transform: translateY(-2px);
}

/* DISABLED (OUT OF STOCK) */

.shop-disabled-btn {
  background: var(--bg);
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px; /* Pill shape */
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: not-allowed;
  /* Removed uppercase */
}

/* OUT OF STOCK DIMMING */

.shop-product-card.out {
  opacity: 0.7; /* Soften the dimming slightly */
  /* Removed grayscale for a cleaner look */
}

.shop-product-card.out:hover {
  transform: translateY(-2px); /* Much softer lift */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-color: var(--border); /* Remove hover color change for out of stock */
}

/* LINK */

.shop-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .shop-hard-body {
    padding: 80px 15px;
  }

  .shop-product-image img {
    height: 150px;
  }
}

/* =====================================================
   SINGLE PRODUCT PAGE — SHARP & ARCHITECTURAL UI
===================================================== */

section.fresh-single-product-section {
  background-color: #ffffff;
  padding: 60px 5% 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.fresh-pro-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Top Layout: Image & Info --- */
.fresh-pro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

/* Image Presentation Box (Sharp & Structural) */
.fresh-pro-image-box {
  background: #fafaf9; /* Warm off-white */
  border-radius: 0; /* Razor sharp corners */
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e5e4; /* Hard visible border */
  position: relative;
  box-shadow: none; /* Flat, modern resting state */
  transition: all 0.3s ease-out;
}

/* Hard-hitting offset shadow on hover */
.fresh-pro-image-box:hover {
  transform: translate(-6px, -6px);
  border-color: #292524;
  box-shadow:
    8px 8px 0px #f0fdfa,
    9px 9px 0px #0d9488;
}

.fresh-pro-main-img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.4s ease-out;
}

/* Intense, direct zoom */
.fresh-pro-image-box:hover .fresh-pro-main-img {
  transform: scale(1.1);
}

/* --- Info Side --- */
.fresh-pro-info {
  display: flex;
  flex-direction: column;
}

.fresh-pro-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em; /* Editorial tracking */
}

/* Sharp Brand Tag */
.fresh-meta-brand {
  color: #ffffff;
  background: #292524; /* Charcoal block */
  padding: 6px 14px;
  border-radius: 0; /* Sharp edges */
  border: 1px solid #292524;
}

.fresh-meta-divider {
  color: #d6d3d1;
}

.fresh-meta-category {
  color: #78716c;
}

.fresh-pro-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; /* Heavy impact */
  color: #292524;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

/* Rating */
.fresh-pro-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.fresh-stars {
  color: #d97706; /* Warm amber */
  font-size: 1.1rem;
}

.fresh-pro-rating strong {
  color: #292524;
  font-weight: 800;
}

.fresh-pro-rating span {
  color: #78716c;
}

/* Price */
.fresh-pro-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e7e5e4; /* Solid structural line instead of dashed */
}

.fresh-pro-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0d9488; /* Primary Teal */
  line-height: 1;
  letter-spacing: -0.03em;
}

.fresh-tax-badge {
  font-size: 0.85rem;
  color: #78716c;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Description */
.fresh-pro-desc {
  font-size: 1.1rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

/* --- Action Buttons (Sharp Brutalist Look) --- */
.fresh-pro-actions {
  margin-bottom: 40px;
}

.fresh-action-forms {
  display: flex;
  gap: 16px;
  width: 100%;
}

.fresh-flex-form {
  flex: 1;
  margin: 0;
}

.fresh-btn-primary,
.fresh-btn-outline,
.fresh-btn-disabled {
  width: 100%;
  padding: 18px 24px;
  border-radius: 0; /* Razor sharp corners */
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease-out; /* Fast, snappy transitions */
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Primary Button */
.fresh-btn-primary {
  background: #0d9488;
  color: #ffffff;
  border: 2px solid #0d9488;
  box-shadow: none;
}

.fresh-btn-primary:hover {
  background: #0f766e;
  border-color: #0f766e;
  transform: translate(-4px, -4px); /* Diagonal lift */
  box-shadow: 4px 4px 0px #292524; /* Hard charcoal shadow */
}

/* Secondary/Outline Button */
.fresh-btn-outline {
  background: #ffffff;
  color: #292524;
  border: 2px solid #292524;
}

.fresh-btn-outline:hover {
  background: #292524;
  color: #ffffff;
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0px #0d9488; /* Hard teal shadow */
}

.fresh-btn-disabled {
  background: #f5f5f4;
  color: #a8a29e;
  border: 2px solid #e7e5e4;
  cursor: not-allowed;
}

/* --- Trust Mini-Grid --- */
.fresh-pro-trust-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #e7e5e4;
}

.fresh-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #292524;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fresh-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 0; /* Square icons */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid transparent;
}

/* Mapped to organic palette */
.icon-emerald {
  background: #f0fdfa;
  color: #0d9488;
  border-color: #ccfbf1;
} /* Remapped to Teal */
.icon-blue {
  background: #fafaf9;
  color: #292524;
  border-color: #e7e5e4;
} /* Remapped to Stone */
.icon-amber {
  background: #fffbeb;
  color: #d97706;
  border-color: #fef3c7;
} /* Amber */

/* =====================================================
   TABS SECTION (Original HTML CSS Logic Preserved)
===================================================== */
.fresh-tab-radio {
  display: none;
}

.fresh-tab-headers {
  display: flex;
  gap: 0; /* Removed gap to connect tabs */
  margin-bottom: 40px;
  border-bottom: 2px solid #e7e5e4;
}

/* Sharp, editorial tabs */
.fresh-tab-label {
  padding: 16px 32px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #78716c;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease-out;
  white-space: nowrap;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px; /* Overlap border */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fresh-tab-label:hover {
  color: #0d9488;
  background: #fafaf9;
}

/* Active Tab Logic */
#fresh_tab1:checked ~ .fresh-tab-headers label[for="fresh_tab1"],
#fresh_tab2:checked ~ .fresh-tab-headers label[for="fresh_tab2"],
#fresh_tab3:checked ~ .fresh-tab-headers label[for="fresh_tab3"],
#fresh_tab4:checked ~ .fresh-tab-headers label[for="fresh_tab4"] {
  background: transparent;
  color: #292524;
  border-bottom: 2px solid #0d9488; /* Sharp underline */
  box-shadow: none;
}

.fresh-tab-panel {
  display: none;
  animation: fadeSlideUp 0.3s ease-out forwards;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#fresh_tab1:checked ~ .fresh-tab-content-wrapper .fresh-panel-1,
#fresh_tab2:checked ~ .fresh-tab-content-wrapper .fresh-panel-2,
#fresh_tab3:checked ~ .fresh-tab-content-wrapper .fresh-panel-3,
#fresh_tab4:checked ~ .fresh-tab-content-wrapper .fresh-panel-4 {
  display: block;
}

/* Tab Content Styling (Sharp Box) */
.fresh-panel-card {
  background: #ffffff;
  border-radius: 0; /* Zero border radius */
  padding: 40px;
  box-shadow: none;
  border: 1px solid #e7e5e4; /* Structural border */
}

.fresh-panel-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #292524;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.fresh-panel-text {
  font-size: 1.05rem;
  color: #57534e;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.fresh-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fresh-panel-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: #292524;
  font-weight: 600;
}

.fresh-panel-list i {
  color: #0d9488; /* Teal bullet icon */
  font-size: 1.1rem;
}

/* Sharp Technical Spec Tables */
.fresh-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e7e5e4; /* Outer structural border */
}

.fresh-spec-table th,
.fresh-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e7e5e4;
  text-align: left;
  font-size: 1rem;
}

.fresh-spec-table tr:last-child th,
.fresh-spec-table tr:last-child td {
  border-bottom: none;
}

.fresh-spec-table th {
  font-weight: 700;
  color: #292524;
  width: 30%;
  background: #fafaf9; /* Warm off-white for headers */
  border-right: 1px solid #e7e5e4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.fresh-spec-table td {
  color: #57534e;
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fresh-pro-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fresh-pro-image-box {
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .fresh-action-forms {
    flex-direction: column;
  }
  .fresh-panel-card {
    padding: 24px;
  }
  .fresh-spec-table {
    border: none;
  }
  .fresh-spec-table th,
  .fresh-spec-table td {
    display: block;
    width: 100%;
    border-right: none;
  }
  .fresh-spec-table th {
    padding-bottom: 8px;
    background: #fafaf9;
    border-top: 1px solid #e7e5e4;
  }
  .fresh-spec-table td {
    padding-top: 8px;
    padding-bottom: 24px;
    border-bottom: none;
  }
}

/* =====================================================
   CATEGORY LANDING HERO — SERENE EARTH
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--bg); /* Warm off-white fallback */
}

/* LINK WRAPPER */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
}

/* IMAGE WITH LIGHT EDITORIAL OVERLAY */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* This elegant gradient ensures the dark text is readable over any image */
.cat-landing-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(249, 248, 246, 0.95) 0%,
    rgba(249, 248, 246, 0.4) 100%
  );
  z-index: 2;
  transition: opacity 0.4s var(--ease);
}

.cat-landing-link:hover::before {
  opacity: 0.85; /* Image reveals slightly more on hover */
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  position: relative;
  z-index: 3; /* Sits above the image overlay */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
}

.cat-landing-title {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text); /* Deep charcoal */
  max-width: 600px;
}

.cat-landing-title span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
}

.cat-landing-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cat-landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary); /* Sage green */
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.cat-landing-cta::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

/* Hover effects tied to the parent link wrapper */
.cat-landing-link:hover .cat-landing-cta {
  color: var(--primary-dark);
}

.cat-landing-link:hover .cat-landing-cta::after {
  transform: translateX(6px); /* Gentle slide */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }

  .cat-landing-link::before {
    /* More solid overlay on mobile for easier reading */
    background: linear-gradient(
      to bottom,
      rgba(249, 248, 246, 0.95) 0%,
      rgba(249, 248, 246, 0.7) 100%
    );
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 420px; /* Slight adjustment to give text room */
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 16px;
  }
}

/* =====================================================
   CATEGORY PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.fresh-category-section {
  background-color: #ffffff;
  padding: 80px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 60vh;
}

.fresh-category-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Empty State --- */
.fresh-cat-empty {
  background: #f8fafc;
  border-radius: 32px;
  padding: 80px 20px;
  text-align: center;
  border: 1px dashed #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.fresh-empty-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  color: #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.fresh-empty-headline {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.fresh-empty-gradient {
  color: #0284c7;
}

.fresh-empty-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* --- Products Grid --- */
.fresh-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* --- Product Card --- */
.fresh-cat-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.fresh-cat-card:hover {
  transform: translateY(-8px);
  border-color: #e0f2fe;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

.fresh-cat-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Image Box */
.fresh-img-box {
  width: 100%;
  height: 240px;
  background: #f8fafc;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.fresh-img-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fresh-cat-card:hover .fresh-img-box img {
  transform: scale(1.08) rotate(-2deg);
}

/* Stock Badges */
.fresh-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.fresh-stock-in {
  background: #d1fae5;
  color: #059669;
}

.fresh-stock-out {
  background: #fee2e2;
  color: #ef4444;
}

/* Product Info */
.fresh-cat-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 20px;
}

.fresh-cat-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.fresh-cat-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.fresh-cat-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0284c7;
}

/* Buttons */
.fresh-cat-action form {
  margin: 0;
}

.fresh-btn-add,
.fresh-btn-disabled {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
}

.fresh-btn-add {
  background: #f0f9ff;
  color: #0284c7;
  cursor: pointer;
}

.fresh-cat-card:hover .fresh-btn-add {
  background: #0284c7;
  color: #ffffff;
}

.fresh-btn-disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

/* Browse Button for Empty State */
.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.fresh-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* =====================================================
   CATEGORY BROWSER — SHARP CARDS + PILL UI (ORGANIC)
===================================================== */

.fresh-browser-section {
  /* Warm off-white background to give the white cards contrast */
  background-color: #fafaf9;
  padding: 100px 5%;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

/* Abstract background blur adapted to the organic theme */
.fresh-browser-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #ccfbf1; /* Soft Mint */
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  top: -150px;
  left: -150px;
}

.fresh-browser-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Empty State (Sharp & Structural) --- */
.fresh-empty-box {
  background: #ffffff;
  border-radius: 0; /* Sharp corners */
  border: 1px solid #292524; /* Hard contrast border */
  padding: 80px 40px;
  text-align: center;
  box-shadow: 12px 12px 0px #e7e5e4; /* Brutalist offset shadow */
  max-width: 600px;
  margin: 0 auto;
}

.fresh-empty-icon {
  width: 80px;
  height: 80px;
  background: #f5f5f4;
  color: #78716c;
  border-radius: 0; /* Sharp box icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
  border: 1px solid #e7e5e4;
}

.fresh-empty-headline {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #292524;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.fresh-empty-gradient {
  color: #0d9488; /* Organic Teal */
}

.fresh-empty-desc {
  font-size: 1.05rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

/* Empty State Button - Retains the Pill Design */
.fresh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0d9488;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px; /* The usual pill shape */
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease-out; /* Snappy transition */
  border: none;
  cursor: pointer;
}

.fresh-btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(13, 148, 136, 0.4);
}

/* --- Products Grid --- */
.fresh-browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

/* --- Product Card (Sharp & Hard-Hitting) --- */
.fresh-pro-card {
  background: #ffffff;
  border: 1px solid #e7e5e4; /* Structural border */
  border-radius: 0; /* Razor sharp corners */
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-out; /* Fast, punchy animations */
  box-shadow: none;
}

.fresh-pro-card:hover {
  transform: translateY(-4px) translateX(-4px);
  border-color: #292524; /* Dramatic border darkening */
  /* Sharp, offset solid shadow for maximum impact */
  box-shadow:
    6px 6px 0px #f0fdfa,
    8px 8px 0px #0d9488;
}

.fresh-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Image Box (Sharp) */
.fresh-card-img-wrap {
  width: 100%;
  height: 260px;
  background: #f5f5f4; /* Muted stone background */
  border-radius: 0; /* Sharp corners */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
}

.fresh-pro-card:hover .fresh-card-img-wrap {
  border-color: #e7e5e4;
}

.fresh-card-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s ease-out;
}

/* Direct, intense zoom replacing the bouncy rotation */
.fresh-pro-card:hover .fresh-card-img {
  transform: scale(1.1);
}

/* Stock Badges - Retains the Pill Design */
.fresh-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 50px; /* The usual pill shape */
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fresh-tag-stock {
  background: #d1fae5;
  color: #065f46; /* Emerald */
  border: 1px solid #a7f3d0;
}

.fresh-tag-out {
  background: #ffe4e6;
  color: #be123c; /* Rose/Red */
  border: 1px solid #fecdd3;
}

/* Product Info */
.fresh-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 24px;
}

.fresh-card-title {
  font-size: 1.2rem;
  font-weight: 800; /* Heavy weight */
  color: #292524;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.fresh-card-desc {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.fresh-card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d9488; /* Teal */
  letter-spacing: -0.02em;
}

/* Footer / Buttons */
.fresh-card-footer form {
  margin: 0;
}

/* Add to Cart Button - Retains the Pill Design */
.fresh-btn-add,
.fresh-btn-disabled {
  width: 100%;
  padding: 14px;
  border-radius: 50px; /* The usual pill shape */
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease-out;
}

/* Minimalist outline button that fills in on hover */
.fresh-btn-add {
  background: #ffffff;
  color: #292524;
  border: 1px solid #292524;
  cursor: pointer;
}

.fresh-pro-card:hover .fresh-btn-add {
  background: #0d9488;
  border-color: #0d9488;
  color: #ffffff;
}

.fresh-btn-disabled {
  background: #f5f5f4;
  color: #a8a29e;
  border: 1px solid #e7e5e4;
  cursor: not-allowed;
}

.text-black {
  color: black !important;
}
