/* --- 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #FAF7F2;
  color: #242635;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #A18D72;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.7, .4, .2, 1);
}
a:focus {
  outline: 2px solid #FF2A71;
  outline-offset: 2px;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  outline: none;
  box-shadow: none;
}

/* --- BRAND PALETTE --- */
:root {
  --color-primary: #242635;
  --color-secondary: #A18D72;
  --color-accent: #FAF7F2;
  --color-electric: #FF2A71;
  --color-electric2: #23D5AB;
  --color-electric3: #F5B800;
  --color-on-primary: #FAF7F2;
  --color-on-secondary: #242635;
  --color-on-accent: #242635;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--color-electric);
  font-weight: 600;
  margin-bottom: 18px;
}
p, ul, ol {
  margin-bottom: 14px;
  color: #242635;
  font-size: 1.0625rem;
}
blockquote {
  font-style: italic;
  background: #FFF1F8;
  color: #242635;
  border-left: 4px solid var(--color-electric);
  padding: 18px 30px;
  margin: 20px 0;
  border-radius: 10px 20px 20px 10px;
}
strong {
  font-weight: 800;
}

/* --- BUTTONS --- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 28px;
  padding: 12px 36px;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s;
  box-shadow: 0 5px 18px rgba(36,38,53,0.10);
  outline: none;
  border: 2px solid transparent;
  margin: 8px 8px 8px 0;
}
.btn-primary {
  background: linear-gradient(90deg, #FF2A71 10%, #A18D72 90%);
  color: var(--color-on-primary);
  border: 2px solid transparent;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #23D5AB 5%, #FF2A71 95%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(255,42,113,0.09);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #FF2A71;
  border: 2px solid #FF2A71;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FF2A71;
  color: #fff;
  border-color: #FF2A71;
  box-shadow: 0 2px 12px rgba(255,42,113,0.13);
}
button, input[type="submit"], input[type="button"] {
  cursor: pointer;
}

/* --- CONTAINER & PRIMARY LAYOUT --- */
.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #FAF7F2;
  box-shadow: 0 2px 12px rgba(36,38,53,0.1);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 16px;
}
header a img {
  height: 48px;
  transition: filter 0.2s;
}
header a:hover img {
  filter: brightness(0.9) contrast(1.2) drop-shadow(0 4px 5px rgba(36,38,53,0.03));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}
.main-nav a {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: #242635;
  padding: 7px 13px;
  border-radius: 16px;
  transition: background 0.19s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-electric);
  color: #fff;
}

/* Mobile burger button */
.mobile-menu-toggle {
  display: none;
  background: #FF2A71;
  color: #fff;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  line-height: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  border: none;
  z-index: 1022;
  position: absolute;
  top: 14px;
  right: 20px;
  transition: background 0.19s, box-shadow 0.12s, transform 0.13s;
  box-shadow: 0 2px 14px rgba(255,42,113,0.13);
}
.mobile-menu-toggle:active {
  background: #A18D72;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #242635;
  color: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.82,.28,.14,1.02);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  margin: 22px 32px 0 0;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.mobile-menu-close:hover {
  background: #FF2A71;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 32px auto 0 auto;
  width: 85%;
  max-width: 350px;
}
.mobile-nav a {
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 13px 0;
  width: 100%;
  border-radius: 8px;
  background: none;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-electric);
  color: #fff;
}

/* --- SECTIONS & SPACING --- */
section {
  background: transparent;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px 0 rgba(36,38,53,0.04);
  transition: box-shadow 0.16s;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 38px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(36, 38, 53, 0.06);
  transition: box-shadow .18s, transform .13s;
}
.card:hover {
  box-shadow: 0 10px 32px rgba(36,38,53,0.14);
  transform: translateY(-6px) scale(1.014);
}

/* --- HERO --- */
.hero {
  background: linear-gradient(90deg, #FF2A71 0%, #23D5AB 100%);
  color: #fff;
  border-radius: 0 0 44px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px 0 rgba(36,38,53,0.09);
  margin-bottom: 60px;
  padding: 56px 0;
}
.hero h1 {
  color: #fff;
  font-size: 3rem;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero .subheadline {
  color: #fff2;
  font-weight: 600;
  margin-bottom: 30px;
}
.hero .btn-primary {
  background: #fff;
  color: #FF2A71;
  border-color: #fff;
  box-shadow: 0 2px 10px rgba(255,255,255,0.06);
}
.hero .btn-primary:hover {
  color: #fff;
  background: linear-gradient(90deg, #FF2A71, #23D5AB);
}

/* --- FEATURES GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px 20px 24px;
  box-shadow: 0 2px 9px rgba(36,38,53,0.06);
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 210px;
  transition: transform .14s, box-shadow .14s;
}
.feature img {
  width: 36px; height: 36px;
}
.feature:hover {
  box-shadow: 0 6px 24px rgba(255,42,113,0.14);
  transform: scale(1.045);
}
.feature h3 {
  color: #FF2A71;
  margin-bottom: 3px;
}

/* --- COLLECTIONS PREVIEW --- */
.collections-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 14px 0;
}
.collection-tile {
  min-width: 220px;
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px 38px 20px 20px;
  box-shadow: 0 4px 16px rgba(36,38,53,0.07);
  padding: 28px 22px 20px 22px;
  position: relative;
  margin-bottom: 0;
  border-left: 4px solid #23D5AB;
  transition: border-color 0.19s, box-shadow 0.19s, transform 0.16s;
}
.collection-tile:hover {
  border-left: 4px solid #FF2A71;
  box-shadow: 0 8px 22px rgba(161,141,114,0.14);
  transform: translateY(-2px) scale(1.017);
}
.collection-tile h3 {
  color: #23D5AB;
  margin-bottom: 6px;
}

/* --- SERVICE LIST --- */
.service-list {
  list-style: none;
  margin: 26px 0 10px 0;
  padding: 0;
}
.service-list li {
  margin-bottom: 14px;
  padding-left: 0;
  font-weight: 500;
}
.benefit-summary ul {
  list-style: disc inside;
  color: #FF2A71;
  font-weight: 600;
  margin: 18px 0 12px 14px;
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #242635;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px 20px 28px;
  border-radius: 20px 42px 20px 20px;
  box-shadow: 0 5px 24px 0 rgba(36,38,53,0.12);
  min-width: 220px;
  max-width: 380px;
  flex: 1 1 220px;
  margin-bottom: 12px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.04rem;
  color: #242635;
  font-style: italic;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #A18D72;
  font-weight: 700;
}

/* --- NEWSLETTER FORM --- */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 12px;
}
.newsletter-form label {
  font-weight: 600;
  color: #FF2A71;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-right: 8px;
}
.newsletter-form input[type="email"] {
  border-radius: 34px;
  border: 2px solid #FF2A71;
  padding: 11px 18px;
  font-size: 1rem;
  background: #fff;
  color: #242635;
  min-width: 170px;
  transition: border 0.13s, box-shadow 0.13s;
}
.newsletter-form input[type="email"]:focus {
  border: 2px solid #23D5AB;
  box-shadow: 0 1px 7px #23D5AB33;
}
.newsletter-form button[type="submit"] {
  background: #FF2A71;
  color: #fff;
  border-radius: 32px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-size: 1rem;
  transition: background 0.16s, box-shadow 0.13s, transform 0.12s;
}
.newsletter-form button[type="submit"]:hover {
  background: #23D5AB;
  box-shadow: 0 3px 18px #23D5AB33;
  transform: scale(1.04);
}

small {
  color: #A18D72;
  font-size: 0.96rem;
}

/* --- FOOTER --- */
footer {
  background: #242635;
  color: #fff;
  padding-top: 48px;
  padding-bottom: 24px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
}
.footer-logo img {
  height: 56px;
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: #A18D72;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-menu a:hover {
  color: #F5B800;
}
.footer-contact a {
  color: #23D5AB;
}
.footer-newsletter .newsletter-form {
  flex-direction: column;
  gap: 7px;
}
.footer-newsletter input[type="email"] {
  width: 100%;
  min-width: 140px;
}
.footer-socials {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 12px;
}
.footer-socials a img {
  width: 30px; height: 30px;
  transition: filter 0.16s, transform 0.13s;
}
.footer-socials a:hover img {
  filter: brightness(2) drop-shadow(0 0 6px #FF2A7177);
  transform: scale(1.12);
}
.footer-bottom {
  border-top: 1.5px solid #fff1;
  padding-top: 18px;
  text-align: center;
  color: #A18D72;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* --- TEAM CARDS --- */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.team-member-card {
  background: #FFF;
  border-radius: 24px 24px 13px 34px;
  box-shadow: 0 4px 16px rgba(36,38,53,0.07);
  min-width: 200px;
  max-width: 290px;
  flex: 1 1 200px;
  padding: 28px 20px 18px 26px;
  margin-bottom: 0;
  transition: transform .12s, box-shadow .13s;
  border-left: 4px solid #F5B800;
}
.team-member-card:hover {
  border-left: 4px solid #FF2A71;
  box-shadow: 0 10px 18px #FF2A7120;
  transform: scale(1.04);
}

/* --- LEGAL SECTION --- */
.legal-section {
  background: #fff;
  border-radius: 18px 32px 18px 18px;
  box-shadow: 0 3px 12px rgba(161,141,114,0.025);
  padding: 24px 28px;
  margin-top: 18px;
}
.legal-section h2 {
  color: #FF2A71;
  margin-top: 18px;
  font-size: 1.25rem;
}
.legal-section ul {
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 14px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 16px 16px 16px 34px;
  box-shadow: 0 2px 11px rgba(36,38,53,0.08);
  padding: 22px 24px 10px 24px;
  transition: box-shadow .13s, border-left .13s;
  border-left: 4px solid #A18D72;
  cursor: pointer;
  margin-bottom: 0px;
}
.faq-item.open,
.faq-item:hover {
  box-shadow: 0 5px 17px #23D5AB23;
  border-left: 4px solid #23D5AB;
}
.faq-item h3 {
  margin-bottom: 6px;
  font-size: 1.14rem;
  color: #242635;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-answer p {
  color: #242635;
  font-size: 1.02rem;
}

/* --- TIPS AND EXAMPLES --- */
.tips-list {
  list-style: disc inside;
  padding-left: 18px;
  margin-bottom: 14px;
}
.illustrative-examples {
  background: #fff0df;
  border-radius: 12px 30px 12px 12px;
  padding: 18px 22px;
  margin: 18px 0 0 0;
}

.top-tips, .accessory-of-the-month {
  background: #FFF9EA;
  border-radius: 18px 24px 18px 18px;
  padding: 18px 26px;
  margin: 12px 0 22px 0;
  box-shadow: 0 3px 13px rgba(245,184,0,0.08);
}

/* --- BLOG POST STYLES --- */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.blog-post-list article {
  background: #fff;
  border-radius: 18px 44px 18px 18px;
  box-shadow: 0 3px 11px rgba(36,38,53,0.09);
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 220px;
  padding: 28px 18px 16px 22px;
  margin-bottom: 0;
  transition: box-shadow 0.1s, transform 0.13s;
}
.blog-post-list article:hover {
  box-shadow: 0 9px 26px #FF2A7113;
  transform: scale(1.025);
}
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 16px;
}
.popular-tags span {
  border-radius: 12px;
  background: #23D5AB;
  color: #fff;
  font-weight: 700;
  font-size: .96rem;
  padding: 6px 18px;
  letter-spacing: 1px;
  transition: background .17s, color .16s;
}
.popular-tags span:hover {
  background: #FF2A71;
  color: #fff;
}
.featured-blog {
  background: #fff;
  border-radius: 22px 44px 18px 18px;
  box-shadow: 0 5px 16px #A18D7266;
  padding: 30px 20px 24px 34px;
  margin-bottom: 14px;
  margin-top: 18px;
}

/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.contact-info a {
  color: #FF2A71;
  font-weight: 700;
}


/* --- RESPONSIVE FLEX ONLY --- */
@media (max-width: 1100px) {
  .footer-columns {
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .collections-preview {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .collections-preview, .testimonial-slider, .blog-post-list, .team-cards, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .content-wrapper {
    padding: 0 4px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    padding: 10px 22px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-columns {
    flex-direction: column;
    gap: 17px;
  }
  .footer-menu, .footer-contact, .footer-newsletter, .footer-socials {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.48rem;
  }
  .hero {
    padding: 34px 0 26px 0;
    border-radius: 0 0 26px 26px;
  }
}
@media (max-width: 480px) {
  .hero .container {
    padding: 0 3px;
  }
  .hero h1 {
    font-size: 1.32rem;
  }
}

/* --- FLEX DIRECTION COLUMN FOR TEXT-IMAGE SECTIONS ON MOBILE --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
/* --- VISUAL EFFECTS AND HIERARCHY --- */
section h1, section h2 {
  position: relative;
  z-index: 2;
}
section h2::before {
  content: '';
  display: inline-block;
  width: 30px; height: 8px;
  background: linear-gradient(90deg,#FF2A71 0,#F5B800 90%);
  border-radius: 12px;
  margin-right: 12px;
  position: relative;
  top: -3px;
  vertical-align: middle;
  z-index: 1;
}

/* --- EFFECTS FOR INTERACTIVES --- */
.btn-primary, .btn-secondary, .newsletter-form button[type="submit"], .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.14s, color 0.13s, box-shadow 0.14s, transform 0.13s;
}
.btn-primary:active, .btn-secondary:active, .newsletter-form button[type="submit"]:active {
  transform: scale(.98);
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #242635;
  color: #fff;
  z-index: 2500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  justify-content: center;
  padding: 20px 4vw 20px 4vw;
  box-shadow: 0 -4px 32px #A18D7260;
  animation: cookieBannerIn .54s ease;
}
@keyframes cookieBannerIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin: 0 18px 0 0;
  font-size: 1rem;
  flex: 2 2 170px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  border: none;
  outline: none;
  margin: 0 4px;
  transition: background .11s, color .11s;
}
.cookie-banner .cookie-btn.accept {
  background: #23D5AB;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #FF2A71;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #242635;
  border: 1.5px solid #A18D72;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FAF7F2;
  color: #FF2A71;
  border: 1.5px solid #FF2A71;
}

.cookie-modal {
  position: fixed;
  z-index: 2600;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,38,53,0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity .23s;
}
.cookie-modal .modal-inner {
  background: #fff;
  border-radius: 18px 32px 18px 18px;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 12px 48px #A18D7277;
  padding: 36px 28px 29px 26px;
  color: #242635;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.42rem;
  color: #FF2A71;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .category label {
  font-size: 1.06rem;
  font-weight: 600;
  color: #23D5AB;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #FF2A71;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: color .14s;
}
.cookie-modal .modal-close:hover {
  color: #23D5AB;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .modal-actions button {
  border-radius: 20px;
  padding: 9px 20px;
  background: #23D5AB;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: background .11s, color .13s;
}
.cookie-modal .modal-actions button:last-child {
  background: #fff;
  color: #23D5AB;
  border: 1.5px solid #A18D72;
}
.cookie-modal .modal-actions button:hover {
  background: #FF2A71;
  color: #fff;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #23D5AB;
  width: 21px;
  height: 21px;
}
.cookie-modal .category .always-on {
  color: #A18D72;
  font-size: .91rem;
  font-weight: 600;
  margin-left: 6px;
  background: #FAF7F2;
  border-radius: 7px;
  padding: 3px 7px;
}

@media (max-width: 600px) {
  .cookie-modal .modal-inner {
    padding: 20px 9px 18px 10px;
    font-size: .98rem;
    min-width: 0;
  }
}

/* --- UTILS AND ACCESSIBILITY --- */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

/* --- OVERALL MICROINTERACTIONS & SMOOTHNESS --- */
:focus-visible {
  outline: 2.5px solid #23D5AB;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 12px;
  background: #FAF7F2;
}
::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #23D5AB44;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF2A7188;
}

/* --- CARD LAYOUTS FOR SUBSECTIONS --- */
.collection-list, .features-list, .services-list, .top-tips, .accessory-of-the-month, .benefits-grid, .client-stories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.collection-item {
  background: #fff;
  border-radius: 14px 34px 14px 14px;
  box-shadow: 0 2px 11px rgba(36,38,53,0.08);
  padding: 26px 20px 22px 24px;
  margin-bottom: 0px;
  border-left: 4px solid #A18D72;
  transition: border-color 0.16s, box-shadow 0.15s, transform 0.15s;
}
.collection-item:hover {
  border-left: 4px solid #FF2A71;
  box-shadow: 0 6px 18px #FF2A7120;
  transform: scale(1.02);
}

/* --- LAYOUT FLEX helpers per guideline --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- End of Vibrant/Energetic Nova Field design --- */
