/* ================================================================
   CSS RESET & NORMALIZATION
================================================================ */
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,
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;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
  font-size: 100%;
}
html {
  line-height: 1.15;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  min-height: 100vh;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #3d3629;
  background-color: #EEEBE1;
}

/* ================================================================
   VINTAGE RETRO -- COLORS, FONTS, PATTERNS & OVERRIDES
================================================================ */
:root {
  --color-primary: #20263A; /* Blue-black, logo color */
  --color-secondary: #f8f8fa; /* Paper off-white */
  --color-accent: #F3A84B; /* Warm ochre yellow/orange */
  --color-support1: #e2b686; /* Light tan */
  --color-support2: #9b6962; /* Brick brown */
  --color-support3: #598392; /* Retro blue-gray */
  --color-background: #F4EBD0; /* Retro beige */
  --color-border-dark: #343124;
  --color-text-default: #3d3629;
  --color-white: #fff;
  --color-black: #181717;
  --color-shadow: rgba(32,38,58,0.13);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: var(--color-background);
  color: var(--color-text-default);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.16;
}
h1 { font-size: 2.3rem; margin-bottom: 24px; }
h2 { font-size: 1.6rem; margin-bottom: 20px; }
h3 { font-size: 1.12rem; margin-bottom: 12px; }
p, ul, ol, dl { margin-bottom: 16px; }
p.subheadline {
  font-size: 1.12rem;
  color: var(--color-support2);
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
}

strong { font-weight: 700; }
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.16s;
}
a:hover, a:focus {
  color: var(--color-support2);
  text-decoration: underline dotted;
  outline: none;
}


/* ================================================================
   LAYOUT & CONTAINER CLASSES
================================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--color-shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-secondary);
  border-radius: 10px;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: transform 0.18s, box-shadow 0.18s;
  padding: 28px 18px;
  min-width: 240px;
}
.card:hover {
  transform: translateY(-6px) scale(1.018);
  box-shadow: 0 8px 30px var(--color-shadow);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffdf8;
  border: 2px dashed var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(32,38,58,0.12);
  position: relative;
}
.testimonial-card p {
  color: #201b13;
  font-style: italic;
  font-size: 1.02rem;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-author {
  color: var(--color-support3);
  font-size: 0.99rem;
  margin-left: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 10px;
  background: var(--color-support1);
  border-radius: 8px;
  box-shadow: 0 1.5px 7px rgba(32,38,58,0.09);
}

/* Grid List Styles for Features, Categories, FAQ, etc. */
.feature-grid,
.category-grid,
.tips-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  list-style: none;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li,
.category-grid li {
  background: var(--color-background);
  border: 1.5px solid var(--color-support1);
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(32,38,58,0.09);
  flex: 1 0 160px;
  min-width: 140px;
  max-width: 200px;
  padding: 14px 12px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.feature-grid li:hover,
.category-grid li:hover {
  box-shadow: 0 6px 16px var(--color-shadow);
  border-color: var(--color-support2);
}
.feature-grid img,
.category-grid img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

/* FAQ Styling */
.faq-list li {
  background: #fffdf8;
  border-left: 4px solid var(--color-accent);
  border-radius: 7px;
  margin-bottom: 20px;
  padding: 18px 18px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(32,38,58,0.055);
}
.faq-list h3 {
  font-size: 1.11rem;
  color: var(--color-support2);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}
.faq-list p {
  font-size: 1.01rem;
}

.tips-list li {
  background: var(--color-support1);
  border-radius: 9px;
  margin-bottom: 10px;
  padding: 14px 15px 9px 15px;
  box-shadow: 0 1.2px 6px rgba(90,105,130,0.06);
  font-size: 1.02rem;
  color: #322717;
}
.tips-list strong { color: var(--color-primary); }

.style-guide-snippets {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid var(--color-support3);
  padding-left: 18px;
}

/* Category filter pills */
.category-filters {
  display: flex;
  gap: 18px;
  margin: 16px 0 0 0;
}
.filter {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2.5px 8px rgba(32,38,58,0.09);
  border: 1px solid var(--color-support1);
}

/* Patterns/Decorative Lines */
hr {
  border: none;
  border-bottom: 2px dashed var(--color-support1);
  margin: 24px 0;
}

/* Message / Thank You sections */
.thank-you, .legal, .gift-card-info {
  margin: 40px 0;
  background: var(--color-secondary);
  border-radius: 13px;
  box-shadow: 0 2px 16px rgba(32,38,58,0.09);
  padding: 34px 22px;
}

.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 7px;
}
.location-map span {
  color: var(--color-support3);
  font-size: 1rem;
}

/* ================================================================
   HEADER & NAVIGATION
================================================================ */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 8px 24px rgba(32,38,58,0.16);
  position: sticky;
  top: 0;
  z-index: 95;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0 14px 0;
}
.main-nav > a img {
  height: 34px;
}
.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 11px;
  letter-spacing: 0.04em;
  transition: background 0.17s, color 0.17s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--color-accent);
  color: var(--color-black);
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.07rem;
  border: none;
  border-radius: 32px;
  padding: 10px 32px;
  margin-left: 15px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.16s, color 0.16s, transform 0.13s;
  box-shadow: 0 2.5px 14px rgba(243, 168, 75, 0.09);
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  outline: none;
  transform: scale(1.045);
  text-decoration: none;
}
.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-support2);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: underline wavy;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-accent);
  text-decoration-thickness: 2px;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-accent);
  margin-right: 7px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.18s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.53,.15,.53,1.2);
  box-shadow: 0 6px 42px rgba(32,38,58,0.25);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 44px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 19px;
  font-size: 2.05rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 204;
  transition: color 0.16s;
  border-radius: 5px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-support2);
  background: #f3efe36b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 37px;
  padding: 0 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0px 8px 0;
  font-weight: bold;
  border-bottom: 1px dashed var(--color-support1);
  transition: background 0.13s, color 0.13s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-support1);
  color: var(--color-primary);
}

@media (max-width: 1020px) {
  .main-nav ul {
    gap: 17px;
  }
  .cta-button {
    padding: 9px 20px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 11px; }
  .main-nav { gap: 9px; }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta-button {
    display: none;
  }
  .main-nav > a img {
    height: 28px;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 14px;
    right: 9px;
  }
  .main-nav {
    justify-content: flex-start;
  }
}

/* Main Header Fixes */
header { min-height: 62px; }

/* ================================================================
   HERO SECTION
================================================================ */
.hero {
  background: repeating-linear-gradient(105deg, #f9f3e1, #f9f3e1 22px, #eee5c9 22px, #eee5c9 44px);
  border-bottom: 3px solid var(--color-accent);
  padding: 38px 0 44px 0;
  min-height: 290px;
}
.hero h1 {
  font-size: 2.32rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero {
    padding: 24px 0 28px 0;
    min-height: 180px;
  }
  .hero h1 { font-size: 1.58rem; }
}

/* ================================================================
   FEATURES, CATEGORY, SERVICES, ABOUT, ETC.
================================================================ */
.features, .about-teaser, .services-teaser, .services-list, .product-categories, .why-choose-us, .brand-philosophy, .content-highlights, .faq, .contact-us, .gift-card-info, .legal, .thank-you, .cta-block {
  margin-bottom: 60px;
  padding: 40px 18px;
  background: var(--color-secondary);
  border-radius: 14px;
  box-shadow: 0 2px 20px var(--color-shadow);
}
@media (max-width: 768px) {
  .features, .about-teaser, .services-teaser, .services-list, .product-categories, .why-choose-us, .brand-philosophy, .content-highlights, .faq, .contact-us, .gift-card-info, .legal, .thank-you, .cta-block {
    padding: 23px 6px;
    margin-bottom: 36px;
  }
}

.services-list ul,
.why-choose-us ul,
.gift-card-info ul {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: column;
  list-style: disc inside;
  color: var(--color-black);
}
.services-list ul li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 7px;
  background: var(--color-background);
  border-radius: 9px;
  padding: 16px 15px 12px 15px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(32,38,58,0.07);
}
.services-list ul li img {
  height: 38px;
  width: 38px;
  margin-bottom: 6px;
}
.price {
  color: var(--color-support2);
  font-size: 1.0rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-support1);
  border-radius: 7px;
  padding: 4px 13px;
  display: inline-block;
  margin-top: 7px;
}

.cta-block { text-align: center; background: repeating-linear-gradient(-45deg, #f8e7c8, #f8e7c8 15px, #f4ead3 15px, #f4ead3 30px); }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 0;
  box-shadow: 0 -6px 30px rgba(32,38,58,0.10);
}
footer .container {
  padding: 0 14px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 26px 0 18px 0;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav.footer-nav,
footer nav.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav.footer-nav a,
footer nav.footer-legal a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s;
  margin-bottom: 4px;
  text-decoration: underline dotted 1.5px;
}
footer nav.footer-nav a:hover,
footer nav.footer-legal a:hover {
  color: var(--color-support1);
}
.footer-contact {
  font-size: 0.98rem;
  color: var(--color-support1);
  margin-top: 3px;
  line-height: 1.6;
}
.footer-contact a {
  color: var(--color-accent);
  text-decoration: underline dotted;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-icons img {
  height: 26px;
  width: 26px;
  border-radius: 3px;
  border: 2px solid var(--color-support1);
  background: var(--color-secondary);
  padding: 3px;
  box-shadow: 0 1.5px 6px rgba(32,38,58,0.05);
  transition: border-color 0.15s, filter 0.15s;
}
.social-icons img:hover {
  border-color: var(--color-accent);
  filter: brightness(1.11) contrast(1.14);
}
@media (max-width: 1050px) {
  footer .content-wrapper { gap: 21px; }
}
@media (max-width: 900px), (max-width: 768px) {
  footer .content-wrapper { flex-direction: column; gap: 18px; }
  footer nav.footer-nav, footer nav.footer-legal { flex-direction: row; flex-wrap: wrap; gap: 13px; }
}

/* ================================================================
   COOKIE CONSENT BANNER & MODAL
================================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-support1);
  color: #523717;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 12px 18px 12px;
  border-top: 2.5px dashed var(--color-support2);
  box-shadow: 0 -8px 32px rgba(100,80,28,0.18);
  animation: banner-slide-in 0.7s cubic-bezier(.68,.15,.59,1.4) forwards;
  gap: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
}
@keyframes banner-slide-in {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.06rem;
  max-width: 420px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
  background: var(--color-secondary);
  color: var(--color-primary);
  margin: 0 1px;
  box-shadow: 0 1.5px 6px rgba(32,38,58,0.07);
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: var(--color-support2);
  color: var(--color-secondary);
}
.cookie-btn.settings {
  background: var(--color-support3);
  color: var(--color-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(0.96);
  box-shadow: 0 3px 15px rgba(32,38,58,0.11);
  outline: none;
}
@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; gap: 13px; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; z-index: 3050;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,18,10,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-bg-fade 0.32s;
}
@keyframes modal-bg-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff7ec;
  padding: 36px 28px 32px 28px;
  border-radius: 19px;
  box-shadow: 0 8px 60px rgba(32,38,58,0.19);
  min-width: 320px;
  max-width: 98vw;
  position: relative;
  animation: modal-flyin 0.38s cubic-bezier(.54,1.36,.5,1.01);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes modal-flyin {
  from { transform: translateY(120px) scale(0.93); opacity:0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-support2);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 8px;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  gap: 17px;
  background: var(--color-support1);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
}
.cookie-pref-item label {
  flex: 1;
}
.cookie-pref-toggle {
  accent-color: var(--color-accent);
  width: 22px; height: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none; border: none;
  font-size: 1.7rem;
  color: var(--color-support2);
  cursor: pointer;
  transition: color 0.14s;
  border-radius: 4px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-primary);
  background: #f9f9f7ad;
  outline: none;
}
.cookie-pref-item.essential {
  background: #ede5d0;
  color: #8c6a2b;
  font-weight: bold;
}

@media (max-width: 430px) {
  .cookie-modal { padding: 21px 6px 19px 10px; min-width: 180px; }
}

/* ================================================================
   RESPONSIVE: GENERAL
================================================================ */
@media (max-width: 580px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.05rem; }
  .testimonial-card { flex-direction: column; gap: 10px; }
  .feature-grid, .category-grid,.tips-list,.faq-list { gap: 12px; }
}
@media (max-width: 410px) {
  .testimonial-card { padding: 10px; }
  .card { padding: 13px 6px; min-width: 100px; }
  .footer-contact { font-size: .90rem; }
}

/* ================================================================
   MICRO-INTERACTIONS, TRANSITIONS
================================================================ */
button, .cta-button, .cta-link, a, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.15s, color 0.15s, box-shadow 0.14s, transform 0.12s;
  cursor: pointer;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar { width: 9px; background: #f4ecd7; }
::-webkit-scrollbar-thumb {
  background: var(--color-support1);
  border-radius: 14px;
}

/* ========== SELECTION ========== */
::selection { background: #F3A84B; color: var(--color-white); }

/* ================================================================
   ACCESSIBILITY / FOCUS
================================================================ */
a:active, button:active, .cta-button:active, .cookie-btn:active {
  outline: 2px solid var(--color-support2);
  outline-offset: 2px;
}
input, button, .cta-button {
  outline: none;
}

/* ================================================================
   PRINT (BASIC)
================================================================ */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay { display:none; }
  body, .container { color: #222; background: #fff; }
}

/* ================================================================
   OVERRIDE UTILITY CLASSES
================================================================ */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-1 { margin-top: 8px!important; }
.mb-1 { margin-bottom: 8px!important; }

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