/* 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, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #3A2311;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #A87534;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f2b30e;
  text-decoration: underline;
}
ul,ol {
  padding-left: 24px;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
}

/* BRAND FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* COLOR VARIABLES + FALLBACKS */
:root {
  --color-primary: #3A2311;
  --color-secondary: #A87534;
  --color-accent: #F6F3ED;
  --color-light: #fff;
  --color-warning: #f2b30e;
  --color-cyan: #52cef7;
  --color-pink: #fa4a89;
  --radius-btn: 32px;
  --radius-card: 20px;
  --shadow-card: 0 8px 24px 0 rgba(168,117,52,0.08), 0 2px 4px 0 rgba(58,35,17,0.05);
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER/NAVIGATION */
header {
  background: var(--color-accent);
  box-shadow: 0 4px 12px rgba(58,35,17,0.06);
  z-index: 10;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 16px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}
.logo:hover img {
  transform: rotate(-8deg) scale(1.06);
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  padding: 6px 4px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fae5c3;
  color: #A87534;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #fa4a89 8%, #f2b30e 90%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: var(--radius-btn);
  border: none;
  box-shadow: 0 4px 16px rgba(250,74,137,.09);
  cursor: pointer;
  transition: transform 0.16s, box-shadow 0.16s, background 0.2s;
  margin-left: 12px;
  text-shadow: 0 2px 16px rgba(168,117,52,.11);
}
.btn-primary:hover, .btn-primary:focus {
  transform: scale(1.06) translateY(-2px) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(250,74,137,.13);
  background:linear-gradient(90deg, #f2b30e 7%, #fa4a89 90%);
  color:#fff;
}
.btn-link {
  display: inline-block;
  color: var(--color-pink);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.18s;
}
.btn-link:hover, .btn-link:focus {
  color: var(--color-cyan);
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid #fa4a89;
  border-radius: 12px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fa4a89;
  cursor: pointer;
  margin-left: 20px;
  transition: box-shadow 0.13s, border 0.13s;
  z-index: 104;
}
.mobile-menu-toggle:hover {
  border: 2px solid #f2b30e;
  box-shadow: 0 2px 12px rgba(250,186,14,0.18);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 253, 245, 0.97);
  transition: transform .33s cubic-bezier(.4,1.52,.1,1), opacity .2s;
  transform: translateX(-100vw);
  opacity: 0;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 32px 24px 32px;
  gap: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fa4a89;
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 30px;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #f2b30e;
  transform: scale(1.22) rotate(-8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #3A2311;
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 4px;
  border-radius: 11px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fae5c3;
  color: #fa4a89;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(90deg, #fae5c3 0, var(--color-accent) 100%);
  padding-top: 56px;
  padding-bottom: 32px;
  margin-bottom: 0px;
  border-bottom: 8px solid #f2b30e;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 0.015em;
  margin-bottom: 14px;
  color: #fa4a89;
  text-shadow: 0 4px 32px #ffc5d8b9;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #3A2311;
}

/* FLEX LAYOUTS - SECTION CARD/GRID */
.features {
  background: #fffceb;
  border-radius: 0 0 28px 28px;
  margin-bottom: 40px;
}
.features .feature-grid {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 18px;
}
.features .feature-grid > div {
  background: #ffe5ec;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 28px 30px 22px 30px;
  transition: box-shadow 0.2s, transform 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 340px;
  gap: 13px;
  position: relative;
  margin-bottom: 20px;
  margin-right: 0px;
}
.features .feature-grid > div:hover {
  box-shadow: 0 10px 36px rgba(250,74,137,0.12);
  transform: translateY(-5px) scale(1.028) rotate(-1deg);
}
.features .feature-grid img {
  width: 46px;
  margin-bottom: 10px;
}
.features h2 {
  color: #fa4a89;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.features h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #A87534;
}
.features p {
  font-size: 1rem;
  color: #3A2311;
}

/* CARDS AND FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  z-index:1;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 42px rgba(58, 35, 17, 0.11);
  transform: scale(1.03);
}
.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;
}

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container > *, .content-grid > *, .text-image-section > * {
  margin-bottom: 0;
}
.about-preview,
.products-overview,
.about-section,
.history,
.team,
.why-choose-us,
.category-overview,
.brewing-tips,
.accessory-overview,
.usage-tips,
.posts-overview,
.featured-post,
.signup,
.contact-info,
.contact-form-info,
.map,
.legal,
.thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* PRODUCT/TEAM ROWS */
.product-row, .team-list, .comparison-grid, .featured-items, .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.product-row > div,
.team-list > div,
.comparison-grid > div,
.featured-items > div,
.blog-grid > div {
  background: #fafbfa;
  border-radius: 17px;
  box-shadow: 0 4px 16px rgba(168,117,52,.04);
  padding: 22px 24px;
  min-width: 210px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position:relative;
  transition: box-shadow 0.18s, transform 0.09s;
  z-index: 1;
}
.product-row > div:hover,
.team-list > div:hover,
.comparison-grid > div:hover,
.featured-items > div:hover,
.blog-grid > div:hover {
  box-shadow: 0 8px 32px rgba(250,74,137,0.12);
  transform: translateY(-3px) scale(1.025) rotate(-1deg);
}

/* TESTIMONIALS */
.testimonials {
  background: #fae5c3;
  border-radius: 30px;
  margin-top: 28px;
}
.testimonials h2 {
  color: #fa4a89;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 23px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px 32px 24px 32px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  min-width: 260px;
  flex: 1 1 380px;
  font-size: 1.09rem;
  color: #3A2311;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  color: #3A2311;
  font-size: 1.12rem;
  margin-bottom: 8px;
  font-style: italic;
}
.star-rating {
  display: flex;
  gap: 3px;
}
.star-rating img {
  width: 23px;
  height: 23px;
  filter: drop-shadow(0 2px 9px #fa4a8965);
}
.testimonial-card span {
  color: #A87534;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, #f2b30e 0, #fa4a89 100%);
  color: #fff;
  border-radius: 30px;
  text-align: center;
  margin-top: 52px;
  box-shadow: 0 5px 26px 4px rgba(250,74,137,0.13);
}
.cta .container {
  justify-content: center;
  align-items: center;
}
.cta h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.18rem;
  color: #fffdf5;
}
.cta .btn-primary {
  background: #fff;
  color: #fa4a89;
  box-shadow: 0 4px 22px rgba(168,117,52,.11);
  margin-top: 22px;
}
.cta .btn-primary:hover {
  background: #fffde5;
  color: #f2b30e;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: 38px;
  padding-bottom: 14px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo-contact {
  display: flex;
  align-items: center;
  gap: 26px;
}
.footer-logo-contact img {
  width: 48px;
  height: auto;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact span {
  color: #FFC758;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-contact span img {
  width: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 170px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 2px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fa4a89;
  color: #fffceb;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  transition: transform 0.18s, filter 0.18s;
  filter: grayscale(0.2);
}
.footer-social a:hover img {
  transform: scale(1.18) rotate(-11deg);
  filter: grayscale(0) drop-shadow(0 2px 8px #fa4a89bb);
}
.copyright {
  text-align: center;
  font-size: 0.98rem;
  color: #fae5c3;
  margin-top: 24px;
  letter-spacing: 0.01em;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #3A2311;
  line-height: 1.22;
  margin-bottom: 11px;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2.05rem; }
h3 { font-size: 1.33rem; }
h4 { font-size: 1.07rem; }

/* SUBTLE ANIMATIONS */
section, .card, .testimonial-card, .team-list > div, .blog-grid > div {
  animation: fadeInUp 0.6s both;
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(32px) scale(0.96); }
  to { opacity:1; transform: none; }
}

/* COOKIES BANNER */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: linear-gradient(90deg,#fa4a89 0%,#f2b30e 100%);
  color: #fff;
  padding: 21px 18px 20px 18px;
  box-shadow: 0 -2px 14px 0 rgba(168,117,52,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1.07rem;
  border-radius: 18px 18px 0 0;
  animation: fadeInUp 0.7s both;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
#cookie-banner .cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 26px;
  padding: 11px 26px;
  margin: 0 3px;
  font-size: 1rem;
  transition: background 0.17s, color 0.17s, transform 0.17s;
  cursor: pointer;
}
#cookie-banner .cookie-btns .accept {
  background: #fa4a89;
  color: #fff;
}
#cookie-banner .cookie-btns .accept:hover {
  background: #f2b30e;
  color: #fff;
  transform: scale(1.08);
}
#cookie-banner .cookie-btns .reject {
  background: #fff;
  color: #fa4a89;
  border: 2px solid #fa4a89;
}
#cookie-banner .cookie-btns .reject:hover {
  background: #fae5c3;
  color: #f2b30e;
}
#cookie-banner .cookie-btns .settings {
  background: #fff;
  color: #f2b30e;
  border: 2px solid #f2b30e;
}
#cookie-banner .cookie-btns .settings:hover {
  background: #f2b30e;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 1250;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.16);
  align-items: center;
  justify-content: center;
}
#cookie-modal.open { display: flex; }
.cookie-modal-content {
  background: #fffceb;
  color: #3A2311;
  max-width: 360px;
  width: 96%;
  border-radius: 28px;
  box-shadow: 0 8px 44px #fa4a8932;
  padding: 38px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  animation: fadeInUp 0.5s both;
}
.cookie-modal-content h3 {
  color: #fa4a89;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 23px; height: 23px;
  accent-color: #fa4a89;
  margin-right: 2px;
}
.cookie-category label {
  font-weight: 700;
  color: #f2b30e;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category.essential label {
  color: #3A2311;
}
.cookie-modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-modal-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 26px;
  border: none;
  padding: 10px 25px;
  background: #fa4a89;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  transition: background .15s, color .15s, transform .15s;
  cursor: pointer;
}
.cookie-modal-btns button.cancel {
  background: #fff;
  color: #fa4a89;
  border: 2px solid #fa4a89;
}
.cookie-modal-btns button.cancel:hover {
  background: #fae5c3;
  color: #A87534;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 18px;
  background: none;
  font-size: 1.7rem;
  color: #fa4a89;
  border: none;
  cursor: pointer;
  transition: color .12s, transform .12s;
}
.cookie-modal-close:hover {
  color:#A87534;
  transform: scale(1.18);
}

/* LISTS/OL/UL */
ul {
  list-style: disc;
  margin-top: 10px;
  margin-bottom: 14px;
}
ol {
  margin: 10px 0 14px 0;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* DETAILS/SUMMARY */
details {
  border: 1.5px dashed #fa4a89;
  border-radius: 8px;
  background: #fffceb;
  padding: 12px 14px;
  margin-bottom: 12px;
}
details summary {
  font-weight: bold;
  color: #A87534;
  cursor: pointer;
}
details[open] summary {
  color: #fa4a89;
}

/* FORM CTA/NEWSLETTER SIGNUP */
.newsletter-signup-info {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #A87534;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 15px;
}
.newsletter-signup-info img {
  width: 32px;
  height: 32px;
}

input, textarea, select {
  border-radius: 11px;
  border: 2px solid #fa4a89;
  padding: 12px 14px;
  margin-bottom: 7px;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border-color: #f2b30e;
  box-shadow: 0 2px 15px rgba(250,186,14,0.12);
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
th, td {
  border: 1.5px solid #fae5c3;
  padding: 11px 14px;
}
th {
  background: #fae5c3;
  color: #fa4a89;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* MISCELLANEOUS & MICRO-INTERACTIONS */
::-webkit-scrollbar {
  width: 12px;
  background: #fff7e6;
}
::-webkit-scrollbar-thumb {
  background: #fae5c3;
  border-radius: 13px;
  border: 4px solid #fff7e6;
}
::-webkit-scrollbar-thumb:hover {
  background: #fa4a89;
}

.mark {
  background: #fae5c3;
  color: #fa4a89;
  border-radius: 3px;
  padding: 0 4px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  .features .feature-grid {
    gap: 19px;
  }
  .footer-logo-contact, .footer-nav {
    min-width: 120px;
  }
  .footer-nav {
    gap: 3px;
  }
}
@media (max-width: 900px) {
  .footer-logo-contact {
    flex-direction: column;
    gap: 8px;
  }
  .footer-social {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 6px;
  }
  .product-row,
  .team-list,
  .comparison-grid,
  .featured-items,
  .blog-grid,
  .testimonial-slider,
  .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .footer-social {
    gap: 9px;
  }
  .footer-nav {
    min-width: 112px;
    font-size: 0.95rem;
  }
  .section, .about-preview, .products-overview,
  .about-section, .history, .team, .why-choose-us,
  .category-overview, .brewing-tips, .accessory-overview,
  .usage-tips, .posts-overview, .featured-post,
  .signup, .contact-info, .contact-form-info, .map, .legal, .thankyou {
    margin-bottom: 40px;
    padding: 30px 8px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .footer-logo-contact img {
    width: 40px;
  }
}
@media (max-width: 550px) {
  html { font-size: 14px; }
  .footer-logo-contact {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 13px;
  }
  .footer-nav {
    min-width: 98px;
    font-size: 0.93rem;
    gap: 2px;
  }
  .hero h1 { font-size: 1.4rem; }
  .cta h2 { font-size: 1.23rem; }
}

/* ACCESSIBILITY & FOCUS */
a, button, .btn-primary, input, textarea, select {
  outline: none;
}
a:focus, button:focus, .btn-primary:focus, input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 2px #fa4a89, 0 4px 12px rgba(250,74,137,0.18);
  outline: none;
}

/* VISUAL EFFECTS FOR PLAYFUL DYNAMIC STYLE */
.features .feature-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  right: -30px;
  top: 7px;
  width: 23px; height: 23px;
  background: #fa4a89;
  opacity: 0.12;
  border-radius: 50%;
  box-shadow: 0 0 14px 4px #fa4a89;
  z-index: 0;
}
.features .feature-grid > div:nth-child(2):before {
  background: #f2b30e;
}
.features .feature-grid > div:nth-child(3):before {
  background: #52cef7;
}
.testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  top: -24px; right: -24px;
  width: 34px; height: 34px;
  background: #fa4a89;
  opacity: 0.09;
  border-radius: 50%;
  z-index: 0;
}
.blog-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  left: -14px;
  top: -10px;
  width: 20px;
  height: 20px;
  background: #52cef7;
  opacity: 0.12;
  border-radius: 50%;
}

/* PLAYFUL FONT MIXING */
h2, h3, .btn-primary, .main-nav a, .footer-nav a, .mobile-nav a, .btn-link {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.hero h1, .cta h2, .features h2, .features h3 {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
}

/* ENSURE FLEXBOX FOR REQUIRED SELECTORS */
.card-container,
.content-grid,
.text-image-section,
.testimonial-card,
.feature-item,
.product-row,
.team-list,
.comparison-grid,
.featured-items,
.blog-grid,
.footer-logo-contact,
.footer-nav {
  display: flex;
}
.card-container,
.content-grid,
.product-row,
.team-list,
.comparison-grid,
.featured-items,
.blog-grid,
.testimonial-slider {
  flex-wrap: wrap;
  gap: 20px;
}
.text-image-section,
.testimonial-card,
.feature-item {
  gap: 15px;
}
.text-image-section,
.testimonial-card {
  align-items: center;
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
}
/* FAQ and contact lists */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-note {
  font-size: 0.94rem;
  background: #fffceb;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fa4a89;
}

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