/* ==========================================================================
   VERTIKSSETS - REDUSLIM DETOKS ORGANIZMA
   Salad-Green & Chamomile Floral Design System
   ========================================================================== */

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

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #F4FAF0 0%, #FFFFFF 25%, #F7FCF5 60%, #EEF8E8 100%);
  color: #1F2D22;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  padding-bottom: 40px;
}

/* --- Chamomile Background Floral Accents --- */
.bg-chamomile-top-left {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  background: url('../images/chamomile-bg.svg') no-repeat top left;
  background-size: contain;
}

.bg-chamomile-mid-right {
  position: absolute;
  top: 900px;
  right: -60px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  background: url('../images/chamomile-bg.svg') no-repeat top right;
  background-size: contain;
  transform: rotate(140deg);
}

.bg-chamomile-bottom-left {
  position: absolute;
  bottom: 300px;
  left: -80px;
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  background: url('../images/chamomile-bg.svg') no-repeat bottom left;
  background-size: contain;
  transform: rotate(-30deg);
}

/* --- Top Announcement Bar --- */
.top-announcement-bar {
  background: linear-gradient(90deg, #5CA31C 0%, #72C024 50%, #5CA31C 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(92, 163, 28, 0.2);
  position: relative;
  z-index: 101;
}

.top-announcement-bar .bar-flower {
  font-size: 1.1rem;
  animation: rotateFloral 14s linear infinite;
  display: inline-block;
}

@keyframes rotateFloral {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Sticky Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(163, 209, 134, 0.4);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(46, 92, 23, 0.05);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1E2E20;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-flower-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 5px rgba(114, 192, 36, 0.35));
}

.logo-highlight {
  color: #72C024;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  text-decoration: none;
  color: #2F4233;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #62A81C;
}

.nav-link:hover::after, .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #72C024;
  border-radius: 2px;
}

/* --- Flower Styled Buttons --- */
.btn-flower-cta {
  background: linear-gradient(135deg, #7CD027 0%, #62A81C 100%);
  color: #FFFFFF !important;
  padding: 10px 24px;
  border-radius: 26px;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(114, 192, 36, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-flower-cta:hover {
  background: linear-gradient(135deg, #87DE2F 0%, #589A17 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 192, 36, 0.45);
}

.btn-flower-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* --- Page Layout Container --- */
.page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 35px 20px 20px;
  position: relative;
  z-index: 1;
}

/* --- Hero Intro Section --- */
.hero-header {
  text-align: center;
  margin-bottom: 36px;
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EAF5E3;
  color: #3B7214;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(163, 209, 134, 0.5);
  box-shadow: 0 2px 8px rgba(92, 163, 28, 0.1);
}

.headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.title-primary {
  color: #2F6513;
  display: block;
}

.title-secondary {
  color: #72C024;
  display: block;
}

.hero-subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.12rem;
  color: #4A5F4E;
  font-weight: 500;
  line-height: 1.65;
}

/* --- Trust Badges Strip --- */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2E4532;
  border: 1px solid #E1EFE0;
  box-shadow: 0 4px 12px rgba(46, 92, 23, 0.05);
}

.trust-badge-flower {
  color: #F59E0B;
}

/* ==========================================================================
   OFFER SECTION: PRODUCT ON THE LEFT, ORDER CARD ON THE RIGHT
   ========================================================================== */
.offer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto 60px;
  padding-top: 10px;
}

/* Left Column: Product visual and highlights */
.offer-left-column {
  order: 1; /* Explicitly on the LEFT */
  background: #FFFFFF;
  border-radius: 20px;
  padding: 34px 28px;
  border: 1px solid #E1EFE0;
  box-shadow: 0 14px 40px rgba(46, 92, 23, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.offer-left-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #72C024 0%, #A4E045 100%);
}

.product-image-container {
  position: relative;
  text-align: center;
  padding: 10px 0 20px;
}

.product-badge-float {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #72C024 0%, #5CA31C 100%);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(92, 163, 28, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-image {
  max-width: 100%;
  width: 320px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 14px 30px rgba(74, 133, 19, 0.18));
  transition: transform 0.4s ease;
}

.product-image:hover {
  transform: translateY(-4px) scale(1.02);
}

.product-header-info {
  margin-top: 10px;
}

.product-title-sub {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1E2E20;
  margin-bottom: 6px;
}

.product-tagline {
  font-size: 0.96rem;
  color: #4A5F4E;
  margin-bottom: 16px;
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2F4233;
}

.product-features-list .li-flower {
  color: #72C024;
  font-size: 1.1rem;
}

.product-guarantee-note {
  background: #F4FAF0;
  border: 1px dashed #A7D888;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #355823;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Right Column: Order Card and Form */
.offer-right-column {
  order: 2; /* Explicitly on the RIGHT */
  display: flex;
  justify-content: center;
}

.card-order {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 16px 45px rgba(46, 92, 23, 0.09);
  padding: 34px 32px;
  width: 100%;
  border: 1px solid #E1EFE0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #F59E0B 0%, #72C024 100%);
}

.card-badge-top {
  align-self: center;
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid #FDBA74;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E2E20;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 16px;
}

/* Price Container */
.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #F6FCF3;
  border: 1px solid #D6ECD0;
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 22px;
}

.old-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.old-price-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8C9E90;
  text-transform: uppercase;
}

.old-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #9AAEA0;
  text-decoration: line-through;
}

.new-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.new-price-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4A8513;
  text-transform: uppercase;
}

.new-price {
  font-size: 2.15rem;
  font-weight: 900;
  color: #5FA815;
  line-height: 1;
}

.discount-badge {
  background: #EF4444;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 8px;
  margin-left: 6px;
}

/* Order Form */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2F4233;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-group input {
  width: 100%;
  height: 52px;
  background-color: #F8FDF7;
  border: 1.5px solid #D0E5CE;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 1.05rem;
  font-family: inherit;
  color: #1E2E20;
  outline: none;
  transition: all 0.25s ease;
}

.input-group input::placeholder {
  color: #7E9682;
  opacity: 0.9;
}

.input-group input:focus {
  background-color: #FFFFFF;
  border-color: #72C024;
  box-shadow: 0 0 0 4px rgba(114, 192, 36, 0.18);
}

.input-group input.is-invalid {
  border-color: #E53935 !important;
  background-color: #FFF8F8 !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15) !important;
}

.input-group input.is-valid {
  border-color: #4CAF50 !important;
  background-color: #F9FFF7 !important;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15) !important;
}

.input-error-msg {
  font-size: 0.8rem;
  font-weight: 600;
  color: #D32F2F;
  margin-top: 5px;
  min-height: 18px;
  display: none;
  padding-left: 4px;
}

.input-error-msg.show {
  display: block;
}

.input-error-msg.success {
  color: #2E7D32;
}

.input-error-msg.warning {
  color: #D97706;
}

/* Floral Big Submit Button */
.btn-submit-order {
  height: 60px;
  background: linear-gradient(180deg, #7CD027 0%, #5EA419 100%);
  border: none;
  border-radius: 14px;
  color: #FFFFFF;
  font-size: 1.28rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(94, 164, 25, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 6px;
}

.btn-submit-order:hover {
  background: linear-gradient(180deg, #87DE2F 0%, #68B41E 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(94, 164, 25, 0.48);
}

.btn-submit-order:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(94, 164, 25, 0.3);
}

.btn-flower-sparkle {
  font-size: 1.4rem;
}

/* Security and Safety Box */
.security-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 14px;
  background: #F7FCF5;
  border-radius: 10px;
  border: 1px solid #E1EFE0;
}

.lock-icon {
  width: 30px;
  height: 30px;
  background-color: #72C024;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.security-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2F4233;
  line-height: 1.35;
}

.form-disclaimer {
  font-size: 0.77rem;
  color: #6C7F70;
  line-height: 1.45;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #D5E5D3;
  text-align: left;
}

/* ==========================================================================
   COMPOSITION SECTION (SASTAV OFERA)
   ========================================================================== */
.section-composition {
  margin: 70px auto 60px;
  position: relative;
  z-index: 1;
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EAF5E3;
  color: #3C7515;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid #CCE5C3;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: #1E2E20;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4F6353;
  line-height: 1.6;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ingredient-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #E1EFE0;
  box-shadow: 0 8px 25px rgba(46, 92, 23, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  border-color: #A4E045;
  box-shadow: 0 14px 35px rgba(46, 92, 23, 0.1);
}

.ingredient-card.chamomile-special {
  background: linear-gradient(135deg, #FFFFFF 0%, #F6FCF2 100%);
  border: 1.5px solid #8FD538;
}

.ingredient-icon-box {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #F1F9EB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.ingredient-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1E2E20;
  margin-bottom: 4px;
}

.ingredient-latin {
  font-size: 0.84rem;
  font-style: italic;
  color: #62A81C;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.ingredient-desc {
  font-size: 0.92rem;
  color: #4A5F4E;
  line-height: 1.55;
}

/* ==========================================================================
   ARTICLE / LIFESTYLE SECTION (PREUREĐENI FORMAT TEKSTA)
   ========================================================================== */
.section-article {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 45px 40px;
  border: 1px solid #E1EFE0;
  box-shadow: 0 10px 35px rgba(46, 92, 23, 0.05);
  margin-bottom: 60px;
}

.article-header {
  margin-bottom: 28px;
  text-align: center;
}

.article-grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-box {
  background: #F8FDF7;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid #E1EFE0;
  transition: transform 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
  background: #F3FAF0;
}

.feature-flower-badge {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: inline-block;
}

.feature-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #264A17;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.94rem;
  color: #485E4C;
  line-height: 1.6;
}

/* ==========================================================================
   STEPS TO ORDER (KAKO PORUČITI)
   ========================================================================== */
.section-steps {
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 30px 24px;
  border: 1px solid #E1EFE0;
  box-shadow: 0 8px 24px rgba(46, 92, 23, 0.05);
  text-align: center;
  position: relative;
}

.step-number {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #72C024 0%, #5CA31C 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(92, 163, 28, 0.3);
}

.step-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #1E2E20;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.92rem;
  color: #506454;
  line-height: 1.55;
}

/* ==========================================================================
   CUSTOMER EXPERIENCES / TESTIMONIALS (BEZ STOP REČI)
   ========================================================================== */
.section-testimonials {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #E1EFE0;
  box-shadow: 0 8px 25px rgba(46, 92, 23, 0.04);
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #384D3C;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: #EAF5E3;
  color: #4A8513;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1E2E20;
}

.author-city {
  font-size: 0.82rem;
  color: #728775;
}

/* ==========================================================================
   RECIPES / SAVETI SECTION (SAVETI ZA ISHRANU)
   ========================================================================== */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.recipe-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46, 92, 23, 0.06);
  border: 1px solid #E1EFE0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(46, 92, 23, 0.12);
}

.recipe-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.recipe-card:hover .recipe-img {
  transform: scale(1.05);
}

.recipe-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(114, 192, 36, 0.95);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.recipe-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.recipe-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #1E2E20;
  margin-bottom: 14px;
}

.recipe-block {
  margin-bottom: 16px;
}

.recipe-block h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5CA31C;
  margin-bottom: 8px;
  font-weight: 800;
}

.ingredient-list {
  list-style: none;
  font-size: 0.92rem;
  color: #3F5243;
  line-height: 1.55;
}

.ingredient-list li {
  margin-bottom: 5px;
  padding-left: 18px;
  position: relative;
}

.ingredient-list li::before {
  content: '🌼';
  font-size: 0.72rem;
  position: absolute;
  left: 0;
  top: 3px;
}

.recipe-instructions {
  font-size: 0.92rem;
  color: #3F5243;
  line-height: 1.55;
}

/* Call to action on saveti page */
.recipe-cta-banner {
  background: linear-gradient(135deg, #1C331A 0%, #2A4727 100%);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 38px 30px;
  text-align: center;
  margin: 45px auto 20px;
  box-shadow: 0 12px 35px rgba(28, 51, 26, 0.2);
  border: 1px solid #3F673A;
}

.cta-content h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 1.05rem;
  color: #D2E4D0;
  margin-bottom: 22px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #72C024;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(114, 192, 36, 0.4);
  transition: all 0.25s ease;
}

.btn-cta:hover {
  background: #62A81C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 192, 36, 0.5);
}

/* ==========================================================================
   THANK YOU PAGE STYLES (STRANICA ZAHVALNOSTI)
   ========================================================================== */
.thankyou-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 0 50px;
}

.thankyou-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 45px 38px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 18px 55px rgba(46, 92, 23, 0.1);
  border: 1px solid #E1EFE0;
  position: relative;
}

.thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #72C024 0%, #F59E0B 100%);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7CD027 0%, #5CA31C 100%);
  color: #FFFFFF;
  font-size: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(114, 192, 36, 0.35);
}

.thankyou-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1E2E20;
  margin-bottom: 10px;
}

.thankyou-subtitle {
  font-size: 1.15rem;
  color: #556B59;
  margin-bottom: 26px;
  font-weight: 500;
}

.thankyou-info-box {
  background: #F7FCF5;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 26px;
  border: 1px solid #DAEBD6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}

.info-label {
  color: #627A67;
  font-weight: 600;
}

.info-value {
  color: #1E2E20;
  font-weight: 800;
}

.price-highlight {
  color: #5FA815;
  font-size: 1.22rem;
}

.status-badge {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.thankyou-message {
  font-size: 0.98rem;
  color: #405444;
  line-height: 1.6;
  margin-bottom: 28px;
}

.keep-phone-ready {
  font-weight: 800;
  color: #1E2E20;
  margin-top: 12px;
  font-size: 1.05rem;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #72C024;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(114, 192, 36, 0.35);
  transition: all 0.25s ease;
}

.btn-home:hover {
  background: #62A81C;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(114, 192, 36, 0.45);
}

/* ==========================================================================
   FOOTER (GOOGLE ADS COMPLIANT & COMPANY INFO)
   ========================================================================== */
.footer {
  background: #172619;
  color: #9BB39F;
  padding: 50px 20px 35px;
  border-top: 4px solid #72C024;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-size: 0.94rem;
  color: #A3BDA7;
  max-width: 580px;
}

.footer-contact-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 0.9rem;
  color: #C8DEC9;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-item a {
  color: #8DE03C;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-links a {
  color: #D2E7D4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #8DE03C;
}

.footer-separator {
  color: #4A634D;
}

.footer-disclaimer {
  max-width: 820px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #7E9782;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #6C8270;
  margin-top: 4px;
}

/* Bottom Green Bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #5CA31C 0%, #72C024 50%, #5CA31C 100%);
  z-index: 99;
}

/* ==========================================================================
   MODAL WINDOWS FOR POLICIES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 28, 16, 0.65);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 680px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 85vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #7B8F80;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #1E2E20;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1E2E20;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E1EFE0;
}

.policy-body {
  font-size: 0.94rem;
  color: #384D3C;
  line-height: 1.65;
}

.policy-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2F6513;
  margin: 18px 0 6px;
}

.modal-btn {
  background: #72C024;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.2s ease;
}

.modal-btn:hover {
  background: #62A81C;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 960px) {
  .offer-section {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .offer-left-column {
    order: 1; /* Offer stays on top on mobile, then order form */
  }

  .offer-right-column {
    order: 2;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 12px 16px;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .btn-flower-cta {
    padding: 8px 16px;
    font-size: 0.88rem;
  }

  .page-container {
    padding: 24px 16px;
  }

  .section-article {
    padding: 28px 20px;
  }

  .card-order {
    padding: 28px 20px;
  }

  .price-container {
    padding: 10px 14px;
  }

  .new-price {
    font-size: 1.85rem;
  }

  .footer-contact-box {
    flex-direction: column;
    gap: 10px;
  }
}
