/* 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;
  box-sizing: border-box;
}

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

body {
  background: #F6F8FA;
  color: #2C2320;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #246C6F;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #E9B85B;
  outline: none;
}

ul, ol {
  margin: 16px 0 16px 20px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
  color: #246C6F;
}
hr {
  border: 0;
  height: 1px;
  background: #e0d2c2;
  margin: 24px 0;
}

/* FONT FACES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #2C2320;
  text-shadow: 1px 2px 0 #FFF5E6, 0px 6px 18px #e9b85b38;
  letter-spacing: 0.05em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #246C6F;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #E9B85B;
  background: #FFFAF0;
  display: inline-block;
  padding: 4px 20px 4px 12px;
  border-radius: 18px 36px 12px 36px;
  box-shadow: 2px 4px 0 #E9B85B25;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #794E14;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #246C6F;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* FLEXBOX SPACING & ALIGNMENT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px #E6C18D33;
  overflow: hidden;
  min-width: 220px;
}
.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: 16px 36px 16px 16px;
  box-shadow: 0 8px 24px #E9B85B22;
  margin-bottom: 24px;
  border-left: 8px solid #E9B85B;
  border-bottom: 2px dashed #246C6F22;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 260px;
  transition: box-shadow .22s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px #E9B85B55;
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 18px #d7e1e061;
  padding: 24px 20px 20px 20px;
  flex: 1 1 226px;
  min-width: 200px;
  margin-bottom: 20px;
  border: 2px solid #F6EBCF;
  transition: box-shadow .2s, border-color .2s;
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 7px;
  filter: sepia(22%) hue-rotate(-18deg) brightness(1.05);
}
.feature-item:hover {
  box-shadow: 0 8px 30px #E9B85B35;
  border-color: #E9B85B;
}
/* LAYOUTS for specific site sections */
.hero {
  background: #FFFAF0 url('../assets/vintage-pattern.png') repeat 0 0;
  border-bottom: 6px double #E9B85B;
  padding-bottom: 0;
}
.hero .content-wrapper {
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
}

.feature-grid, .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.product-list {
  justify-content: flex-start;
}

.product-card {
  background: #FFF;
  border-radius: 18px 24px 18px 18px;
  box-shadow: 0 4px 18px #E9B85B29;
  padding: 28px 18px 18px 18px;
  margin-bottom: 22px;
  flex: 1 1 220px;
  min-width: 196px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid #F6EBCF;
  transition: box-shadow .2s, border-color .2s;
}
.product-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.product-card h3 {
  font-size: 1.14rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #246C6F;
}
.product-card .product-price {
  font-size: 1.22rem;
  color: #9C5606;
  margin-top: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  background: #FFFAF0;
  padding: 4px 16px;
  border-radius: 14px 18px 12px 18px;
}
.product-card:hover {
  box-shadow: 0 9px 32px #E9B85B30;
  border-color: #E9B85B;
  transform: translateY(-2px) scale(1.01);
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-name {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.94rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #7A5D43;
}

.text-section {
  margin-top: 12px;
  margin-bottom: 16px;
  background: #FFF;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 2px 16px #E9B85B21;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}

/* SHOP CONTROLS */
.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 30px;
  align-items: center;
}
.filters span, .sort-options span {
  font-weight: bold;
  color: #246C6F;
  margin-right: 8px;
}
.filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  margin-left: 0;
}
.filters li {
  list-style: none;
  margin: 0;
}
.filters a {
  color: #9C5606;
  background: #FFFAF0;
  border-radius: 12px;
  padding: 5px 16px;
  font-size: 0.97rem;
  transition: background .18s, color .18s;
}
.filters a:hover {
  color: #246C6F;
  background: #E9B85B;
}
.sort-options select {
  background: #FFF5E6;
  border: 1px solid #E9B85B;
  border-radius: 9px;
  padding: 4px 10px;
  font-size: 0.98rem;
  color: #794E14;
  margin-left: 3px;
  outline: none;
  transition: border-color .16s;
}
.sort-options select:focus {
  border-color: #246C6F;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-block;
  background: #246C6F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 24px 38px 20px 36px;
  padding: 11px 34px;
  margin: 16px 0;
  border: 0;
  box-shadow: 0 7px 28px #246C6F1a, 0 2px 0 #E9B85B;
  text-shadow: 1.5px 2px 0 #E9B85B68;
  letter-spacing: 0.06em;
  transition: background .2s, color .2s, box-shadow .18s, transform .15s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  color: #246C6F;
  background: #E9B85B;
  box-shadow: 0 14px 34px #E9B85B44, 0 4px 0 #246C6F55;
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

/* HEADER */
header {
  background: #FFF8EC;
  border-bottom: 6px double #E9B85B;
  position: relative;
  z-index: 30;
  box-shadow: 0 2px 14px #E9B85B16;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 18px 16px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
}
.main-nav a {
  color: #246C6F;
  padding: 5px 12px;
  border-radius: 18px;
  background: transparent;
  transition: background .17s, color .18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #E9B85B;
  color: #794E14;
}
header img[alt="Kuchenne Inspiracje"] {
  width: 170px;
  margin-right: 18px;
  height: auto;
}

/* Responsive: NAV menu - HIDE/SHOW on mobile */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: #E9B85B;
  border: 0;
  color: #246C6F;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 28px;
  z-index: 56;
  box-shadow: 0 2px 8px #E9B85B26;
  transition: background .16s, color .16s, box-shadow .11s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #246C6F;
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 92vw;
  max-width: 355px;
  height: 100vh;
  background: #FFFAF0;
  box-shadow: -8px 0 32px #246C6F33;
  z-index: 1000;
  padding: 34px 24px 16px 24px;
  transition: transform 0.22s cubic-bezier(0.6,0.05,0.28,1.21), right 0.22s;
  transform: translateX(100%);
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #E9B85B;
  color: #246C6F;
  border: 0;
  border-radius: 30px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  box-shadow: 0 1px 8px #E9B85B18;
  transition: background .16s, color .16s;
  z-index: 1010;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #246C6F;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 44px;
}
.mobile-nav a {
  font-size: 1.18rem;
  background: #FFF8EC;
  padding: 12px 16px;
  border-radius: 14px;
  color: #246C6F;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #E9B85B;
  color: #794E14;
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    font-size: 1rem;
    padding: 10px 26px;
  }
}
@media (max-width: 600px) {
  .header .container {
    flex-direction: column;
    gap: 14px;
    padding: 12px 6px;
  }
  .main-nav, .cta-button {
    margin-top: 10px;
  }
}

/* FOOTER */
footer {
  background: #F6EBCF;
  color: #7A5D43;
  padding: 34px 0 20px 0;
  margin-top: 56px;
  box-shadow: 0 -2px 16px #E9B85B16;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 7px;
  font-weight: 600;
}
.footer-menu a {
  color: #794E14;
  transition: color .17s;
}
.footer-menu a:hover {
  color: #246C6F;
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 46px;
  height: auto;
  margin-right: 12px;
  margin-top: 3px;
}
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
}
.footer-info {
  font-size: 0.97rem;
  color: #9C5606;
  opacity: 0.8;
  margin-top: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* Responsive footer layout */
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 12px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/********* Cookie Consent Banner *********/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF; 
  color: #794E14;
  padding: 20px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  box-shadow: 0 -7px 24px #E9B85B30;
  border-top: 3px solid #E9B85B;
  z-index: 2500;
  font-size: 1.02rem;
  animation: cookie-slide-in .65s cubic-bezier(0.25,0.25,0.26,1.14);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%) }
  to { transform: translateY(0) }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-consent-banner button {
  padding: 8px 18px;
  border-radius: 15px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  transition: background .14s, color .14s, box-shadow .13s;
  box-shadow: 0 1px 8px #e9b85b1d;
}
.cookie-consent-banner .accept {
  background: #246C6F;
  color: #fff;
}
.cookie-consent-banner .accept:hover {
  background: #E9B85B;
  color: #2C2320;
}
.cookie-consent-banner .reject {
  background: #E9B85B;
  color: #794E14;
}
.cookie-consent-banner .reject:hover {
  background: #246C6F;
  color: #FFF;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: #246C6F;
  border: 1.5px dashed #E9B85B;
  box-shadow: none;
}
.cookie-consent-banner .settings:hover {
  background: #FFF8EC;
  color: #794E14;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(36, 108, 111, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: modal-fade-in .31s;
}
@keyframes modal-fade-in {
  from { opacity: 0 }
  to { opacity: 1 }
}
.cookie-modal-content {
  background: #FFF8EC;
  border-radius: 24px 14px 30px 18px;
  box-shadow: 0 12px 36px #E9B85B39;
  padding: 32px 26px 28px;
  min-width: 308px;
  max-width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  font-size: 1rem;
}
.cookie-modal-content h2 {
  font-size: 1.33rem;
  margin-bottom: 7px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.cookie-modal-content label.switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.cookie-modal-content .switch input[type="checkbox"] {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #F6F8FA;
  border-radius: 11px;
  border: 1.5px solid #246C6F44;
  box-shadow: 0 1px 5px #e9b85b0b;
  outline: none;
  transition: background .18s, border .14s;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}
.cookie-modal-content .switch input[type="checkbox"]:checked {
  background: #E9B85B;
  border-color: #E9B85B;
}
.cookie-modal-content .switch input[type="checkbox"]:before {
  content: '';
  display: block;
  background: #FFF;
  border-radius: 50%;
  width: 19px; height: 19px;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left .22s;
  box-shadow: 0 1px 5px #0003;
}
.cookie-modal-content .switch input[type="checkbox"]:checked:before {
  left: 19px;
  background: #FFFBE8;
}
.cookie-modal-content .switch input[type="checkbox"][disabled] {
  opacity: .7;
  cursor: not-allowed;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  right: 19px;
  top: 16px;
  background: #E9B85B;
  color: #246C6F;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 1px 5px #e9b85b1d;
}
.cookie-modal-content .close-cookie-modal:hover, .close-cookie-modal:focus {
  background: #246C6F;
  color: #fff;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal-content .cookie-modal-actions button {
  padding: 6px 18px;
  border-radius: 11px;
  background: #246C6F;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border: none;
  transition: background .13s, color .13s;
  cursor: pointer;
}
.cookie-modal-content .cookie-modal-actions .reject {
  background: #E9B85B;
  color: #794E14;
}
.cookie-modal-content .cookie-modal-actions .reject:hover {
  background: #246C6F;
  color: #FFF;
}
.cookie-modal-content .cookie-modal-actions .accept:hover {
  background: #E9B85B;
  color: #246C6F;
}

/* Responsive COOKIE: stack buttons center on xs */
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 6px 12px 6px;
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
}

/* BLOG ARTICLES + CATEGORIES */
.featured-article {
  background: #FFFAF0;
  border-radius: 16px;
  padding: 28px 18px 20px;
  margin-bottom: 22px;
  box-shadow: 0 4px 18px #E9B85B29;
  border-left: 7px solid #E9B85B;
}
.featured-article h3 {
  margin-bottom: 10px;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.article-item {
  background: #FFF;
  border-radius: 13px;
  padding: 14px 16px;
  box-shadow: 0 2px 12px #E9B85B1b;
  border-left: 4px double #E9B85B;
  font-size: 1.02rem;
}
.categories-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  background: #F6F8FA;
  border-radius: 13px;
  padding: 10px 16px;
}
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 5px 0 2px 0;
}
.categories-list li {
  list-style: none;
  margin: 0;
}
.categories-list a {
  color: #794E14;
  background: #FFF8EC;
  border-radius: 11px;
  padding: 4px 15px;
  font-size: 0.99rem;
  transition: background .16s, color .16s;
}
.categories-list a:hover {
  background: #E9B85B;
  color: #246C6F;
}
.read-more {
  color: #246C6F;
  font-weight: 700;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
}
.read-more:hover {
  color: #E9B85B;
}

/****** Contact Info *******/
.contact-details, .contact-form-container {
  background: #FFF8EC;
  border-radius: 14px;
  box-shadow: 0 2px 14px #E9B85B11;
  padding: 18px 24px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

/***** Thank You Page *****/
.thank-you .content-wrapper {
  text-align: center;
  background: #FFF8EC;
  border-radius: 18px 18px 36px 18px;
  box-shadow: 0 6px 28px #E9B85B18;
  padding: 48px 24px 44px 24px;
}

/***** Responsive Queries *****/
@media (max-width: 992px) {
  .feature-grid,
  .product-list,
  .testimonials-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid,
  .product-list,
  .card-container,
  .testimonials-list {
    flex-direction: column;
    gap: 20px !important;
    align-items: stretch;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
  .shop-controls {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
    padding: 4px 10px 4px 8px;
  }
  .hero .content-wrapper {
    padding: 22px 0;
  }
  .thank-you .content-wrapper {
    padding: 30px 12px 28px 12px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 4px;
  }
  h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .section, section {
    padding: 22px 5px;
  }
}

/* VINTAGE/RETRO ACCENTS */
body {
  background-image: url('../assets/vintage-retro-bg.svg'), linear-gradient(90deg, #FFFAF0 80%, #F6EBCF 100%);
  background-repeat: repeat, no-repeat;
  background-blend-mode: lighten;
}
@media (max-width: 768px) {
  body {
    background-image: linear-gradient(180deg, #FFFAF0 60%, #F6EBCF 100%);
  }
}
.feature-item {
  position: relative;
  overflow: visible;
}
.feature-item:before {
  content: '';
  display: block;
  position: absolute;
  top: -10px; left: -10px;
  width: 28px; height: 28px;
  background: url('../assets/retro-star.svg') no-repeat center center/contain;
  opacity: 0.13;
  z-index: 0;
}

.card, .product-card, .testimonial-card {
  background-image: url('../assets/vintage-paper-texture.png');
  background-size: cover;
  background-blend-mode: soft-light;
  border: 1px solid #ECE2CF;
}

/**** Micro Animations ****/
a, button, .cta-button, .feature-item, .product-card, .testimonial-card {
  transition: color .18s, background .19s, transform .17s, box-shadow .18s, border-color .16s;
}
.feature-item:active, .product-card:active, .cta-button:active {
  transform: scale(0.98);
}

/**** Focus Styles ****/
:focus {
  outline: 2px dashed #246C6F;
  outline-offset: 2px;
}
button:focus, .cta-button:focus {
  outline: 2px solid #E9B85B;
  outline-offset: 3px;
}

/**** Hide extra content visually but keep for screen readers ****/
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* END */
