/* CSS RESET & FONT IMPORTS */
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, menu, 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,
main, 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;
}

body {
  background: linear-gradient(135deg, #ffffff 0%, #f6f6f8 70%, #f5f7fa 100%);
  color: #23292f;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*:focus {
  outline: 2px solid #ffc857;
  outline-offset: 2px;
}

a {
  color: #23292f;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover,
a:focus {
  color: #ffc857;
}

ul, li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23292f;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 32px; margin-bottom: 20px; }
h2 { font-size: 24px; margin-bottom: 18px; }
h3 { font-size: 18px; margin-bottom: 12px; }

@media (min-width: 600px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}

/* GLOBAL CONTAINERS AND LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(35,41,47,0.06);
}
@media (max-width: 600px) {
  .section {
    padding: 32px 5px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-container, .feature-list, .collections-grid, .product-listing, .testimonials-list, .blog-post-grid, .team-list, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .card-container, .feature-list, .collections-grid, .product-listing, .testimonials-list, .blog-post-grid, .team-list, .product-grid {
    gap: 20px;
  }
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(35,41,47,0.08);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px rgba(35,41,47,0.14);
  transform: translateY(-2px) scale(1.015);
  z-index: 2;
}

.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; align-items: flex-start; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  background: #fffbe7;
  color: #23292f;
  border: 1px solid #ffe29f;
  border-radius: 18px;
  min-width: 230px;
  box-shadow: 0 2px 10px rgba(35,41,47,0.04);
  margin-bottom: 20px;
}
@media (min-width:600px) {
  .testimonials-list {
    flex-direction: row;
    gap: 24px;
  }
}
.testimonial-card strong {
  color: #ffc857;
  font-size: 15px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION */
header {
  background: linear-gradient(90deg, #ffffff 60%, #f5f7fa 100%);
  box-shadow: 0 2px 8px rgba(35,41,47,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-left: 20px;
}
@media (max-width: 900px) {
  header nav { gap: 16px; }
}
header img {
  max-height: 38px;
}

.cta-button {
  background: linear-gradient(90deg, #ffc857 40%, #f5db71 100%);
  color: #23292f;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,200,87,0.07);
  text-align: center;
  display: inline-block;
  margin-left: 16px;
  text-decoration: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #ffd740 60%, #ffc857 100%);
  color: #23292f;
  box-shadow: 0 4px 24px 0 rgba(255,200,87,0.14);
  outline: none;
}

@media (max-width: 900px) {
  .cta-button { font-size: 15px; padding: 10px 20px; margin-left: 10px; }
}
@media (max-width: 600px) {
  header nav,
  .cta-button {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  padding: 10px 12px;
  background: #ffc857;
  color: #23292f;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: #ffd740; }

@media (max-width: 600px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(125deg, #fffdfa 80%, #ffd569 100%);
  box-shadow: 0 6px 40px rgba(35,41,47,0.12);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.55, 0, 0.1, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 20px 0 20px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 28px;
  background: transparent;
  color: #23292f;
  border: none;
  margin-left: auto;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe298;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #23292f;
  padding: 14px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffd740;
  color: #23292f;
}

@media (min-width: 601px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(105deg, #fffbe7 25%, #f7faff 100%);
  border-radius: 0 0 32px 32px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 54px 0;
  margin-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
@media (max-width: 680px) {
  .hero {
    padding: 38px 0 32px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero .content-wrapper { text-align: left; padding: 0; }
}

/* FEATURES, CARDS, COLLECTIONS */
.feature-grid, .feature-list {
  flex-wrap: wrap;
  gap: 24px;
  display: flex;
  align-items: stretch;
}
.feature {
  background: #f9fafb;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(35,41,47,0.07);
  padding: 26px 22px 22px;
  min-width: 210px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.21s;
  gap: 8px;
}
.feature img {
  height: 38px;
  margin-bottom: 14px;
  filter: grayscale(10%) contrast(92%);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 28px rgba(255,200,87,0.17);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.collection-tile {
  background: #ffffff;
  border: 1px solid #ffe4aa;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(255,200,87,0.07);
  padding: 24px 20px;
  min-width: 200px;
  flex: 1 1 260px;
  transition: box-shadow 0.23s;
}
.collection-tile:hover, .collection-tile:focus-within {
  box-shadow: 0 10px 40px 0 rgba(255,200,87,0.18);
  z-index: 2;
}

/* PRODUCT GRID & SNIPPETS */
.product-listing, .product-grid {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.product-snippet {
  background: #fcfcfc;
  border-radius: 12px;
  border: 1px solid #f4e7c6;
  box-shadow: 0 2px 8px rgba(35,41,47,.07);
  padding: 24px 18px 22px;
  min-width: 200px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.15s;
}
.product-snippet:hover, .product-snippet:focus-within {
  box-shadow: 0 10px 36px 0 rgba(255,200,87,0.16);
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}


/* BLOG POSTS */
.blog-post-grid {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.blog-post {
  background: #fffbe7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255,200,87,0.06);
  padding: 26px 20px 21px;
  min-width: 200px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 18px;
}
.categories-filter a {
  border-radius: 8px;
  padding: 5px 12px;
  background: #ffe298;
  color: #23292f;
  font-size: 14px;
  transition: background .16s;
}
.categories-filter a:hover, .categories-filter a:focus { background: #ffd740; }

/* TEAM */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #f9fafb;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(35,41,47,0.07);
  padding: 20px 20px 0 20px;
  min-width: 180px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
}

/* MISC SECTIONS */
.cta-banner {
  background: linear-gradient(90deg, #fffbe7 60%, #ffe9b6 100%);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(255,200,87,0.05);
  padding: 32px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fbfbfb;
  border-radius: 10px;
  margin-top: 14px;
  padding: 14px 18px;
}
.map-placeholder img { height: 50px; }

/* FILTERS & SEARCH */
.filters-and-search {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  margin: 20px 0 0 0;
}
.filters h3 {
  font-size: 15px;
  margin-bottom: 7px;
}
.filters ul { display: flex; flex-direction: column; gap: 5px; }
.filters li {
  background: #f9fafb;
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 15px;
}
.search-bar {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.search-bar input[type="text"] {
  border: 1px solid #ffe29f;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 15px;
  width: 200px;
  transition: border-color 0.16s;
}
.search-bar input[type="text"]:focus {
  border-color: #ffc857;
}

/* TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  margin-bottom: 18px;
}
.text-section ul { padding-left: 23px; margin-top: 5px; }
.text-section ul li { list-style: disc; margin-bottom: 6px; color: #23292f; }

.mission-statement {
  background: #fcfbf7;
  border-left: 5px solid #ffe298;
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 17px;
  color: #23292f;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.company-info a { color: #ffc857; }
.contact-details ul { display: flex; flex-direction: column; gap: 10px; }
.contact-details li { display: flex; align-items: center; gap: 10px; color: #23292f; font-size: 17px; }
.contact-details img { height: 22px; opacity: .75; }

/**** THANK YOU PAGE ****/
.thank-you-message {
  background: #fffbe7;
  border: 1px solid #ffe298;
  border-radius: 14px;
  padding: 32px 24px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/**** FOOTER ****/
footer {
  margin-top: 44px;
  background: linear-gradient(95deg, #fffbe7 80%, #f4e7c6 100%);
  padding: 38px 0 28px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 30px 0 rgba(255,200,87,0.08);
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 14px;
}
.footer-nav a {
  color: #23292f;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 11px;
  border-radius: 7px;
  transition: background .16s;
}
.footer-nav a:hover, .footer-nav a:focus { background: #ffd740; color: #23292f; }
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #23292f;
}
.footer-contact img {
  height: 17px;
  opacity: .8;
}
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #858585;
  margin-top: 4px;
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 600px) {
  h1 { font-size: 25px; }
  h2 { font-size: 19px; }
  .container { padding: 0 5px; }
  .section { padding: 20px 2px; margin-bottom: 38px; }
  .content-wrapper { gap: 15px; }
  .hero { margin-bottom: 25px; }
  .feature, .product-snippet, .collection-tile, .team-member, .blog-post, .testimonial-card {
    min-width: 90vw;
    padding: 18px 8px !important;
  }
  .product-grid, .blog-post-grid, .testimonials-list, .collections-grid, .feature-list, .team-list {
    flex-direction: column;
    gap: 18px;
  }
  .cta-banner { padding: 14px 5px; }
  .footer-nav, .footer-contact { gap: 13px; }
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #23292f;
  color: #fff;
  font-size: 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px 18px 20px;
  box-shadow: 0 -2px 20px 0 rgba(35,41,47,0.12);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.33s, transform 0.33s;
  border-radius: 18px 18px 0 0;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(35px);
}
.cookie-banner-message {
  flex: 1 1 290px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 19px;
  border: none;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s;
}
.cookie-btn.accept {
  background: #ffc857;
  color: #23292f;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #ffd740; color: #23292f; }
.cookie-btn.reject {
  background: #fff;
  color: #23292f;
  border: 1px solid #ffc857;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #ffe298; }
.cookie-btn.settings {
  background: transparent;
  color: #ffc857;
  border: 1px solid #ffc857;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #ffc857; color: #23292f; }

@media (max-width:680px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    font-size: 15px;
    border-radius: 14px 14px 0 0;
    padding: 13px 4px 14px 8px;
  }
  .cookie-btn { padding: 7px 12px; font-size: 14px; }
}

/**** COOKIE MODAL POPUP ****/
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(35,41,47,0.70);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fffbe7;
  color: #23292f;
  max-width: 94vw;
  width: 370px;
  padding: 34px 30px 20px 30px;
  border-radius: 18px;
  box-shadow: 0 6px 36px rgba(35,41,47,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-title {
  font-size: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  color: #23292f;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 22px;
  background: transparent;
  color: #23292f;
  border: none;
  cursor: pointer;
  padding: 5px 13px;
  border-radius: 8px;
  transition: background .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #fff7cf; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #ffe4aa;
  font-size: 16px;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-weight: 600;
  color: #23292f;
}
.cookie-toggle {
  width: 46px;
  height: 22px;
  background: #eeeeee;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
  border: 1px solid #ffe298;
}
.cookie-toggle input { display: none; }
.cookie-toggle span {
  display: block;
  width: 19px;
  height: 19px;
  background: #ffc857;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.18s, background 0.17s;
  box-shadow: 0 1px 3px rgba(35,41,47,0.09);
}
.cookie-toggle input:checked + span {
  left: 25px;
  background: #ffd740;
}
.cookie-category .cookie-note {
  font-size: 13px;
  color: #a9a9a9;
  margin-left: 8px;
}

/**** BUTTONS, INPUTS ****/
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: 16px;
  color: #23292f;
}

/**** SPACING BETWEEN ALL CARDS/SECTIONS ****/
section, .section { margin-bottom: 60px; }
.card, .feature, .collection-tile, .team-member, .product-snippet, .blog-post, .testimonial-card {
  margin-bottom: 20px;
}

/**** MISC UTILS ****/
::-webkit-scrollbar {
  width: 8px;
  background: #fffbe7;
}
::-webkit-scrollbar-thumb {
  background: #ffe298;
  border-radius: 4px;
}

/* Prevent content overlapping on mobile */
@media (max-width: 600px) {
  .section, section { margin-bottom: 35px !important; }
  .footer-contact, .footer-nav, .container, .cookie-banner { padding-left: 2vw !important; padding-right: 2vw !important; }
  .content-wrapper { gap: 10px !important; }
}
