/* =================== RESET & BASE =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #1a2533;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
input, button {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =================== COLORS & VARIABLES =================== */
:root {
  --primary:#16334A;
  --secondary:#21A179;
  --accent:#F4DC37;
  --text:#1a2533;
  --text-light:#F5F6FA;
  --bg-light:#FAFAFA;
  --bg-card:#FFFFFF;
  --gold: #E0B341;
  --shadow:0 2px 16px rgba(20,32,48,0.07);
  --radius:20px;
  --border:1px solid #ececf1;
  --font-display:'Montserrat',Arial,sans-serif;
}

/* =================== TYPOGRAPHY =================== */
h1, .hero h1, .about-hero h1, .thank-you h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: .03em;
  margin-bottom: 20px;
  color: var(--primary);
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .01em;
  margin-bottom: 18px;
  color: var(--primary);
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
}
.subheadline {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 24px;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
@media (max-width: 480px) {
  h1, .hero h1, .about-hero h1, .thank-you h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}

/* =================== LAYOUT CONTAINERS =================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  border: var(--border);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border: var(--border);
  min-width: 280px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 8px 32px rgba(20,32,48,0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== RESPONSIVE FLEX LAYOUTS ========== */
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container { gap: 16px; }
}
@media (max-width: 768px) {
  .section {padding: 28px 5px;}
  .testimonial-card { min-width: unset; }
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

/* ========== HEADER / NAV ========== */
header {
  background: var(--primary);
  color: var(--text-light);
  padding: 0;
  box-shadow: 0 1px 10px 0 rgba(22,51,74,0.09);
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 84px;
}
.logo img {
  height: 44px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-left: 32px;
}
nav a {
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .02em;
  position: relative;
  padding: 0 4px;
  transition: color 0.22s;
}
nav a:hover {
  color: var(--accent);
}
.cta.primary {
  background: var(--gold);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 2px 8px 0 rgba(224,179,65,.09);
  font-size: 1.09rem;
  letter-spacing: .03em;
  border: none;
  margin-left: auto;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
  outline: none;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 24px 0 rgba(224,179,65,0.17);
}
.cta.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 26px 10px 26px 10px;
  font-size: 1.02rem;
  letter-spacing: .025em;
  margin-top:24px;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent);
  margin-left: 18px;
  z-index: 104;
}
@media (max-width: 1020px) {
  header .container nav,
  header .container .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;left: 0;
  width: 100vw;
  height: 100vh;
  background:rgba(22,51,74,0.99);
  color: var(--text-light);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.34,.74,.32,1); 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 18px 0 24px;
  box-sizing: border-box;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 8px;
  cursor: pointer;
  z-index: 121;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 13px 0 9px 0;
  border-bottom: 1px solid rgba(244,220,55,.08);
  border-radius: 0 0 8px 8px;
  transition: color 0.18s, background 0.11s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  background: rgba(244,220,55,0.06);
}
@media (min-width:1021px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(110deg, #16334A 72%, #f7eed2 97%); 
  color: var(--text-light);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 18px 32px 0 rgba(22,51,74,0.07);
  margin-bottom: 58px;
  padding-top:56px;
  padding-bottom:64px;
}
.hero .content-wrapper {
  max-width: 680px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 0;
}
.hero h1{ color: var(--accent); text-shadow: 0 2px 10px rgba(22,51,74,0.19); }
.hero .cta.primary{ margin-top:32px; box-shadow: 0 4px 22px 0 rgba(224,179,65,.09); }
@media (max-width: 768px) {
  .hero { padding-top:30px; padding-bottom:18vw; margin-bottom:30px; border-radius: 0 0 18px 18px;}
}

/* ========== FEATURES / CATEGORY / CARDS ========== */
.feature-section {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top:24px;
}
.feature {
  background: var(--bg-light);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(22,51,74,0.06);
  border: var(--border);
  padding: 32px 24px 24px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature img {
  width: 42px; height: 42px;
  margin-bottom: 18px;
}
.feature:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px rgba(244,220,55,0.09);
}

.categories .category-tiles, .categories-grid .category-tiles{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.category-tile {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: var(--border);
  padding: 28px 18px 20px 18px;
  min-width: 180px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s, transform 0.15s;
}
.category-tile img {
  width: 38px; height: 38px; margin-bottom:16px;
}
.category-tile h2, .category-tile h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.18rem
}
.category-tile p {
  color: #445;
}
.category-tile:hover {
  box-shadow: 0 8px 24px rgba(32,39,81,0.10);
  transform: translateY(-5px) scale(1.016);
}

/* ========== PROMOS ========== */
.promo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left:16px;
  font-size: 1.12rem;
}
.promo-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
  gap: 16px;
  padding: 18px 14px;
  color: var(--primary);
  font-weight: 600;
}
.discount-badge {
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  border-radius: 24px;
  padding: 5px 16px;
  margin-right: 12px;
  font-size: 1rem;
}
.promo-cta a {
  margin-left: 18px;
  color: var(--secondary);
  background: #e9f3ed;
  border-radius: 24px;
  padding: 5px 14px;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
.promo-cta a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ========== TESTIMONIALS ========== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.testimonial-card {
  flex: 1 1 262px;
  min-width: 230px;
  background: var(--bg-light);
  color: var(--primary);
  border: var(--border);
  box-shadow: var(--shadow);
}
.testimonial-card .author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  margin-top: 6px;
}
.testimonial-card .stars img {
  height: 21px;
}
.testimonial-card p {
  color: var(--text);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 6px;
}
@media (max-width: 840px) {
  .testimonials .content-wrapper { flex-direction: column; gap:14px; }
}

/* ========== PRODUCT CARDS (STORE) ========== */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 20px;
  padding: 28px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.13s, transform 0.13s;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(32,39,81,0.14);
  transform: translateY(-5px) scale(1.016);
}
.product-card button {
  margin-top: 20px;
  background: var(--secondary);
  color: var(--text-light);
  border: none;
  border-radius: 18px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.13s;
  opacity: 0.45;
  cursor: not-allowed;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin: 20px 0 0 0;
  font-family: var(--font-display);
}
.pagination span {
  background: var(--gold);
  color: var(--primary);
  border-radius: 22px;
  padding: 5px 13px;
  font-weight: 600;
  font-size: 1.03rem;
  opacity: 0.95;
  user-select: none;
  cursor: default;
}

/* ========== NEW ARRIVALS ========== */
.new-arrivals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.new-product {
  background: var(--bg-light);
  border-radius: 16px;
  border: var(--border);
  box-shadow: var(--shadow);
  min-width: 190px;
  flex: 1 1 210px;
  padding: 26px 16px 20px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.badge-new {
  background: var(--gold);
  color: var(--primary);
  font-size:0.90rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 5px 17px 5px 15px;
  position: absolute;
  top: 18px; right: 18px;
  box-shadow: 0 2px 6px rgba(224,179,65,.13);
}

/* ========== PROMOS PAGE ========== */
.promo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.promo-item {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: var(--border);
  flex: 1 1 220px;
  min-width:210px;
  margin-bottom: 18px;
  padding: 32px 18px 20px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.percentage-badge {
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  border-radius: 17px;
  padding: 4px 14px 5px 12px;
  font-size: 0.97rem;
  margin-right: 13px;
}
.date-badge {
  background: var(--secondary);
  color: var(--text-light);
  font-size: 0.93rem;
  font-weight: 600;
  padding: 3px 10px 3px 10px;
  border-radius: 13px;
  margin-bottom: 9px;
  margin-top: 2px;
  width: fit-content;
}

.promo-cta .limited-time-offer-note {
  font-size: 0.96rem;
  color: #ab8600;
  margin-bottom:18px;
}

/* ========== FAQ/CUSTOMER SERVICE/CARDS (CONTACT) ========== */
.contact-details ul {
  margin-top: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.map-embed {
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
  padding: 16px 10px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.faq ul {
  margin-top: 18px;
}
.faq li {
  background: var(--bg-card);
  border-radius: 13px;
  border: var(--border);
  box-shadow: 0 2px 8px rgba(22,51,74,0.11);
  margin-bottom: 14px;
  padding: 18px 15px;
  color: var(--primary);
}
.faq li strong { color: var(--secondary); }

/* ========== GENERIC SECTION ADJUSTMENTS ========== */
.section, main > section {
  margin-bottom: 60px;
  padding: 36px 10px;
}
@media (max-width: 600px){
  .section, main > section {padding: 23px 1px; margin-bottom: 32px;}
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 0;
  box-shadow: 0 -2px 16px 0 rgba(22,51,74,0.07);
  border-radius: 32px 32px 0 0;
  margin-top: 44px;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
  padding: 32px 16px 18px 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left:26px;
}
footer nav a {
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.04rem;
  border-radius: 9px;
  padding: 3.5px 5.5px;
  transition: color 0.12s, background 0.14s;
}
footer nav a:hover {
  color: var(--accent);
  background: rgba(244,220,55,0.08);
}
footer .brand-contact {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--accent);
  font-size: 1rem;
}
footer .brand-contact img {
  width: 17px; height: 17px;
  margin-right: 6px;
  vertical-align: middle;
  margin-bottom: -2px;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px;}
  footer .brand-contact {margin-left:0;}
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(100%);
  width: 95vw;
  max-width: 500px;
  z-index: 9999;
  background: var(--bg-card);
  border-radius: 20px 24px 18px 18px;
  box-shadow: 0 4px 44px rgba(21,35,56,0.16);
  border: var(--border);
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  font-size: 1.03rem;
  opacity: 0;
  pointer-events:none;
  transition: opacity 0.36s cubic-bezier(.42,.72,.19,.96),transform 0.35s cubic-bezier(.42,.72,.19,.96);
}
.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events:auto;
}
.cookie-banner p {
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 5px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 21px;
  border-radius: 18px 8px 18px 8px;
  border: none;
  margin-right: 5px;
  transition: background 0.15s, color 0.12s;
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: var(--accent);}
.cookie-btn.reject {
  background: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--gold);
}
.cookie-btn.reject:hover,.cookie-btn.reject:focus {
  color: var(--primary);
  background: var(--gold);
  border-color: var(--gold);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
@media (max-width:480px) {
  .cookie-banner{max-width:96vw;padding:17px 7px 14px 7px;}
  .cookie-banner .cookie-btns{flex-direction:column;gap:12px;width:100%;}
  .cookie-btn{width:100%;margin-right:0;}
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:rgba(22,51,74,0.72);
  opacity:0;
  pointer-events:none;
  transition: opacity 0.33s cubic-bezier(.42,.72,.19,.96);
}
.cookie-modal.active { opacity:1; pointer-events:auto; }
.cookie-modal .modal-content {
  background: var(--bg-card);
  border-radius: 22px;
  box-shadow: 0 6px 36px rgba(22,51,74,0.19);
  padding: 34px 24px 26px 24px;
  min-width: 300px; max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  color: var(--primary);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 15px; right: 22px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .close-cookie-modal:hover,.cookie-modal .close-cookie-modal:focus{color:var(--gold);}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1rem;
}
.cookie-category-row span {
  font-weight: 600;
  color: var(--primary);
}
.cookie-category-row .toggle-switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
  vertical-align: middle;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--secondary);
  border-radius: 24px;
  transition: background 0.18s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}
.toggle-slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(.62,.36,.32,1);
  box-shadow: 0 0.5px 2.5px rgba(22,51,74,0.08);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(21px);
}
.cookie-category-row[aria-disabled="true"] {
  opacity: 0.63;
  pointer-events: none;
}
.modal-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.modal-actions .cookie-btn { margin-right: 0; }

@media (max-width:480px) {
  .cookie-modal .modal-content {padding:16px 5px 16px 11px; min-width: unset;font-size:0.99rem;}
}

/* ========== THANK YOU PAGE ========== */
.thank-you .confirmation-message {
  color: var(--secondary);
  font-size: 1.13rem;
  margin-bottom: 18px;
  margin-top: 7px;
}
.thank-you .next-steps {
  background: #f7efd2;
  border-radius:12px;
  padding: 20px 14px;
  margin-bottom: 21px;
  box-shadow: 0 2px 8px rgba(244,220,55,0.06);
}
.thank-you .next-steps h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}

/* ========== POLICY/LEGAL CONTENT ========== */
.privacy-policy, .rodo, .cookies-policy, .terms {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
  padding: 38px 24px 16px 24px;
  margin-bottom: 58px;
}
.privacy-policy ul, .rodo ul, .terms ul, .cookies-policy ul {
  padding-left: 12px;
  margin-bottom: 17px;
}
.privacy-policy li, .rodo li, .terms li, .cookies-policy li {
  margin-bottom: 7px;
  color: var(--primary);
}

/* ========== MISCELLANEOUS / UTILITIES ========== */
::-webkit-scrollbar { width: 10px; background: #ececf1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 9px; }
::-webkit-input-placeholder { color: #92a7b4; }
::placeholder { color: #92a7b4; }
.search-bar input[type=search] {
  background: #f7f8fa;
  border-radius: 13px;
  border: var(--border);
  padding: 12px 22px;
  font-size: 1.06rem;
  color: var(--primary);
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  transition: box-shadow 0.14s, border 0.13s;
}
.search-bar input[type=search]:focus {
  border: 1.5px solid var(--accent);
  box-shadow: 0 1px 6px 0 rgba(244,220,55,0.10);
}
@media (max-width: 660px) {
  .feature-grid, .category-tiles, .product-cards, .promo-grid, .new-arrivals-grid { flex-direction: column; gap:12px;}
}

/* ========== MICRO-ANIMATIONS ========== */
.cta.primary, .cta.secondary, .cookie-btn {
  transition: background 0.17s, color 0.16s, box-shadow 0.24s;
}
.card, .category-tile, .feature, .product-card, .testimonial-card, .promo-item, .new-product {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .category-tile:hover, .feature:hover, .product-card:hover, .promo-item:hover, .new-product:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 7px 28px rgba(224,179,65,0.14);
}

/* ========== ACCESSIBILITY ========== */
a, button, .cta.primary, .cta.secondary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
a:focus, button:focus, .cta.primary:focus, .cta.secondary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 2px var(--accent) !important;
  z-index: 20;
}

/* =================== END =================== */
