/* ========== CSS RESET & NORMALIZE ========== */
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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F4F4ED;
  color: #2D3142;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #D72660;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #2D3142;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* ========== BRAND COLOR PALETTE & ROOTS ========== */
:root {
  --primary: #2D3142;
  --secondary: #D72660;
  --accent: #F4F4ED;
  --accent-dark: #E6E6DD;
  --danger: #D72660;
  --border-radius: 18px;
  --shadow: 0 4px 24px rgba(45,49,66,0.10), 0 1.5px 6px rgba(45,49,66,0.04);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

/* ========== TYPOGRAPHY BOLD/STRONG ========== */
h1,
h2,
h3,
h4,
h5 { font-family: var(--font-display); font-weight: 700; color: var(--primary); margin-bottom: 16px; letter-spacing: -0.02em; }
h1 { font-size: 2.7rem; line-height: 1.12; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 18px; }
h3 { font-size: 1.35rem; line-height: 1.25; margin-bottom: 14px; }
h4 { font-size: 1.15rem; line-height: 1.33; margin-bottom: 12px; }
h5 { font-size: 1rem; line-height: 1.38; margin-bottom: 10px; }

p,
ul,
ol,
li,
address,
blockquote,
label,
input,
button {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--primary);
}
p { margin-bottom: 12px; font-size: 1.10rem; }
strong, b { font-weight: 700; }

blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #26283a;
  font-style: italic;
  margin-bottom: 0.7em;
}

/* ========== LAYOUT BASIC ========== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 20px;
  min-width: 250px;
  flex: 1 1 285px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 24px 0 rgba(45,49,66,0.083);
  border-left: 6px solid var(--secondary);
  min-width: 260px;
  max-width: 580px;
}
.feature-item, .usp-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 28px 20px 26px 20px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 min(350px, 100%);
}

/***** HERO STYLES *****/
.hero {
  background: linear-gradient(90deg, #fff 60%, #F4F4ED 100%);
  padding: 48px 0 36px 0;
  position: relative;
  margin-bottom: 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 16px 0;
}
.hero h1 {
  color: var(--secondary);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.12;
  text-shadow: none;
  margin-bottom: 18px;
}
.hero p {
  color: var(--primary);
  margin-bottom: 22px;
  font-size: 1.22rem;
}

/***** NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(45,49,66,0.05);
  border-bottom: 3px solid var(--secondary);
  position: sticky;
  top: 0; z-index: 111;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 28px;
  min-height: 74px;
  position: relative;
  padding: 0 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 30px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 11px 10px 7px 10px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.cta-primary {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 15px;
  margin-left: auto;
  box-shadow: 0 4px 16px 0 rgba(215,38,96,0.09), 0 1.5px 6px rgba(45,49,66,0.07);
  border: none;
  cursor: pointer;
  transition: background 0.19s, transform 0.16s;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
}
.cta-secondary {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 800;
  border-radius: 15px;
  padding: 11px 20px;
  margin-top: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, transform 0.16s;
  box-shadow: 0 3px 11px 0 rgba(45,49,66,0.14);
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/***** MOBILE NAVIGATION *****/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  margin-left: 20px;
  line-height: 1;
  z-index: 303;
  transition: color 0.17s, transform 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--primary);
  transform: scale(1.11);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(45,49,66,0.97);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.53,.09,.44,.98);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.6rem;
  background: transparent;
  border: none;
  color: #fff;
  margin: 20px 22px 0 0;
  cursor: pointer;
  transition: color 0.14s, transform 0.15s;
  z-index: 11001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--secondary);
  transform: scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 24px;
  text-align: center;
  border-radius: 14px;
  width: 90%;
  background: transparent;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

/***** FOOTER *****/
footer {
  background: #23252F;
  color: #fff;
  padding: 40px 0 14px 0;
  margin-top: 70px;
}
footer .container {
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.footer-contact {
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 16px;
}
.footer-contact h3, .newsletter-signup h3 {
  color: var(--secondary);
  font-size: 1.14rem;
  margin-bottom: 9px;
}
.footer-contact p {
  color: #f4f4ed;
  margin-bottom: 6px;
  font-size: 0.99rem;
}
.footer-contact a { color: #fff; text-decoration: underline; font-weight: 700; font-size: 0.99rem; }
.footer-contact a:hover { color: var(--secondary); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1 1 160px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: underline;
  padding-left: 0;
  border-radius: 9px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; }
.newsletter-signup {
  flex: 2 1 280px;
  min-width: 240px;
}
.newsletter-signup p { color: #f4f4ed; font-size: 0.97rem; }

/***** FEATURES, USPs, CARDS, SERVICES *****/
.features, .usp-list, .usp-grid, .feature-grid, .services-list {
  width: 100%;
  margin-bottom: 32px;
}
.feature-grid, .usp-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-item, .usp-item {
  min-width: 240px;
  max-width: 390px;
  transition: box-shadow 0.18s, transform 0.16s;
  border-left: 7px solid var(--secondary);
  background: #fff;
}
.feature-item img, .usp-item img {
  width: 43px; height: 43px; margin-bottom: 7px;
}
.feature-item h3, .usp-item h3 {
  font-size: 1.18rem;
  color: var(--secondary);
  margin-bottom: 7px;
  font-family: var(--font-display);
}
.feature-item:hover, .usp-item:hover, .feature-item:focus, .usp-item:focus {
  box-shadow: 0 2px 24px 0 rgba(45,49,66,0.15);
  transform: translateY(-3px) scale(1.029);
}
.services-list {
  margin-bottom: 16px;
  font-size: 1.04rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.services-list li {
  margin-bottom: 7px;
  font-weight: 500;
  color: var(--primary);
}
.usp-list {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 1.1em;
}

/***** TESTIMONIALS *****/
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  border-left: 7px solid var(--secondary);
  margin-bottom: 20px;
  padding: 22px 26px;
  box-shadow: 0 4px 20px rgba(45,49,66,0.11);
  font-size: 1.16rem;
  max-width: 590px;
  min-width: 250px;
  transition: box-shadow 0.14s, transform 0.16s;
  position: relative;
}
.testimonial-card blockquote {
  color: #2D3142;
  font-size: 1.14rem;
  font-style: italic;
  margin-bottom: 5px;
}
.testimonial-card span {
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  margin-left: 4px;
  margin-top: 6px;
}
.testimonial-card blockquote strong {
  color: var(--primary);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 28px 0 rgba(45,49,66,0.19);
  transform: scale(1.016);
}

/***** MODALS (COOKIE) *****/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: var(--accent);
  z-index: 99998;
  padding: 18px 12px 18px 12px;
  box-shadow: 0 -4px 24px rgba(45,49,66,0.13);
  gap: 20px;
  animation: dropInBanner 0.52s cubic-bezier(.3,1.1,.42,.86) 1;
  font-size: 1.02rem;
}
@keyframes dropInBanner {
  0% { transform: translateY(100%); opacity: 0.2; }
  80% { transform: translateY(-6%); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 9px 16px;
  font-weight: 800;
  margin-left: 12px;
  cursor: pointer;
  font-size: 0.98rem;
  transition: background 0.18s, color 0.15s, transform 0.14s;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.07);
}
.cookie-consent-banner .cookie-btn.secondary {
  background: #fff;
  color: var(--secondary);
}
.cookie-consent-banner .cookie-btn.secondary:hover, .cookie-consent-banner .cookie-btn.secondary:focus {
  background: var(--secondary);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,49,66,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 400px;
  width: 95vw;
  padding: 38px 24px 28px 24px;
  box-shadow: 0 8px 44px rgba(45,49,66,0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popupModal 0.37s cubic-bezier(.11,.53,.33,1.05);
}
@keyframes popupModal {
  0% { transform: scale(0.94) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 0.98rem;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 21px; height: 21px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .cookie-btn.secondary {
  background: #fff;
  color: var(--secondary);
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--primary); }

/***** FORM ELEMENTS & MODERN BOLD VISUALS *****/
input, textarea {
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 15px;
  font-size: 1.06rem;
  font-family: var(--font-body);
  transition: border 0.14s, box-shadow 0.16s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 2px 10px rgba(215,38,96,.12);
}
label {
  font-weight: 700;
  margin-bottom: 7px;
}
button {
  font-family: var(--font-body);
  font-weight: 800;
  cursor: pointer;
  border-radius: 13px;
}

/***** OTHER SECTION PADDING/OVERLAYS *****/
.about-short, .about, .privacy-policy, .gdpr-info, .terms-of-service, .cookie-policy, .confirmation {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.setup-service, .gift-wrapping-info, .price-overview, .order-summary-info, .delivery-area-map, .delivery-info, .certifications-awards {
  background: var(--accent-dark);
  border-radius: 12px;
  padding: 13px 18px;
  margin: 16px 0 18px 0;
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-body);
}
.next-steps {
  margin-top: 26px;
}

/***** MEDIA QUERIES (RESPONSIVE) *****/
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 88vw;
  }
  .content-grid, .feature-grid, .usp-grid, footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.38rem; }
  .hero { padding: 32px 0; }
  .feature-grid, .usp-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .section, .about-short, .about, .privacy-policy, .gdpr-info, .terms-of-service, .cookie-policy, .confirmation {
    padding: 32px 6px;
  }
  .testimonials .content-wrapper {
    gap: 18px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-primary { margin-left: 0; margin-right: 18px; padding: 11px 15px; font-size: 1rem; }
  header .container { gap: 9px; justify-content: space-between; }
  .footer-contact, .newsletter-signup, .footer-nav { min-width: 0; flex: 1 1 100%; }
  
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container { max-width: 98vw; padding-left: 8px; padding-right: 8px; }
  .section, .about-short, .about, .privacy-policy, .gdpr-info, .terms-of-service, .cookie-policy, .confirmation { padding: 18px 1px; }
  h1 { font-size: 1.23rem; margin-bottom: 12px; }
  h2 { font-size: 1.05rem; margin-bottom: 8px; }
  .testimonials .content-wrapper { gap: 10px; }
  .footer-contact h3, .newsletter-signup h3 { font-size: 1rem; }
  .footer-nav a { font-size: 0.97rem; }
  .cta-primary, .cta-secondary { font-size: 0.98rem; padding: 10px 10px; }
  .feature-item, .usp-item, .card { padding: 19px 10px; }
  .testimonial-card { padding: 13px 10px; font-size: 1.03rem; }
}

/***** MISCELLANEOUS *****/
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 12px;
}
@media (hover: hover) and (pointer: fine) {
  .feature-item:hover, .usp-item:hover, .testimonial-card:hover { box-shadow: 0 8px 58px rgba(45,49,66,0.059); }
}

/***** UTILITY CLASSES *****/
.hide { display: none !important; }
.show { display: block !important; }

/***** SECTION MARGINS (ALWAYS AT LEAST 20PX BETWEEN SECTIONS) *****/
section, .section, .about-short, .about, .privacy-policy, .gdpr-info, .terms-of-service, .cookie-policy, .confirmation {
  margin-bottom: 60px;
}

/***** FOCUS VISIBLE (for accessibility) *****/
:focus-visible { outline: 2.5px solid var(--secondary); outline-offset: 2.5px; }

/* ========== END OF CSS ========== */
