/* === RESET & BASICS === */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr, th, td, main, article, aside, figure, figcaption, nav, header, footer, section, summary, details, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font: inherit;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
bod y {
  background: #F4EDE3;
  color: #2D2A23;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after { box-sizing: inherit; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; outline: none; }

/* === BRAND COLOR VARIABLES === */
:root {
  --primary: #01695F;
  --secondary: #F4EDE3;
  --accent: #C04145;
  --white: #fff;
  --black: #1c1c1b;
  --gray: #767676;
  --shadow: 0 8px 24px rgba(22,22,18,0.12);
  --elevate: 0 4px 12px rgba(192,65,69,0.11);
  --radius: 18px;
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
html, body { font-family: 'Roboto', Arial, Helvetica, sans-serif; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--primary);
  text-shadow: 0 2px 0 rgba(192,65,69,0.07);
}
h1 { font-size: 2.5rem;  line-height: 1.15; }
h2 { font-size: 2rem;    line-height: 1.17; }
h3 { font-size: 1.5rem;  line-height: 1.19; }
h4 { font-size: 1.1rem;  line-height: 1.3; }
p, ul, ol, li {
  color: var(--black);
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
strong, b { font-weight: 700; }
.text-section ul {
  margin-top: 12px;
  margin-bottom: 12px;
}
.text-section ul li {
  margin-bottom: 6px;
  font-size: 1rem;
}

/* === BASIC LAYOUT === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--secondary);
  box-shadow: var(--elevate);
}

/* === HEADER & NAV === */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 22px rgba(1, 105, 95, 0.07);
  position: relative;
  z-index: 51;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
}
.logo img {
  width: 56px;
  height: auto;
  margin-right: 10px;
}
nav.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-right: 20px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(1,105,95,0.08);
  outline: none;
}

.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 28px;
  border-radius: 60px;
  border: none;
  background: var(--accent);
  box-shadow: 0 2px 16px rgba(192,65,69,0.13);
  color: var(--white) !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.18s, transform 0.13s;
  gap: 10px;
  margin-left: 16px;
}
.btn.primary, a.btn.primary {
  background: var(--accent);
  color: var(--white);
  border-bottom: 4px solid #952930;
}
.btn.primary:hover, a.btn.primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(1,105,95,0.13);
}
.btn.secondary, a.btn.secondary {
  background: var(--primary);
  color: var(--white);
  border-bottom: 4px solid #014a41;
}
.btn.secondary:hover, a.btn.secondary:hover {
  background: #32b7a9;
  color: var(--black);
}
/* Button micro-interaction */
.btn:active, a.btn:active { transform: scale(0.96); }

/* === MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 60px;
  border: none;
  z-index: 101;
  margin-left: 14px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover {
  background: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  box-shadow: 0 8px 44px rgba(1,105,95, 0.14);
  z-index: 105;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.82,0,.27,1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px 30px 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 50px; height: 50px;
  margin-bottom: 14px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover { background: var(--primary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 18px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.17s, color 0.2s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--white);
  outline: none;
}

/* === RESPONSIVE LAYOUT === */
@media (max-width: 1100px) {
  .container { max-width: 940px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  nav.main-nav { gap: 18px; }
  .btn,
  a.btn { min-width: 140px; padding: 10px 14px; font-size: 1rem; }
}
@media (max-width: 800px) {
  nav.main-nav { gap: 10px; }
  header .container { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 768px) {
  nav.main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-flex; }
  header .container { flex-direction: row; padding: 12px 7px; }
  .logo img { width: 44px; }
  .btn, a.btn {
    font-size: 1rem;
    min-width: 110px;
    padding: 8px 11px;
  }
  .section { padding: 30px 8px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.02rem; }
}
@media (max-width: 576px) {
  .container { padding: 0 7px; }
  .btn, a.btn { font-size: 0.97rem; min-width: 80px; padding: 8px 8px; }
}

/* === FLEXBOX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    gap: 14px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  color: #231e1f;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(1,105,95,0.07);
  flex-direction: column;
  min-width: 220px;
  max-width: 540px;
  font-size: 1.05rem;
  border-left: 8px solid var(--accent);
}
.testimonial-author {
  font-family: 'Montserrat';
  color: var(--primary);
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HOMEPAGE HERO === */
.hero {
  padding: 40px 0 40px 0;
  background-color: var(--secondary);
  background-image: url('../assets/hero-brush.svg');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 54px;
  box-shadow: var(--elevate);
  min-height: 290px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hero { padding: 26px 0 22px 0; min-height: 190px; }
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-shadow: 0 2px 0 #ffd3d4;
}
.hero p {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 16px;
}
.hero .btn.primary {
  font-size: 1.1rem;
}

/* === FEATURES & SERVICES === */
.features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--elevate);
  padding: 36px 18px;
}
.features h2 { margin-bottom: 20px; }
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
.features ul li {
  background: var(--secondary);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(192,65,69,0.04);
  padding: 18px 14px 18px 18px;
  min-width: 205px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 0;
}
.features ul li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .features ul { flex-direction: column; gap: 8px; }
  .features ul li { min-width: 0; }
}

/* === SERVICE OVERVIEW + ALL SECTION TITLES === */
.services-overview, .services, .advantages, .bouquets, .giftsets, .subscription-how, .subscription-benefits, .steps, .brand-promise, .contact, .delivery-info, .legal, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--elevate);
  font-size: 1.08rem;
}
.services-overview ul, .services ul, .advantages ul, .bouquets ul, .giftsets ul, .subscription-how ul, .subscription-benefits ul, .legal .text-section ul, .brand-promise ul, .delivery-info ul {
  margin-top: 10px;
  margin-bottom: 4px;
}
.services-overview ul li, .services ul li, .advantages ul li, .bouquets ul li, .giftsets ul li, .subscription-how ul li, .subscription-benefits ul li, .legal .text-section ul li, .brand-promise ul li, .delivery-info ul li {
  background: var(--secondary);
  border-left: 4px solid var(--primary);
  padding: 13px 11px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.steps ol {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  list-style: decimal inside;
  margin-top: 10px;
}
.steps ol li {
  background: var(--secondary);
  border-radius: 10px;
  min-width: 120px;
  max-width: 320px;
  padding: 12px 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
  box-shadow: 0 1px 8px rgba(1,105,95,0.08);
}
@media (max-width: 700px) {
  .steps ol { flex-direction: column; gap: 8px; }
  .steps ol li { min-width: 0; max-width: none; }
}

/* === CTA SECTION === */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--elevate);
  margin-bottom: 56px;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 1px 0 #30bfae;
}
.cta .btn.primary {
  background: var(--accent);
  border-color: #902429;
}
.cta .btn.primary:hover {
  background: var(--white);
  color: var(--accent) !important;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--elevate);
  margin-bottom: 56px;
  padding: 36px 10px;
}
.testimonials h2 {
  color: var(--primary);
}
.testimonials .testimonial-card {
  background: #fff;
  color: #222;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(192,65,69,0.06);
  border-radius: 14px;
  padding: 20px 26px;
  border-left: 7px solid var(--accent);
  position: relative;
}
.testimonials .testimonial-card:last-child { margin-bottom: 0; }

/* === LEGAL/ABOUT/COPY PAGES SECTION === */
.legal, .about, .brand-promise, .confirmation {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--elevate);
  margin-bottom: 60px;
  padding: 40px 20px;
  color: var(--black);
}
.legal .text-section, .about .text-section, .brand-promise .content-wrapper {
  font-size: 1.08rem;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: var(--primary);
  padding: 30px 0 14px 0;
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 30px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  padding: 4px;
}
.footer-nav a:hover {
  color: var(--accent);
  text-decoration: underline;
}
footer p {
  font-size: 0.98rem;
  color: #eaf7fa;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 2050;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  box-shadow: 0 -4px 30px rgba(1,105,95,0.08);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.7,.05,.5,1);
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-consent-banner .btn {
  min-width: 90px;
  padding: 9px 22px;
  font-size: 0.98rem;
  border-radius: 20px;
  font-weight: 700;
}
.cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  transition: background 0.18s;
}
.cookie-accept:hover { background: #028f81; }
.cookie-reject {
  background: #f0cfcf;
  color: var(--accent);
  border: none;
}
.cookie-reject:hover {
  background: var(--accent);
  color: #fff;
}
.cookie-settings {
  background: #f4fede;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-settings:hover {
  background: #dfefe7;
}

/* ===== COOKIE CONSENT MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(1,105,95,0.12);
  z-index: 2060;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  padding: 38px 30px 28px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 44px rgba(1,105,95,0.17);
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  color: var(--black);
  position: relative;
  font-size: 1.04rem;
  animation: cookieModalIn 0.33s cubic-bezier(.7,.05,.5,1);
}
@keyframes cookieModalIn {
  from { opacity:0; transform: scale(0.9) translateY(32px); } to { opacity:1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 36px; height: 36px;
  border: none;
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal-close:hover { background: var(--primary); }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
}
.cookie-category.essential label, .cookie-category.essential {
  color: #6c6c65;
}
.cookie-category.essential input {
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions .btn {
  min-width: 85px;
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 20px;
}

/* === SPACING & WHITE SPACE === */
section { margin-bottom: 60px; }
.card, .testimonial-card, .feature-item { margin-bottom: 20px; }
.card-container, .content-grid, .features ul { gap: 24px; }
.features ul, .feature-item, .content-grid, .text-image-section { gap: 20px; }

/* === ARTISTIC CREATIVE TOUCHES === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: none;
}
section, .card, .testimonial-card, .cta, .legal, .about, .brand-promise {
  border-radius: var(--radius);
  box-shadow: var(--elevate);
}
/* Artistic brush effect and colored accents on titles */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 8px;
  background: var(--accent);
  opacity: 0.26;
  border-radius: 13px;
  margin-top: -10px;
}
@media (max-width: 576px) {
  section, .card, .testimonial-card, .cta, .legal, .about, .brand-promise {
    padding: 22px 6px;
  }
  h1, h2 { font-size: 1.09rem; }
}

/* === MICRO-INTERACTIONS === */
a, button, .btn, .footer-nav a, .mobile-nav a,
.cookie-consent-banner .btn, .cookie-modal-actions .btn {
  transition: color 0.19s, background 0.16s, box-shadow 0.16s, transform 0.15s;
}
a:active, .btn:active { transform: scale(0.95); }

/* === FORMS (if any in future) === */
input, textarea, select {
  border-radius: 10px;
  border: 1.6px solid var(--primary);
  background: var(--white);
  font-size: 1rem;
  padding: 12px 18px;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  outline: none;
  width: 100%;
  transition: border 0.16s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 1px 6px rgba(192,65,69,0.11);
}

/* === TABLET/MOBILE SPECIAL ALIGNMENTS === */
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding: 0 4px !important;
    gap: 11px;
  }
  .features ul,
  .brand-promise ul, .services ul, .advantages ul, .services-overview ul, .bouquets ul {
    flex-direction: column;
    gap: 6px;
  }
}

/* === Z-INDEX & PREVENT OVERLAP === */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, .cookie-modal { z-index: 200+; }

/* === UTILITY CLASSES === */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.mt-2 { margin-top: 18px !important; }
.mb-2 { margin-bottom: 18px !important; }
.mb-3 { margin-bottom: 32px !important; }

/* === VISIBILITY A11Y === */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* === PRINT SAFETY === */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu, .cookie-modal-overlay { display: none !important; }
}
