/* ================================================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1F7F1;
  color: #203040;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
  position: relative;
}
a {
  color: #203040;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,.05,.67,.91);
}
ul, ol {
  margin-left: 1.4em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input[type="submit"], input[type="button"], select {
  font-family: inherit;
  font-size: 1em;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
input, select, textarea {
  font-family: inherit;
}
/* Hide scrollbars on touch devices for sidebar/modal */
.mobile-menu, .cookie-modal {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  display: none;
}

/* ================================================================
   VARIABLES (with fallback)
================================================================ */
:root {
  --primary: #203040;
  --secondary: #E2518D;
  --accent: #F1F7F1;
  --white: #fff;
  --shadow1: 0 2px 12px 0 rgba(32,48,64,.09);
}

/* ================================================================
   TYPOGRAPHY
================================================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
}
h1 {
  font-size: 2.25rem;  /* 36px */
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 1.5rem;    /* 24px */
  margin-bottom: 14px;
  margin-top: 32px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;   /* 20px */
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
p.subtitle {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  margin-bottom: 1.3em;
  font-weight: 600;
  letter-spacing: 0.015em;
}
strong, b {
  font-weight: bold;
}
a:hover, a:focus {
  color: var(--secondary);
}
.subtitle {
  font-size: 1.12rem;
}

/* ================================================================
   LAYOUT & CONTAINERS (FLEXBOX BASED, NO GRID!)
================================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid, .product-list, .feature-grid, .feature-list, .occasion-list, .recipient-list, .category-teasers, .team-list, .faq-list, .story-list, .testimonial-list  {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow1);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 300px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow1);
  padding: 24px 16px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px 0 rgba(32,48,64,0.11);
}

.category-teasers > div, .occasion-list > div, .recipient-list > div {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow1);
  padding: 24px 16px 22px 16px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 4px solid var(--accent);
  transition: box-shadow 0.25s, border-bottom 0.25s;
}
.category-teasers > div:hover,
.occasion-list > div:hover,
.recipient-list > div:hover {
  border-bottom: 4px solid var(--secondary);
  box-shadow: 0 6px 28px 0 rgba(226,81,141,0.11);
}

.team-list {
  gap: 24px;
}
.team-bio {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow1);
  padding: 20px 16px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-list {
  width: 100%;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 14px;
  box-shadow: var(--shadow1);
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.12rem;
}

/* Product Cards */
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow1);
  padding: 22px 14px 18px 14px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 4px solid var(--accent);
  transition: box-shadow 0.16s, border-bottom 0.16s;
}
.product-card:hover {
  box-shadow: 0 8px 34px 0 rgba(32,48,64,.14);
  border-bottom: 4px solid var(--secondary);
}
.btn-favorite {
  position: absolute;
  top: 16px;
  right: 14px;
  background: var(--accent);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--secondary);
  transition: background 0.18s, border 0.18s;
}
.btn-favorite:hover, .btn-favorite:focus {
  background: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.btn-favorite img {
  width: 20px;
  height: 20px;
  filter: grayscale(0.2);
}

/* Testimonials & Stories */
.testimonial-list, .story-list {
  flex-direction: column;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(32,48,64,.13);
  margin-bottom: 20px;
  min-width: 220px;
  position: relative;
  z-index: 1;
  border-left: 5px solid var(--secondary);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.95rem;
  color: #45556a;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-rating img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 2px;
}

/* Contact details/layout */
.contact-details {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 18px;
}
.text-section {
  flex: 1 1 260px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* Map fake area (in kontakt.html) */
.text-section > div[style*="background"] {
  margin-top: 6px;
}

/* ================================================================
   HEADER & NAVIGATION
================================================================ */
header {
  background: var(--white);
  box-shadow: 0 2px 8px 0 rgba(32,48,64,.08);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
  padding: 0 18px;
  max-width: 1180px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03em;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--primary);
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: background 0.14s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  font-size: 1.07em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 7px;
  padding: 12px 28px;
  margin-left: 16px;
  border: none;
  transition: background 0.15s, box-shadow 0.15s, color 0.14s;
  box-shadow: 0 1.5px 6px rgba(226,81,141,0.09);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 22px rgba(32,48,64,.15);
}
.btn-secondary {
  background: var(--accent);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.025em;
  border-radius: 6px;
  padding: 10px 20px;
  border: 1.5px solid var(--secondary);
  display: inline-block;
  margin-top: 8px;
  transition: box-shadow 0.14s, color 0.15s, background 0.17s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(226,81,141,0.12);
}

/* Mobile Nav Icon (burger) */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  border-radius: 7px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 16px;
  transition: background 0.16s, box-shadow 0.15s;
  z-index: 41;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 50;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.87,-.41,.19,1.44);
  box-shadow: 2px 0 16px rgba(32,48,64,.10);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 6px;
  margin: 24px 22px 12px 0;
  width: 48px;
  height: 48px;
  transition: background 0.13s;
  z-index: 55;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 12px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1.5px solid var(--accent);
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    margin-left: 12px;
  }
  .btn-primary {
    margin-left: 7px;
  }
  header .container {
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
    font-size: 0.97em;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 6px;
  }
  .logo img {
    height: 32px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 38px 0 32px 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 18px;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 180px;
}
.footer-branding img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 140px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06em;
  text-transform: uppercase;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 2 1 220px;
  font-size: 1em;
  margin-top: 3px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 1em;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  filter: invert(1) grayscale(1);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
  .footer-branding img {
    height: 28px;
  }
}
@media (max-width: 540px) {
  footer {
    padding: 18px 0 20px 0;
  }
  .footer-branding, .footer-nav, .footer-contact {
    font-size: 0.97em;
  }
}

/* ================================================================
   FILTERS & INPUTS
================================================================ */
.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  align-items: center;
  margin-top: 20px;
}
.filters-row input[type="text"] {
  flex: 2 1 170px;
  font-size: 1.12em;
  border-radius: 7px;
  border: 1.5px solid var(--accent);
  padding: 11px 15px;
  background: var(--white);
  color: var(--primary);
  outline: none;
  transition: border 0.14s;
}
.filters-row input[type="text"]:focus {
  border: 1.5px solid var(--secondary);
}
.filters-row select {
  flex: 1 1 100px;
  font-size: 1em;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--white);
  border: 1.5px solid var(--accent);
  color: var(--primary);
  transition: border 0.15s;
}
.filters-row select:focus {
  border: 1.5px solid var(--secondary);
}
.filter-tabs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-tabs a {
  background: var(--accent);
  color: var(--primary);
  border-radius: 6px;
  padding: 7px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--accent);
  transition: background 0.15s, color 0.16s, border 0.14s;
  font-size: 1em;
  margin-bottom: 6px;
}
.filter-tabs a:hover, .filter-tabs a:focus {
  background: var(--secondary);
  color: #fff;
  border: 1.5px solid var(--secondary);
}

/* ================================================================
   COOKIE CONSENT BANNER + MODAL
================================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 19px 18px 21px 22px;
  z-index: 1003;
  box-shadow: 0 -2px 18px rgba(32, 48, 64, 0.09);
  font-size: 1.05em;
  flex-wrap: wrap;
  animation: cookie-banner-in 330ms cubic-bezier(.52,1.17,.26,1.06) 1;
}
@keyframes cookie-banner-in {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 1em;
  flex: 2 1 140px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex: 1 1 120px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border: none;
  border-radius: 7px;
  padding: 9px 18px;
  margin: 0 0 0 4px;
  transition: background 0.15s, color 0.15s, box-shadow 0.12s;
}
.cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 0 0 2px var(--secondary);
}
.cookie-reject {
  background: var(--white);
  color: var(--primary);
  border: 1.2px solid var(--secondary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--secondary);
  color: #fff;
  border: 1.2px solid var(--secondary);
}
.cookie-settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.2px solid var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary);
  color: var(--accent);
  border: 1.2px solid var(--accent);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32, 48, 64, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  animation: fadeInOverlay 0.28s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 18px;
  max-width: 380px;
  width: 90vw;
  min-width: 220px;
  padding: 26px 24px 20px 24px;
  box-shadow: 0 8px 32px 0 rgba(32,48,64,.21);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookie-modal-in 0.35s;
}
@keyframes cookie-modal-in {
  from { transform: scale(0.93) translateY(30px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: var(--secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 20px;
  height: 20px;
}
.cookie-category.essential input {
  display: none;
}
.cookie-required-label::after {
  content: '(wymagane)';
  color: var(--secondary);
  font-size: 0.93em;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 19px;
  background: var(--secondary);
  color: #fff;
  border: none;
  font-size: 1.15rem;
  width: 33px;
  height: 33px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
  color: var(--secondary);
}
/* Hide cookie overlay by default */
.cookie-banner, .cookie-modal-overlay { display: none; }
.cookie-banner.show { display: flex !important; }
.cookie-modal-overlay.show { display: flex !important; }

/* ================================================================
   MISC & GEOMETRIC STYLES
================================================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
}
hr {
  border: none;
  height: 2px;
  width: 50px;
  background: var(--secondary);
  margin: 28px 0;
  border-radius: 2px;
}
/* Geometric/structured accents */
h1:before, h2:before, h3:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 7px;
  background: var(--secondary);
  border-radius: 0 10px 10px 0;
  margin-right: 13px;
  vertical-align: middle;
  box-sizing: border-box;
}
.section > .container {
  background: none;
}
.card, .category-teasers > div, .product-card, .feature-item, .testimonial-card, .team-bio {
  border-radius: 13px 13px 9px 13px;
  box-shadow: var(--shadow1);
}

::-webkit-input-placeholder { color: #8c9ab3; }
::-moz-placeholder { color: #8c9ab3; }
:-ms-input-placeholder { color: #8c9ab3; }
::placeholder { color: #8c9ab3; }

/* Spacing patterns */
.card-container, .card-grid, .product-list, .feature-grid, .feature-list,
.occasion-list, .recipient-list, .category-teasers, .team-list, .faq-list, .story-list, .testimonial-list {
  gap: 24px !important;
}
.card, .product-card, .feature-item, .testimonial-card, .team-bio {
  margin-bottom: 20px !important;
}
.text-image-section { gap: 30px; }
.content-grid { gap: 20px; }
.testimonial-card { padding: 20px; gap: 20px; }
.feature-item { gap: 15px; }

/* Form and touch targets */
input, select, textarea, button {
  min-height: 38px;
}

/* Responsive Style & FLEX ADJUSTMENTS ================================ */
@media (max-width: 1100px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .testimonial-list, .story-list, .feature-grid, .product-list, .occasion-list, .category-teasers, .recipient-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .filters-row {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .team-list {
    flex-direction: column;
  }
  .contact-details {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }
  section {
    margin-bottom: 36px;
    padding: 26px 4px;
  }
  .card, .product-card, .testimonial-card, .feature-item, .team-bio, .faq-item, .category-teasers > div, .occasion-list > div, .recipient-list > div  {
    min-width: 0;
    width: 100%;
    flex-basis: auto;
    padding: 18px 9px;
  }
  .content-wrapper, .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.19rem; }
  .subtitle { font-size: 1.02rem; }
  .main-nav, .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  .testimonial-card { padding: 16px; }
}
@media (max-width: 540px) {
  .container, .content-wrapper {
    padding: 0 2px;
  }
  .faq-item { padding: 12px 5px; }
  header .container {
    height: auto;
    gap: 3px;
    padding: 0 2px;
  }
}

/* Animations: hover & micro-interactions */
a, button, select, .card, .product-card, .feature-item, .testimonial-card, .category-teasers > div {
  transition: 
    color 0.18s cubic-bezier(.61,.13,.24,.98),
    background 0.18s cubic-bezier(.61,.13,.24,.98),
    border 0.17s cubic-bezier(.61,.13,.24,.98),
    box-shadow 0.20s cubic-bezier(.61,.13,.24,.98);
}

/* Focus/active states for accessibility */
a:focus, button:focus, input:focus, select:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* End of style.css */
