/* Fuzzy Motor Souvenirs – Industrial Modern CSS Theme */
/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #212733;
  color: #F4E8B8;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F4E8B8;
  text-decoration: none;
  transition: color .2s;
}
a:focus, a:hover {
  color: #BF4D28;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #F4E8B8;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #E0DDBC;
  font-size: 1rem;
  margin-bottom: 12px;
}
p.subheadline {
  font-size: 1.25rem;
  color: #F4E8B8;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.stars {
  color: #FFCB3E;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 8px;
}
.category-tag {
  background: #BF4D28;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 4px;
  padding: 2px 8px;
  margin-right: 10px;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  vertical-align: middle;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  position: relative;
}

/* NAVIGATION HEADER */
header {
  background: #273142;
  box-shadow: 0 2px 12px rgba(51,61,79,.07);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.logo-link img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  color: #F4E8B8;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 5px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #BF4D28;
  transition: width .2s;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 80%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #BF4D28 70%, #A73515 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  outline: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(191,77,40,0.10);
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  user-select: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #A73515;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px rgba(191,77,40,0.20);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #BF4D28;
  padding: 4px 12px;
  margin-left: 10px;
  cursor: pointer;
  z-index: 101;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(47, 55, 66, 0.14);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #28303B;
  box-shadow: 2px 0 16px rgba(33,33,33,0.18);
  transform: translateX(-110vw);
  transition: transform .34s cubic-bezier(.7,.1,.3,1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  margin: 24px 0 18px 24px;
  cursor: pointer;
  align-self: flex-start;
  z-index: 1100;
  transition: color .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFCB3E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 38px;
  margin-bottom: 40px;
}
.mobile-nav a {
  color: #F4E8B8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid #425066;
  transition: color .2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #BF4D28;
}

/* BANNERS & CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232C38;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(33, 38, 50, 0.12);
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color .2s;
  border: 1.5px solid #314759;
}
.card:hover,
.card:focus {
  border-color: #BF4D28;
  box-shadow: 0 4px 24px rgba(191,77,40,0.13);
}

/* FLEX LAYOUTS (NO GRID) */
.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  max-width: 370px;
  background: #F4E8B8;
  color: #232C38;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(33,38,50,.10);
  border: 1.5px solid #D2CAA1;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, transform .17s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 4px 24px rgba(191,77,40,0.10);
  transform: translateY(-3px) scale(1.025);
}
.testimonial-card p, .testimonial-card strong {
  color: #22282B;
}

.feature-grid, .occasion-grid, .category-grid, .product-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  flex: 1 1 210px;
  background: #253245;
  border-radius: 8px;
  padding: 20px 18px;
  border: 1.5px solid #37455C;
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px rgba(50,70,90, 0.07);
}
.feature-item img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  margin-bottom: 2px;
}
.feature-item h3 {
  color: #FFCB3E;
  margin-bottom: 6px;
  font-size: 1.12rem;
  letter-spacing: 1px;
}
.feature-item:hover, .feature-item:focus {
  border-color: #BF4D28;
  box-shadow: 0 4px 20px rgba(191,77,40,0.13);
}

.occasion-card, .category-card, .highlight {
  background: #232C38;
  color: #F4E8B8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(33,38,50,0.12);
  border: 1.5px solid #314759;
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  min-height: 115px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}
.occasion-card:hover, .category-card:hover, .highlight:hover {
  border-color: #BF4D28;
  box-shadow: 0 6px 24px rgba(191,77,40,0.10);
}
.category-card {
  text-align: center;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: #273142;
  color: #FFCB3E;
}

.shop-feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.shop-feature-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #212733;
  border-radius: 8px;
  padding: 14px 20px;
  border: 1.5px solid #425066;
  color: #FFCB3E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  min-width: 130px;
  box-shadow: 0 1px 7px rgba(67,80,102,.08);
}

/* LISTS, FAQS, and ULs */
ul, ol {
  margin-bottom: 18px;
}
.service-list, .usp-list, .tips-list {
  font-size: 1rem;
  color: #E0DDBC;
  list-style: disc inside;
  margin-left: 26px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-points {
  color: #E0DDBC;
  list-style: disc inside;
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.faq-list strong {
  color: #FFCB3E;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
  display: block;
}
.faq-list a {
  text-decoration: underline;
  color: #BF4D28;
}
.faq-list a:hover {
  color: #ff633b;
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-list li {
  background: #232C38;
  padding: 18px 16px;
  border-radius: 8px;
  border: 1px solid #304560;
  margin-bottom: 0;
}
.editor-picks {
  margin-top: 15px;
  background: #273142;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1rem;
}

/* MAP & CONTACT */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #253245;
  padding: 18px 22px;
  border-radius: 8px;
  border: 1px solid #37455C;
}
.contact-details img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.map-location {
  background: #273142;
  color: #E0DDBC;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 15px;
  font-size: 1rem;
  font-style: italic;
}
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.team-highlights ul {
  list-style: disc inside;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-highlights h3 {
  margin-bottom: 6px;
  color: #FFCB3E;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #232C38;
  color: #F4E8B8;
  font-size: 1rem;
  padding-top: 44px;
  padding-bottom: 14px;
}
.footer-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  border-top: 1.5px solid #37455C;
  padding-top: 24px;
  padding-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #FFCB3E;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: color .16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #BF4D28;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  color: #F4E8B8;
}
.footer-contact img {
  vertical-align: middle;
  height: 18px;
  width: 18px;
  margin-right: 7px;
}
.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #37455C;
  padding-top: 14px;
  margin-top: 7px;
  color: #BF4D28;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* COOKIE CONSENT BANNER and MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 9999;
  background: #212733;
  color: #F4E8B8;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -2px 16px rgba(20,21,22,.19);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  font-size: 1rem;
  animation: bannerFadeIn .4s cubic-bezier(.33,1.52,.54,1.18);
}
@keyframes bannerFadeIn {
  from { transform: translateY(85px); opacity: 0;}
  to   { transform: translateY(0);   opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 5px;
}
.cookie-btn {
  background: #304560;
  color: #F4E8B8;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .16s;
}
.cookie-btn.accept {
  background: #BF4D28;
  color: #fff;
  box-shadow: 0 2px 10px rgba(191,77,40,0.11);
}
.cookie-btn.reject {
  background: #425066;
}
.cookie-btn.settings {
  background: none;
  color: #BF4D28;
  border: 1.5px solid #BF4D28;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #A73515;
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #273142;
  color: #FFCB3E;
}

/* Cookie Preferences Modal */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,48,59, 0.85);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalBgAppear .3s cubic-bezier(.2,.7,.5,1);
}
@keyframes modalBgAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #F4E8B8;
  color: #232C38;
  border-radius: 10px;
  padding: 34px 26px;
  max-width: 410px;
  width: calc(100vw - 36px);
  box-shadow: 0 4px 28px rgba(33,33,33,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalFadeIn .2s cubic-bezier(.14,.92,.57,1.08);
}
@keyframes modalFadeIn {
  from { transform: translateY(84px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #304560;
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #273142;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .2s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #BF4D28;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s;
}
.cookie-switch:checked:before {
  left: 19px;
  background: #fff3e6;
}
.cookie-pref-desc {
  flex: 1;
  color: #37455C;
  font-size: 0.98rem;
}
.cookie-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}
.cookie-modal-close {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #BF4D28;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover {
  color: #A73515;
}

/* RESPONSIVE DESIGN – MOBILE FIRST */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
  .feature-grid, .occasion-grid, .category-grid, .product-highlights-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 90vw;
    padding: 0 12px;
  }
  .footer-container {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    gap: 16px;
  }
  .feature-grid, .occasion-grid, .category-grid, .product-highlights-list, .testimonial-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .nav-container {
    gap: 8px;
  }
  .section {
    margin-bottom: 36px;
    padding: 20px 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .card-container {
    gap: 10px;
  }
  .feature-grid, .occasion-grid, .category-grid, .product-highlights-list, .testimonial-list {
    gap: 10px;
  }
  .feature-item, .occasion-card, .testimonial-card, .category-card, .highlight {
    min-width: 90vw;
    max-width: 100vw;
    width: 98vw;
    padding: 18px 10px;
  }
  .contact-cta {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .footer-container, .footer-nav {
    gap: 6px;
    align-items: flex-start;
  }
  .footer-container {
    flex-direction: column;
    padding-top: 16px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .card, .feature-item, .testimonial-card {
    max-width: 99vw;
    padding: 15px 6px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .category-grid, .feature-grid, .occasion-grid, .testimonial-list {
    flex-direction: column;
  }
  .cookie-modal {
    padding: 21px 7px;
    max-width: 96vw;
  }
}

/* MISC */
::-webkit-scrollbar {
  width: 8px;
  background: #273142;
}
::-webkit-scrollbar-thumb {
  background: #304560;
  border-radius: 12px;
}
::-webkit-selection,
::selection {
  background: #BF4D28;
  color: #fff;
}

/* Decorative metallic accent (industrial feel) */
.section {
  border-left: 4px solid #BF4D28;
  box-shadow: 2px 2px 12px rgba(51,61,79,.01), 0 1px 0 #232C38 inset;
}

/* Subtle shadow accents on key elements */
.cta-btn, .main-nav a, .category-card, .footer-container, .testimonial-card {
  transition: box-shadow .18s, border .15s, background .13s, color .13s, transform .13s;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
