/* ==========================================================================
   SUGban — Master Stylesheet
   Theme: Kamilica (Chamomile) & Prirodni Žuto-Zlatni Tonovi
   Crafted with semantic CSS3, clean responsive grid, and smooth transitions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Chamomile & Warm Botanical Palette */
  --chamomile-yellow: #f59e0b;
  --chamomile-yellow-light: #fbbf24;
  --chamomile-yellow-glow: #fef08a;
  --chamomile-gold: #d97706;
  --chamomile-amber-dark: #b45309;
  --chamomile-cream: #fffbeb;
  --chamomile-warm-bg: #fef9c3;
  --chamomile-soft-bg: #fafafa;
  --chamomile-white: #ffffff;

  /* Leaf & Botanical Green Accents */
  --botanical-green: #15803d;
  --botanical-green-light: #22c55e;
  --botanical-green-soft: #f0fdf4;
  --botanical-green-dark: #166534;

  /* Text & Neutral Contrast */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-light: #fef08a;
  --border-soft: #e2e8f0;
  --border-active: #f59e0b;

  /* Shadows & Depth */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(245, 158, 11, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px rgba(245, 158, 11, 0.14), 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 35px rgba(245, 158, 11, 0.2);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.4);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 1.5rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* --------------------------------------------------------------------------
   Top Announcement Bar
   -------------------------------------------------------------------------- */
.topbar {
  background: linear-gradient(90deg, #b45309 0%, #d97706 50%, #b45309 100%);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.55rem 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
#main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
  border-bottom-color: rgba(245, 158, 11, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

/* Chamomile Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  position: relative;
  border: 2px solid #ffffff;
}

.logo-chamomile-icon {
  width: 26px;
  height: 26px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1e293b;
  line-height: 1.1;
}

.logo-title span {
  color: #d97706;
}

.logo-subtitle {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--botanical-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Nav Links */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--chamomile-amber-dark);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--chamomile-yellow);
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--chamomile-cream);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.header-phone:hover {
  background: var(--chamomile-warm-bg);
  border-color: var(--chamomile-yellow);
  color: var(--chamomile-amber-dark);
}

.header-phone-icon {
  width: 15px;
  height: 15px;
  fill: var(--chamomile-gold);
}

.cart-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.48rem 0.95rem;
  background: var(--chamomile-yellow);
  color: #1e293b;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
}

.cart-link-btn:hover {
  background: var(--chamomile-yellow-light);
  transform: translateY(-1px);
}

.cart-count {
  background: #1e293b;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  font-weight: 800;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.drawer-nav {
  margin-top: 1.5rem;
}

.drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-nav a {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 0;
}

.drawer-nav a:hover {
  color: var(--chamomile-gold);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Dugmad sa pokretnom konturom na hover (Requirement 7)
   -------------------------------------------------------------------------- */
.btn-contour {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1.025rem;
  font-weight: 700;
  color: #1e293b;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-contour::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, #ffffff, #fef08a, transparent 40%);
  animation: contourRotate 3.5s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
}

.btn-contour::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: var(--radius-pill);
  z-index: -1;
  transition: background 0.3s ease;
}

.btn-contour:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
}

.btn-contour:hover::before {
  opacity: 1;
}

.btn-contour:hover::after {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.btn-outline-contour {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--chamomile-amber-dark);
  background: transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
  transition: transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-outline-contour::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #f59e0b, #fbbf24, #15803d, #f59e0b);
  animation: contourRotate 3.5s linear infinite;
  opacity: 0.8;
  z-index: -2;
  transition: opacity 0.3s ease;
}

.btn-outline-contour::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: var(--radius-pill);
  z-index: -1;
  transition: background 0.3s ease;
}

.btn-outline-contour:hover {
  transform: translateY(-3px) scale(1.02);
  color: #78350f;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline-contour:hover::before {
  opacity: 1;
  animation-duration: 1.8s;
}

.btn-outline-contour:hover::after {
  background: #fffbeb;
}

@keyframes contourRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.btn-contour:hover .btn-icon,
.btn-outline-contour:hover .btn-icon {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Scroll Animations & Reveals
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5rem 0;
  background: radial-gradient(circle at 85% 15%, #fef9c3 0%, #fffbeb 50%, #ffffff 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-chamomile-bg {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-badge-icon {
  font-size: 1.1rem;
}

.hero-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--chamomile-amber-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
  letter-spacing: -0.025em;
}

.hero-title span {
  color: var(--chamomile-yellow);
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-soft);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--chamomile-warm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--chamomile-gold);
  font-size: 0.95rem;
}

.hero-feat-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-image-wrap {
  position: relative;
}

.hero-img-card {
  position: relative;
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid #fef08a;
}

.hero-img-card img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  left: -20px;
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--chamomile-yellow);
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.floating-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.floating-text span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Section Headers & Common
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--chamomile-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chamomile-gold);
  background: var(--chamomile-warm-bg);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.95rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.title-ornament::before,
.title-ornament::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--chamomile-yellow);
  opacity: 0.5;
}

.title-ornament span {
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   NEW STRUCTURE: Chamomile Botanical Standard (Placed Above Catalog)
   -------------------------------------------------------------------------- */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.standard-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.standard-card:hover {
  transform: translateY(-5px);
  border-color: var(--chamomile-yellow);
  box-shadow: var(--shadow-md);
}

.standard-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--chamomile-warm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--chamomile-gold);
  border: 1px solid var(--border-light);
}

.standard-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.standard-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Product Catalog Grid (6 Products)
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--chamomile-yellow);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--chamomile-yellow);
  color: #1e293b;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
}

.product-image-box {
  position: relative;
  background: var(--chamomile-soft-bg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.785rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--botanical-green);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.product-desc {
  font-size: 0.885rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Quick botanical composition preview tag */
.product-herbs-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--chamomile-amber-dark);
  background: var(--chamomile-cream);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
}

.product-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-curr {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
}

.price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-card-details {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--chamomile-amber-dark);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: var(--chamomile-cream);
  transition: all 0.2s ease;
}

.btn-card-details:hover {
  background: var(--chamomile-warm-bg);
  border-color: var(--chamomile-yellow);
}

.btn-card-order {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  background: var(--chamomile-yellow);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
}

.btn-card-order:hover {
  background: var(--chamomile-yellow-light);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Weekly Flagship Offer Spotlight (Offer with full composition)
   -------------------------------------------------------------------------- */
.offer-spotlight {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fffbeb 100%);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.offer-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.offer-badge-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--chamomile-amber-dark);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.offer-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Offer Composition Table Card */
.composition-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.composition-box-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--chamomile-amber-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-soft);
}

.composition-table {
  width: 100%;
  font-size: 0.85rem;
  border-collapse: collapse;
}

.composition-table td {
  padding: 0.4rem 0;
}

.composition-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.composition-table td:nth-child(2) {
  font-style: italic;
  color: var(--text-muted);
}

.composition-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--botanical-green);
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.offer-new-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
}

.offer-old-price {
  font-size: 1.35rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.offer-saving-badge {
  background: #22c55e;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.offer-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid #ffffff;
}

.offer-img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Botanical Ingredients Science Section
   -------------------------------------------------------------------------- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ingredient-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.85rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  border-color: var(--chamomile-yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ingredient-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.ingredient-flower-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--chamomile-warm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--chamomile-gold);
}

.ingredient-titles h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ingredient-titles span {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
}

.ingredient-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Customer Experiences (Reviews)
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--chamomile-yellow);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--chamomile-warm-bg);
  color: var(--chamomile-amber-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   How To Order (3 Steps)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: #ffffff;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  border-color: var(--chamomile-yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--chamomile-yellow);
  color: #1e293b;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--chamomile-yellow);
}

.faq-question {
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  user-select: none;
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--chamomile-warm-bg);
  color: var(--chamomile-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--chamomile-yellow);
  color: #1e293b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Order Form Section (Track.js Compliant & BiH Sample Generator)
   -------------------------------------------------------------------------- */
.order-section {
  background: radial-gradient(circle at center, #fffbeb 0%, #fef3c7 70%, #fef08a 100%);
  padding: 5rem 0;
}

.order-wrapper {
  max-width: 660px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border-light);
}

.order-box-header {
  text-align: center;
  margin-bottom: 2rem;
}

.order-box-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.order-box-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Form Styles */
.sugban-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--chamomile-yellow);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* BiH Random Sample Generator Button (Requirement 9) */
.sample-gen-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.25rem;
}

.btn-sample-gen {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--chamomile-amber-dark);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-sample-gen:hover {
  background: var(--chamomile-cream);
  color: #78350f;
  text-decoration: underline;
}

.btn-sample-gen svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.order-submit-btn {
  width: 100%;
  padding: 1.15rem;
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.order-guarantee-note {
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   Dedicated Product Page Styles (Sastav, Tabela, Upotreba)
   -------------------------------------------------------------------------- */
.product-hero-detail {
  padding: 3.5rem 0 4.5rem 0;
  background: #ffffff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  background: var(--chamomile-soft-bg);
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumbs a:hover {
  color: var(--chamomile-gold);
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--chamomile-warm-bg);
  color: var(--chamomile-amber-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  margin-bottom: 0.85rem;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
}

.detail-price-note {
  font-size: 0.875rem;
  color: var(--botanical-green);
  font-weight: 700;
}

.detail-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Composition Table on Dedicated Product Page */
.detail-table-wrap {
  margin-bottom: 2rem;
  background: var(--chamomile-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.detail-table-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.detail-composition-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-composition-table th {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chamomile-amber-dark);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--border-light);
}

.detail-composition-table td {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.detail-usage-box {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.detail-usage-box h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.detail-usage-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Thank You Page (thanks.html) Redesign
   -------------------------------------------------------------------------- */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background: radial-gradient(circle at center, #fffbeb 0%, #fef3c7 70%, #ffffff 100%);
}

.thanks-card {
  max-width: 620px;
  width: 100%;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border-light);
}

.thanks-check-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: #1e293b;
  font-size: 2.5rem;
  animation: scaleBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleBounce {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.thanks-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.thanks-timeline {
  background: var(--chamomile-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
  text-align: left;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--chamomile-yellow);
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Footer (Matching kontakt@sugban.ba and Google Ads Compliant)
   -------------------------------------------------------------------------- */
footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 5rem 0 2rem 0;
  border-top: 3px solid var(--chamomile-yellow);
}

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

.footer-brand .logo-title {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--chamomile-yellow);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--chamomile-yellow-light);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  fill: var(--chamomile-yellow);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: var(--chamomile-yellow);
}

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.825rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: var(--chamomile-yellow);
}

/* --------------------------------------------------------------------------
   Floating Back to Top
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--chamomile-yellow);
  color: #1e293b;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--chamomile-yellow-light);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-features {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-grid,
  .reviews-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-content {
    justify-content: center;
    text-align: center;
  }
  .main-nav, .header-phone {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .standards-grid,
  .ingredients-grid,
  .reviews-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .order-wrapper {
    padding: 2rem 1.25rem;
  }
  .offer-spotlight {
    padding: 1.75rem 1.25rem;
  }
  .offer-title {
    font-size: 1.85rem;
  }
}
