/* --------------------------------------------------------
   CSS RESET & NORMALIZATION
---------------------------------------------------------*/
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;
}
body {
  line-height: 1.55;
  background: #F9F7F6;
  color: #424141;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #673C66;
}

/* --------------------------------------------------------
   SOFT PASTEL PALETTE & VARS
---------------------------------------------------------*/
:root {
  --color-primary: #673C66;
  --color-secondary: #F9F7F6;
  --color-accent: #D49593;
  --color-accent-hover: #A45654;
  --color-bg-card: #FFFFFF;
  --color-pastel-1: #FFF3F7;
  --color-pastel-2: #EDE6F0;
  --color-pastel-3: #FEF8ED;
  --color-pastel-4: #EAF2F3;
  --color-shadow: 0 2px 16px rgba(143, 98, 144, 0.11);
  --color-divider: #e6e0e8;
}

/* --------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------*/
h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #A45654;
  font-size: 1.2rem;
  margin-bottom: 24px;
}
p, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
  color: #673C66;
}
blockquote {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #333047;
  margin-bottom: 8px;
}
cite {
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  color: #A45654;
  margin-top: 4px;
}
/* Links */
a {
  color: var(--color-primary);
  transition: color 0.18s cubic-bezier(.34,1.56,.64,1);
}
a:hover, a:focus {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* Typography scale for cards & info */
.price {
  color: #A45654;
  font-weight: 600;
}

/* --------------------------------------------------------
   CONTAINER & FLEX LAYOUTS (NO GRID)
---------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  padding: 28px 22px;
  transition: box-shadow 0.25s cubic-bezier(.34,1.56,.64,1);
}
.card:hover, .card:focus {
  box-shadow: 0 4px 24px rgba(143, 98, 144, 0.14);
}
.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;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-pastel-2);
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(103,60,102,0.10);
  color: #22203a;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Additional Cards */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product-card {
  background: var(--color-pastel-1);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(193,167,201,0.09);
  flex: 1 1 320px;
  min-width: 260px;
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s cubic-bezier(.34,1.56,.64,1);
}
.product-card:hover {
  box-shadow: 0 6px 28px rgba(103,60,102,0.13);
}

.icons, .info-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.info-text {
  background: var(--color-pastel-3);
  border-radius: 14px;
  padding: 18px;
  margin: 18px 0 0 0;
  color: #644861;
}

/* ---------------------------------------------
   MAIN STRUCTURE: HEADER, NAV, FOOTER
----------------------------------------------*/
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 2px 10px rgba(103,60,102,0.08);
  z-index: 11;
  position: relative;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  gap: 0;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav img {
  height: 38px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #673C66;
  padding: 8px 6px;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
}
header nav a.cta-primary {
  color: #fff;
  background: linear-gradient(90deg, #D49593 40%, #EDE6F0 100%);
  font-weight: 600;
  border-radius: 24px;
  padding: 11px 20px;
  margin-left: 10px;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  box-shadow: 0 2px 10px rgba(212,149,147,0.09);
  letter-spacing: 0.3px;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: var(--color-accent-hover);
  color: #fff;
}
header nav a:hover,
header nav a:focus {
  background: #F9F7F6;
  color: #A45654;
}

/* Mobile burger button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 13px;
  padding: 7px 16px;
  box-shadow: 0 2px 10px rgba(212, 149, 147, 0.17);
  cursor: pointer;
  border: none;
  margin-right: 10px;
  z-index: 26;
  transition: background 0.14s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent-hover);
}
@media (max-width: 1100px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 6px;
    font-size: 0.97rem;
  }
  header .container {
    padding: 0 5px;
  }
}
@media (max-width: 700px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* -------------------------------
   MOBILE MENU OVERLAY
--------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--color-bg-card);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  box-shadow: 0 6px 28px 0 rgba(103,60,102,0.21);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.81,.04,.22,.99);
  will-change: transform;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px;
  font-size: 2rem;
  padding: 6px 10px;
  margin: 18px 16px 0 0;
  cursor: pointer;
  border: none;
  z-index: 100003;
  transition: background 0.18s;
}
.mobile-menu .mobile-menu-close:hover {
  background: var(--color-accent-hover);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  padding: 18px 24px;
  margin-top: 18px;
}
.mobile-menu nav.mobile-nav a {
  display: block;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: var(--color-primary);
  padding: 17px 0;
  border-bottom: 1px solid var(--color-divider);
  transition: background 0.14s, color 0.17s;
  border-radius: 8px;
}
.mobile-menu nav.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-menu nav.mobile-nav a:hover,
.mobile-menu nav.mobile-nav a:focus {
  background: var(--color-pastel-2);
  color: var(--color-accent-hover);
}

/* Ensure full width & overlay */
@media (min-width: 701px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------------------------------------------
   HERO & SECTION STYLES (SOFT PASTEL)
----------------------------------------------*/
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(121deg, var(--color-pastel-3) 0%, var(--color-pastel-1) 100%);
  min-height: 310px;
  border-radius: 0 0 38px 38px;
  margin-bottom: 42px;
  box-shadow: 0 4px 20px rgba(103,60,102,0.07);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  height: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  width: 100%;
  max-width: 540px;
}
.hero h1 {
  color: var(--color-primary);
}
.hero .cta-primary {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 190px;
    padding: 36px 0 26px 0;
    border-radius: 0 0 22px 22px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    padding: 0;
  }
}

/* -------------------------------------
   BUTTONS & CTAs
--------------------------------------*/
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, var(--color-accent) 0%, #EDE6F0 100%);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 32px;
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  box-shadow: 0 2px 12px rgba(212,149,147,0.085);
  cursor: pointer;
  margin: 0 3px;
  margin-bottom: 6px;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s, transform 0.10s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 8px 22px 0 rgba(212,149,147,0.19);
  transform: translateY(-3px) scale(1.02);
  text-decoration: none;
}
button.cta-primary {
  font-size: 1rem;
  margin: 0;
  outline: none;
  border: none;
}

/* Generic secondary/outline buttons */
.button-outline, .cta-outline {
  display: inline-block;
  border: 2px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  border-radius: 22px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.button-outline:hover, .cta-outline:hover,
.button-outline:focus, .cta-outline:focus {
  background: var(--color-accent);
  color: #fff;
}

/* -------------------------------------
   INPUTS & SEARCH BARS
--------------------------------------*/
.search-bar {
  display: block;
  width: 100%;
  max-width: 375px;
  border-radius: 18px;
  padding: 12px 18px;
  background: #fff;
  border: 1.4px solid var(--color-pastel-2);
  box-shadow: 0 1px 6px rgba(193,167,201,0.08);
  font-size: 1.09rem;
  color: var(--color-primary);
  margin-top: 10px;
  margin-bottom: 2px;
  transition: border 0.17s, box-shadow 0.14s;
}
.search-bar:focus {
  border-color: var(--color-accent);
  box-shadow: 0 2px 14px rgba(212,149,147,0.13);
}

/* ----------------------------------------
   FOOTER
-----------------------------------------*/
footer {
  width: 100%;
  background: var(--color-secondary);
  border-top: 1.5px solid #F2ECF8;
  box-shadow: 0 -2px 14px rgba(103,60,102,0.07);
  font-size: 0.98rem;
  margin-top: 34px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 16px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 14px;
  width: 100%;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.contact-info {
  font-size: 0.97rem;
  color: #644861;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
@media (max-width: 980px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  footer nav {
    justify-content: flex-start;
  }
  .footer-links {
    flex-direction: column;
    gap: 4px;
  }
}

/* ------------------------------------------
   MODALS & OVERLAYS
-------------------------------------------*/
.modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(103, 60, 102, 0.17);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  position: fixed;
  z-index: 10002;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: var(--color-bg-card);
  border-radius: 20px;
  box-shadow: 0 12px 42px 0 rgba(103,60,102,0.23);
  padding: 32px 26px 28px 26px;
  min-width: 310px;
  max-width: 94vw;
  max-height: 92vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  animation: popInModal 0.3s cubic-bezier(.83,-0.07,.15,1.21) both;
}
.modal-content.active {
  opacity: 1;
  pointer-events: auto;
}
@keyframes popInModal {
  0% {opacity: 0; transform: translate(-50%, -56%) scale(0.97);}
  100% {opacity: 1; transform: translate(-50%, -50%) scale(1);}
}

.modal-close-btn {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  font-size: 1.18rem;
  padding: 6px 11px;
  border: none;
  cursor: pointer;
  transition: background 0.14s;
}
.modal-close-btn:hover {
  background: var(--color-accent-hover);
}

/* ----------------------------------------------
   COOKIE CONSENT BANNER (FIXED BOTTOM BANNER)
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10050;
  background: #FFF3F7;
  box-shadow: 0 -2px 14px rgba(103,60,102,0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  font-size: 1rem;
  border-top: 2px solid #f3e8f3;
  animation: cookie_slide_up 0.52s cubic-bezier(.52,1.5,.48,1) both;
}
@keyframes cookie_slide_up {
  0% {transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner__text {
  flex: 1 1 340px;
  color: #673C66;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner__btns .cookie-btn {
  border-radius: 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 10px 20px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(212,149,147,0.14);
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--color-accent-hover);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-btn.reject:hover {
  color: #fff;
  background: var(--color-accent-hover);
}
.cookie-btn.settings {
  background: #fff;
  color: #673C66;
  border: 2px solid #EDE6F0;
}
.cookie-btn.settings:hover {
  background: var(--color-pastel-2);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 16px 10px 14px 10px;
  }
  .cookie-banner__btns {
    width: 100%;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  background: var(--color-bg-card);
  box-shadow: 0 8px 28px 0 rgba(168,119,166,0.15);
  border-radius: 20px;
  padding: 30px 24px 20px 24px;
  max-width: 420px;
  width: 95vw;
  position: fixed;
  left: 50%; top: 48%;
  transform: translate(-50%, -48%) scale(1);
  z-index: 10052;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s, transform 0.21s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #673C66;
  margin-bottom: 15px;
}
.cookie-modal__section {
  margin-bottom: 20px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 1rem;
}
.cookie-modal__toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #EDE6F0;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal__toggle:checked {
  background: var(--color-accent);
}
.cookie-modal__toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(103,60,102,0.07);
  transition: left 0.16s  cubic-bezier(.65,0,.85,1), background 0.15s;
}
.cookie-modal__toggle:checked:before {
  left: 18px;
  background: #fff;
}
.cookie-modal__desc {
  font-size: 0.98rem;
  color: #78678A;
  margin-bottom: 8px;
}
.cookie-modal__buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal__buttons .cta-primary, .cookie-modal__buttons .cookie-btn {
  min-width: 84px;
  font-size: 1rem;
}

/* -----------------------------------------
   UTILS, SPACING, MISC
------------------------------------------*/
.mt-0 { margin-top: 0 !important; } .mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; } .mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; } .mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; } .mb-3 { margin-bottom: 24px !important; }
.mt-4 { margin-top: 32px !important; } .mb-4 { margin-bottom: 32px !important; }
.gap-1  { gap: 8px !important; } .gap-2  { gap: 16px !important; }
.gap-3  { gap: 24px !important; }

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
-------------------------------------------*/
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; }
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.07rem; }
  .card, .product-card {
    min-width: 92vw;
    padding: 18px 10px;
  }
  .product-cards { gap: 12px; }
}
@media (max-width: 550px) {
  .card, .product-card { padding: 14px 4px 16px 4px; }
  .content-wrapper { gap: 10px; }
}

/* ------------------------------------------
   LEGAL/INFO TEXT, MISC
-------------------------------------------*/
.legal-text, .info-text, .directions-text, .public-transport-info {
  color: #644861;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.address-map {
  background: var(--color-pastel-4);
  border-radius: 14px;
  padding: 12px 14px;
  color: #5f4a65;
  font-size: 1rem;
}
.brand-mission {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.10rem;
  color: #A45654;
  background: #F3E9F6;
  border-radius: 15px;
  padding: 16px 18px;
  margin-top: 16px;
}

/* ------------------------------------------
   THANK-YOU PAGE (SPECIAL NAV)
-------------------------------------------*/
.thank-you-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #A45654;
  justify-content: flex-start;
}

/* ------------------------------------------
   ANIMATIONS/Micro-interactions
-------------------------------------------*/
.card, .product-card, .testimonial-card, .cta-primary, .button-outline {
  transition: box-shadow 0.19s, transform 0.13s, background 0.14s, color 0.14s;
}
.card:hover, .product-card:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 29px 0 rgba(168,119,166,0.13);
}
.cta-primary:focus, .button-outline:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 1px;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
}`
}