/*=============== CSS RESET & BASES ===============*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9F6F2;
  color: #22212A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input, textarea {
  font-family: inherit;
  outline: none;
  border-radius: 0;
  border: none;
}

/*=============== VINTAGE-RETRO BASIC PALETTE ===============*/
:root {
  --primary: #072B42;
  --primary-lite: #14344a;
  --secondary: #E0E3E6;
  --accent: #FFBF3C;
  --cream: #FFEFE1;
  --orange: #EF6C28;
  --vintage-bg: #FDF6E3;
  --vintage-blue: #486A83;
  --vintage-red: #C94040;
  --vintage-brown: #5E452B;
  --black: #232323;
  --white: #fff;
  --shadow: 0 2px 8px rgba(32,32,32,0.06), 0 1.5px 0 var(--cream);
  --border-radius: 14px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

/*=============== TYPOGRAPHY (VINTAGE/RETRO EFFECT) ===============*/
h1, h2, h3, .cta, .product-badge, .new-badge, .discount-label {
  font-family: 'Oswald', 'Bebas Neue', Impact, Arial Narrow, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary);
  text-shadow: 1px 1px 0 var(--accent), 2px 2px 0 var(--secondary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--vintage-blue);
  text-shadow: 1px 1px 0 var(--cream);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--vintage-brown);
  text-shadow: none;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--black);
}
p {
  margin-bottom: 12px;
}
section h1, section h2, section h3 {
  margin-bottom: 12px;
}

/*=============== LAYOUT STRUCTURE & SPACINGS ===============*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin-bottom: 24px;
  padding: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  gap: 10px;
}
.content-grid, .feature-grid, .category-tiles, .value-icons, .product-grid, .post-list, .team-list, .product-highlights {
  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;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 2px dashed var(--accent);
  max-width: 340px;
  min-width: 220px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.review_text {
  font-size: 1.1rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 10px;
}
.customer_name {
  color: var(--vintage-red);
  font-weight: bold;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 14px;
  background: var(--vintage-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.cta-section {
  background: var(--vintage-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px 16px;
  text-align: center;
}
.thank-you-section {
  align-items: center;
  text-align: center;
  padding: 48px 20px;
}

.category-list, .category-tags, .category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.category-list span, .category-tags span {
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
  box-shadow: 0 2px 0 #dbab35;
}
.category-filters label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: var(--vintage-brown);
  padding: 4px 12px;
}

.usp-list, .usp-list li {
  margin-bottom: 12px;
  padding-left: 0;
}
.usp-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: var(--vintage-brown);
}
.usp-list li:before {
  content: '\2605';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-size: 19px;
  line-height: 1;
  font-family: 'Oswald', Arial, sans-serif;
}

/*=============== COMPONENTS ===============*/
.hero {
  background: repeating-linear-gradient(-15deg, #FDF6E3 0 36px, #FFEFE1 36px 72px);
  border-bottom: 4px solid #dbab35;
  padding: 54px 0 42px 0;
  text-align: left;
}
.hero h1 {
  font-size: 2.2rem;
}
.hero p {
  color: var(--vintage-brown);
  max-width: 600px;
}
.hero .cta {
  margin-top: 30px;
}

.shop-search-bar {
  display: flex;
  gap: 12px;
  padding: 10px 0;
}
.shop-search-bar input {
  border-radius: 30px;
  border: 2px solid var(--vintage-blue);
  background: var(--white);
  padding: 10px 20px;
  font-size: 1rem;
  width: 200px;
  max-width: 300px;
}
.shop-search-bar button {
  padding: 10px 26px;
  border-radius: 30px;
  border: none;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background var(--transition);
  box-shadow: 0 1.5px 0 #dbab35;
}
.shop-search-bar button:hover, .shop-search-bar button:focus {
  background: var(--orange);
  color: var(--white);
}

.category-tiles div, .value-icons > div, .product-grid > div, .post-list > div, .product-highlights > div, .team-list > div {
  background: var(--cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.category-tiles div img, .value-icons div img {
  width: 42px;
  height: 42px;
}
.category-tiles div a {
  margin-top: auto;
  color: var(--vintage-blue);
  font-weight: bold;
  border-bottom: 1.5px dashed var(--accent);
  transition: color var(--transition);
}
.category-tiles div a:hover, .category-tiles div a:focus {
  color: var(--orange);
}

.product-grid, .product-highlights {
  gap: 24px;
}
.product-grid > div {
  border: 2px solid #ffd9a9;
}
.product-badge, .new-badge, .discount-label {
  position: absolute;
  left: 16px; top: 16px;
  color: var(--white);
  background: var(--vintage-red);
  border-radius: 24px;
  padding: 6px 16px; 
  font-size: 0.92rem;
  letter-spacing: 1px;
  font-family: 'Oswald', Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(30,13,5,0.10);
  text-shadow: 1px 1px 2px #a32626;
  z-index: 2;
}
.new-badge {
  background: var(--accent);
  color: var(--primary);
  text-shadow: none;
  box-shadow: 0 1.5px 0 #dbab35;
}
.discount-label {
  background: var(--vintage-blue);
  color: var(--accent);
  text-shadow: 1px 1px 0 #485768;
}
.product-grid > div a, .product-highlights > div a {
  margin-top: 11px;
  color: var(--vintage-blue);
  font-weight: bold;
  border-bottom: 1.5px dashed var(--accent);
  transition: color var(--transition);
}
.product-grid > div a:hover, .product-highlights > div a:hover {
  color: var(--orange);
}

/* BLOG TAGS */
.category-tags span {
  background: var(--vintage-blue);
  color: var(--accent);
  font-size: 0.98rem;
}

/*=============== HEADER & NAVIGATION ===============*/
header {
  background: var(--primary);
  border-bottom: 3.5px solid var(--accent);
  width: 100%;
  z-index: 4;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
header img {
  height: 50px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
nav a {
  color: var(--accent);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
nav a.cta {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 20px;
  padding: 8px 24px;
  margin-left: 12px;
  box-shadow: 0 2px 0 #dbab35;
  transition: background 0.16s;
  border: none;
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--orange);
  color: var(--white);
}

/*=============== MOBILE NAVIGATION ===============*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 6px rgba(40,40,30,0.12);
  z-index: 1200;
  transition: filter var(--transition);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  filter: brightness(0.95) contrast(1.3);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--cream);
  box-shadow: 0 0 8px 3px #3332;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.86,-0.51,.18,1.33);
  padding: 36px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--primary);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--vintage-red); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--primary);
  padding: 12px 10px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
  border: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--white);
  background: var(--vintage-blue);
}

/*=============== FOOTER ===============*/
footer {
  background: var(--primary);
  color: var(--accent);
  font-size: 1rem;
  border-top: 3.5px solid var(--accent);
}
footer .container {
  margin-top: 0;
  padding: 32px 20px 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menus {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 2 1 320px;
}
.footer-menus nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-menus nav a {
  color: var(--accent);
  font-family: 'Oswald', Arial, sans-serif;
  padding: 5px 14px;
  border-radius: 12px;
  font-size: 1rem;
  background: none;
  transition: background 0.1s, color 0.1s;
}
.footer-menus nav a:hover, .footer-menus nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-menus .cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  padding: 8px 22px;
  font-family: 'Oswald', Arial, sans-serif;
  box-shadow: 0 2px 0 #dbab35;
  transition: background 0.13s;
}
.footer-menus .cta:hover, .footer-menus .cta:focus {
  background: var(--orange);
  color: var(--white);
}
.footer-contact {
  flex: 1 1 210px;
  font-size: 1rem;
  color: var(--secondary);
  margin-top: 3px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 21px;
  height: 21px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1 1 180px;
  gap: 8px;
}
.footer-brand img {
  height: 44px !important;
}
.footer-brand p {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  text-align: right;
}

/*=============== BUTTONS & CTA ===============*/
.cta {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: 80px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 1.8px 0 #dbab35;
  transition: background var(--transition), color var(--transition), transform 0.13s;
  margin-top: 10px;
  cursor: pointer;
  letter-spacing: 0.03em;
  display: inline-block;
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}

/*=============== MODAL & COOKIE CONSENT BANNER ===============*/
.cookie-banner {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: var(--cream);
  color: var(--black);
  padding: 18px 16px;
  z-index: 3020;
  border-top: 3px solid var(--accent);
  align-items: center;
  box-shadow: 0 -2px 12px rgba(30,18,0,0.09);
  transition: transform 0.3s;
  gap: 12px;
}
.cookie-banner.hide {
  transform: translateY(160%);
}
.cookie-banner p {
  margin: 0;
  color: var(--vintage-brown);
  font-size: 0.98rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin: 0;
}
.cookie-btn, .cookie-banner .cookie-btns button {
  min-width: 120px;
  padding: 9px 18px;
  font-family: 'Oswald', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  border-radius: 20px;
  border: 2px solid var(--accent);
  font-size: 1rem;
  margin: 0 3px;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--orange);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--vintage-red);
  color: var(--white);
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--accent);
  color: var(--primary);
}

.cookie-modal-overlay {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: fixed;
  z-index: 3100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,30,0.44);
  transition: opacity 0.23s;
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--vintage-bg);
  border-radius: 16px 16px 0px 0px;
  box-shadow: 0 -2px 32px rgba(21,7,2,0.20);
  padding: 32px 24px 24px 24px;
  min-width: 280px; max-width: 440px;
  min-height: 280px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: modal-slide .38s cubic-bezier(.72,-0.11,.22,1.13);
}
@keyframes modal-slide {
  from { transform: translateY(120px); opacity: 0.2; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 9px;
  font-size: 1.35rem;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 17px; top: 16px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 10px;
  border-radius: 8px;
  background: var(--secondary);
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  width: 17px; height: 17px;
}
.cookie-category.essential {
  opacity: 0.6;
  pointer-events: none;
}

/*=============== ACCESSIBILITY & DETAILS ===============*/
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::-webkit-scrollbar { width:8px; background:var(--vintage-bg); }
::-webkit-scrollbar-thumb { background:var(--secondary); border-radius:8px; }

a, button, .cta, .cookie-btn {
  -webkit-tap-highlight-color: #FFBF3C55;
}

/*=============== RESPONSIVE – MOBILE FIRST ===============*/
@media (max-width: 1180px) {
  .container { max-width: 96vw; }
}
@media (max-width: 992px) {
  .container { max-width: 98vw; }
  .footer-menus, .footer-brand, .footer-contact { flex: 1 1 100%; }
  .footer-brand { align-items: flex-start; text-align: left; }
}
@media (max-width: 900px) {
  .content-grid, .feature-grid, .category-tiles, .value-icons, .product-grid, .post-list, .product-highlights, .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .category-tiles div, .value-icons > div, .product-grid > div, .post-list > div, .product-highlights > div, .team-list > div {
    min-width: 0;
    width: 100%;
  }
  .container { padding: 0 13px; }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-menus nav {
    flex-direction: column;
  }
  .footer-menus, .footer-brand, .footer-contact {
    flex: 1 1 100%;
    align-items: flex-start;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 600px;
  }
  .content-grid, .feature-grid, .category-tiles, .value-icons, .product-grid, .post-list, .product-highlights, .team-list {
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
    align-items: stretch;
  }
  .shop-search-bar {
    flex-direction: column;
    gap: 10px;
    width: 96%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    margin-bottom: 42px;
    padding: 22px 6px;
  }
  .cta-section, .thank-you-section {
    padding: 24px 8px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  .container { padding: 0 2px; }
  .footer-contact p {
    font-size: 0.92rem;
    gap: 5px;
  }
  .product-badge, .new-badge, .discount-label {
    left: 6px; top: 6px;
    font-size: 0.85rem;
    padding: 4px 10px;
  }
  .shop-search-bar button, .cookie-btn, .cta {
    font-size: 0.95rem;
    padding: 8px 14px;
    min-width: 78px;
  }
  header img, .footer-brand img {
    height: 38px !important;
  }
}
