/* --- CSS RESET & BASE --- */
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 {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background-color: #FAF7F2;
  color: #2C3539;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2C3539;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E0C195;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
strong {
  font-weight: 600;
}
blockquote {
  border-left: 4px solid #E0C195;
  color: #5C6064;
  padding-left: 18px;
  margin: 18px 0;
  font-style: italic;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
  color: #2C3539;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p {
  margin-bottom: 14px;
  color: #363c40;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 768px) {
  h1 { font-size: 1.85rem; margin-bottom: 18px; }
  h2 { font-size: 1.3rem; }
  .section, section { padding: 24px 8px; margin-bottom: 36px; }
}

/* --- CONTAINER --- */
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* FLEX spacing patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(44,53,57,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 320px;
  padding: 28px 24px;
  transition: box-shadow .17s;
}
.card:hover {
  box-shadow: 0 10px 30px 0 rgba(44,53,57,0.12);
}
.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: 15px;
  box-shadow: 0 3px 14px 0 rgba(44,53,57,0.04);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER --- */
header {
  padding: 0;
  background: #FFF;
  border-bottom: 1px solid #EFEAE4;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 0;
  padding-bottom: 0;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
}
.logo img {
  max-height: 44px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 9px;
  color: #2C3539;
  background: none;
  transition: background .2s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E0C195;
  color: #2C3539;
}
.main-nav .cta-primary {
  background: #2C3539;
  color: #fff;
  padding: 10px 22px;
  border-radius: 19px;
  box-shadow: 0 2px 7px 0 rgba(44,53,57,0.06);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-left: 10px;
  transition: background .22s, color .15s, box-shadow .14s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #E0C195;
  color: #2C3539;
  box-shadow: 0 4px 18px 0 rgba(44,53,57,0.14);
}
.mobile-menu-toggle {
  display: none;
}

/* --- HERO SECTIONS --- */
.hero-section, .about-hero, .shop-intro, .inspirations-hero, .collections-intro, .thank-you-section {
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 28px 0 rgba(224,193,149,0.08);
  margin-bottom: 48px;
}
.hero-section .content-wrapper, .about-hero .content-wrapper {
  gap: 12px;
  align-items: flex-start;
}
.hero-section .cta-primary {
  margin-top: 12px;
}

/* --- FEATURES GRID --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 10px 0 10px 0;
}
.features-grid > div {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 12px 0 rgba(44,53,57,0.04);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 170px;
  transition: box-shadow .17s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(44,53,57,0.07);
}
.features-grid img {
  width: 36px; height: 36px; margin-bottom: 10px;
}
.features-grid h3 {
  font-size: 1.13rem; margin-bottom: 6px;
}

/* --- COLLECTIONS PREVIEW --- */
.collections-preview {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.collections-preview > div {
  background: #FFF;
  border-radius: 12px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 7px 0 rgba(44,53,57,0.03);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  min-width: 170px;
}

/* Secondary Button */
.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  color: #2C3539;
  border: 2px solid #E0C195;
  border-radius: 19px;
  background: transparent;
  transition: background .18s, color .15s;
  margin-top: 18px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #E0C195;
  color: #2C3539;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #F4F1EB;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(44,53,57,0.03);
}
.testimonials h2 {
  margin-bottom: 30px;
}
.testimonial-card p {
  font-family: "Montserrat", Arial, sans-serif;
  color: #2C3539;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: .98rem;
  color: #6B6F73;
  margin-left: 18px;
}
.testimonial-card strong { color: #2C3539; }

/* --- BLOG & POSTS --- */
.recent-posts > .content-wrapper > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(44,53,57,0.03);
  padding: 24px 18px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recent-posts h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.recent-posts a {
  margin-top: 6px;
  color: #E0C195;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: underline;
}
.recent-posts a:hover { color: #2C3539; }

/* --- TEAM SECTION --- */
.team-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.team-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(44,53,57,0.03);
  padding: 22px 18px 18px 18px;
  flex: 1 1 180px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  box-shadow: 0 -4px 26px 0 rgba(44,53,57,0.05);
  padding: 44px 0 12px 0;
  font-size: 0.98rem;
  color: #2C3539;
}
.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #2C3539;
  font-weight: 500;
  background: none;
  border-radius: 10px;
  padding: 3px 7px;
  transition: background .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E0C195;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 10px;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2C3539;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 21px;
  opacity: 0.82;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
  font-size: 0.97rem;
}
.footer-brand img {
  width: 39px; height: 39px;
}

/* --- FORMS and CONTACT --- */
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-form-fields p {
  margin-bottom: 0;
}
.contact-form-fields .cta-primary {
  margin-top: 18px;
  align-self: flex-start;
}

/* --- CTA PRIMARY BUTTON --- */
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 24px;
  color: #fff;
  background: #2C3539;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(44,53,57,0.09);
  transition: background .22s, color .15s, box-shadow .14s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E0C195;
  color: #2C3539;
  box-shadow: 0 4px 24px 0 rgba(214,188,145,0.13);
}

/* --- RESPONSIVE FLEXBOX --- */
@media (max-width: 1024px) {
  .container {max-width: 98vw;}
  .features-grid, .collections-preview, .team-list, .footer-contact {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #2C3539;
    background: none;
    border: none;
    height: 48px;
    width: 48px;
    border-radius: 11px;
    cursor: pointer;
    transition: background .16s, color .16s;
    z-index: 111;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #E0C195;
    color: #2C3539;
  }
  .container {
    padding: 0 6px;
  }
  .section, section {
    padding: 18px 2vw;
    margin-bottom: 27px;
  }
  .hero-section, .about-hero, .shop-intro, .inspirations-hero, .collections-intro, .thank-you-section {
    border-radius: 0 0 14px 14px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px 0 rgba(224,193,149,0.10);
  }
  .features-grid, .collections-preview, .team-list {
    flex-direction: column;
    gap: 13px;
  }
  .footer-contact { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 5px; }
}

@media (max-width: 540px) {
  .container { padding: 0 2px; }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 120;
  transform: translateX(-105vw);
  transition: transform 0.31s cubic-bezier(.5,.02,.31,1), box-shadow 0.13s;
  box-shadow: 4px 0 26px 0 rgba(44,53,57,0.07);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 20px 0 100px 0 rgba(44,53,57,0.14);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  margin: 19px 21px 12px 0;
  color: #2C3539;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 9px;
  transition: background .17s;
  z-index: 123;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E0C195;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 38px 0 0 0;
  padding-left: 27px;
  padding-right: 27px;
  width: 95vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #2C3539;
  padding: 13px 0;
  border-radius: 10px;
  transition: background .15s, color .13s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E0C195;
  color: #2C3539;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 24px 0 rgba(44,53,57,0.08);
  border-top: 2px solid #E0C195;
  padding: 18px 18px 12px 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.25s, opacity 0.25s;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: #2C3539;
  font-size: 1.04rem;
  margin: 0 0 7px 0;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  min-width: 90px;
  padding: 9px 22px;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  transition: background .16s, color .14s;
}
.cookie-btn.accept {
  background: #2C3539;
  color: #fff;
  font-weight: 600;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E0C195;
  color: #2C3539;
}
.cookie-btn.reject {
  background: #F4F1EB;
  color: #2C3539;
  border: 1px solid #dfd1b7;
  font-weight: 500;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E0C195;
  color: #2C3539;
}
.cookie-btn.settings {
  background: #fff;
  color: #2C3539;
  border: 1px solid #e0c195;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E0C195;
  color: #2C3539;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,53,57,0.38);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px 28px 28px;
  max-width: 410px;
  width: 97vw;
  box-shadow: 0 8px 44px 0 rgba(224,193,149,0.17);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin: 4px 0 9px 0;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #2C3539;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
}
.cookie-category input[disabled] {
  cursor: not-allowed;
  opacity: 0.77;
}
.cookie-modal-close {
  position: absolute;
  top: 8px; right: 7px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #2C3539;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 7px;
  transition: background .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E0C195;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 90px;
}

/* --- ACCESSIBILITY & MISC --- */
:focus {
  outline: 2px solid #E0C195;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #8e949a; opacity: 1; }
::-moz-placeholder { color: #8e949a; opacity: 1; }
:-ms-input-placeholder { color: #8e949a; opacity: 1; }
::placeholder { color: #8e949a; opacity: 1; }

/* --- SPECIAL FLEX CLASSES --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.featured-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- FAQ Section --- */
.faq-section ul, .privacy-policy-section ul, .blog-categories ul, .product-categories ul,
.usps-section ul, .collection-details ul, .materials-section ul, .brand-values ul, .contact-info ul, .inspiration-tips ul, .trends-section ul {
  margin: 0 0 10px 0;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq-section li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 1px;
}

/* --- Shop USP Icons --- */
.usps-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 2px;
}
.usps-section ul img {
  width: 28px; height: 28px;
  margin-right: 0;
}

/* --- MODAL ANIMATION --- */
@keyframes cookie-modal-appear {
  from { opacity: 0; transform: translateY(60px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-content { animation: cookie-modal-appear 0.24s; }

/* --- GENERAL UTILITIES --- */
.d-none {
  display: none !important;
}

/* --- END OF CSS --- */
