/* RESET & BASICS */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  background: #F1DFA0;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  color: #623E16;
  background-color: #F1DFA0;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0 0 16px 0;
  padding: 0 0 0 20px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
li {
  margin-bottom: 8px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* VINTAGE RETRO COLORS & PATTERNS */
:root {
  --primary: #623E16;
  --primary-dark: #4B2F0D;
  --secondary: #F1DFA0;
  --accent: #23616D;
  --white: #FFFFFF;
  --text-dark: #3A260B;
  --retro-bg: #F7F2E2;
  --retro-red: #C1582B;
  --retro-blue: #547392;
  --retro-yellow: #F1DFA0;
  --retro-green: #8C9B6B;
  --card-bg: #FFF8E6;
  --shadow: 0 2px 10px rgba(98,62,22,0.09);
  --border-radius: 16px;
  --retro-pattern: repeating-linear-gradient(135deg,#F1DFA0 0px,#F1DFA0 18px,#E6D3AA 18px,#E6D3AA 36px);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.1;
}
h1 {
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  text-shadow: 0 3px 0 #F1DFA0, 0 6px 12px #623E1622;
}
h2 {
  font-size: 2.1rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, span, a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.subheadline {
  font-size: 1.25rem;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--retro-red);
}

/* COMMON LAYOUT SECTIONS & FLEX PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 270px;
  flex: 1 1 330px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 #623E1626;
}
.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;
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 10px #623E1622;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px #AC774444;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 10px 0;
}

/* HERO SECTION */
.hero {
  background: var(--retro-pattern);
  min-height: 390px;
  border-bottom: 8px dotted var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 20px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  background: #FFF6CECC;
  padding: 44px 32px;
  border-radius: 24px 24px 80px 24px/24px 24px 32px 80px;
  border: 2px solid #E6D3AA;
  box-shadow: 0 8px 24px #E6D3AA33;
}

/* NAVIGATION (DESKTOP) */
header {
  background: var(--primary);
  box-shadow: 0 3px 8px #623E1640;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.main-nav img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li {
  margin: 0;
}
.main-nav ul li a {
  color: var(--secondary);
  font-family: 'Lato', Arial, sans-serif;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 8px 16px;
  border-radius: 13px;
  transition: background 0.18s, color 0.17s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--accent);
  color: var(--primary);
}
.cta-button {
  background: var(--accent);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.11rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 999px;
  padding: 12px 30px;
  box-shadow: 0 2px 12px #12798A19;
  margin-left: 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, color 0.17s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 18px #12798A33;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 2rem;
  margin-right: 16px;
  cursor: pointer;
  z-index: 105;
  position: relative;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  min-width: 280px;
  background: #FFF6DC;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2.4rem;
  cursor: pointer;
  margin-left: 16px;
  margin-bottom: 20px;
  z-index: 4000;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 24px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.03em;
  font-family: 'Lato', Arial, sans-serif;
  background: transparent;
  padding: 10px 24px 10px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.13s;
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}

/* Hide full navigation on mobile */
@media (max-width: 991px) {
  .main-nav ul {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO RESPONSIVE */
@media (max-width: 700px){
  .hero .container { padding: 0 6px; }
  .hero .content-wrapper {
    padding: 22px 8px;
    border-radius: 32px 32px 60px 24px/32px 24px 32px 40px;
  }
  .hero {
    min-height: unset;
    padding-bottom: 14px;
  }
}

/* FLEX GRIDS & LISTS (VARIOUS) */
.feature-grid,
.key-points-grid,
.benefits-grid,
.occasion-list,
.occasion-grid,
.product-list,
.testimonial-list,
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li,
.occasion-list li,
.product-list li {
  background: var(--card-bg);
  border-radius: 16px;
  flex: 1 1 260px;
  min-width: 225px;
  padding: 20px 16px 18px 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px #623E1621;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.19s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 28px #623E1641;
  transform: translateY(-4px) scale(1.01);
}
.occasion-grid {
  gap: 22px;
  justify-content: flex-start;
}
.occasion-card {
  background: var(--retro-yellow);
  border: 2px dashed var(--primary);
  border-radius: 17px;
  padding: 26px 18px;
  min-width: 205px;
  flex: 1 1 255px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #623E1622;
  transition: box-shadow 0.2s, border-color 0.22s;
}
.occasion-card:hover {
  border-color: var(--accent);
  box-shadow: 0 7px 30px #23616D22;
}
.benefits-grid > div, .key-points-grid > div {
  background: var(--card-bg);
  border-radius: 13px;
  box-shadow: 0 2px 10px #623E1611;
  padding: 18px 14px;
  min-width: 190px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}
.icon-list {
  gap: 24px;
  justify-content: flex-start;
}
.icon-list img {
  width: 48px;
  background: var(--retro-bg);
  border-radius: 50%;
  border: 1.8px solid var(--accent);
  padding: 9px;
  box-shadow: 0 1px 7px #623E1611;
}
.quick-suggestions {
  background: var(--retro-bg);
  color: var(--primary);
  border-radius: 10px;
  font-size: 1.01rem;
  padding: 17px 18px;
  margin: 24px 0 0 0;
  box-shadow: 0 1px 7px #623E1612;
}

/* TESTIMONIALS */
.testimonials, .testimonial-list {
  background: #FFF6DC;
  border-radius: 22px;
  box-shadow: 0 2px 12px #623E161D;
  padding: 32px 16px;
  margin-top: 40px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
}
.testimonial-card p {
  color: #3A260B;
  font-size: 1.13rem;
  margin: 0 0 7px 0;
}
.testimonial-card .author {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  color: var(--accent);
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card .star-rating {
  color: #C1582B;
  font-size: 1.3rem;
  letter-spacing: 0.13em;
  font-family: 'Lato', Arial, sans-serif;
}
.customer-ratings {
  padding: 17px 0 0 0;
  font-size: 1.04rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

/* CALL TO ACTION */
.cta {
  background: var(--accent);
  color: var(--white);
  border-radius: 22px;
  box-shadow: 0 4px 30px #12798A2D;
  margin: 60px 0;
  padding: 48px 18px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.cta h2 {
  color: var(--white);
  border-bottom: 2px dashed var(--retro-yellow);
}
.cta .cta-button {
  background: var(--primary);
  color: var(--secondary);
  font-size: 1.26rem;
  margin: 0;
}
.cta .cta-button:hover {
  background: var(--white);
  color: var(--primary);
}
.contact-short p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 7px 0;
  color: var(--white);
  font-size: 1.07rem;
}
.contact-short img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  background: var(--white);
  border-radius: 50%;
  padding: 2px;
}

/* FOOTER */
footer {
  background: #2E1B07;
  color: var(--secondary);
  padding: 48px 0 22px 0;
  font-size: 1rem;
  box-shadow: 0 -3px 8px #623E1640;
}
.footer-logo img {
  width: 110px;
  margin-bottom: 17px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
  padding-top: 10px;
}
.footer-nav a {
  color: var(--secondary);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.17s;
  font-size: 0.97rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #F1DFA0;
  font-size: 0.93rem;
}
.footer-contact img {
  width: 15px;
  margin-right: 7px;
  vertical-align: middle;
  filter: sepia(1) contrast(1.2) brightness(1.8);
}

/* ADDRESS & BUSINESS HOURS */
.address-info,
.business-hours {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px #623E1611;
  margin: 0 0 24px 0;
  font-size: 1.01rem;
}
.address-info img {
  width: 17px;
}

/* FAQ, TIMELINE, GIFT-TIPS */
.faq-list > li, .gift-tips-list > li {
  background: var(--retro-bg);
  border-radius: 9px;
  padding: 14px 12px;
  margin-bottom: 13px;
}
.timeline {
  background: var(--retro-blue);
  color: var(--white);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 1.04rem;
  margin-top: 22px;
  box-shadow: 0 1px 6px #54739233;
}

/* MISCELLANEOUS (CATEGORY FILTERS, CUSTOMER RATINGS, ETC) */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  background: var(--retro-bg);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 1rem;
  margin-bottom: 22px;
}
.category-filters span {
  color: var(--primary);
  font-weight: 600;
}
.category-filters a {
  color: var(--primary);
  text-decoration: underline dotted;
  font-weight: 600;
  transition: color 0.15s;
}
.category-filters a:hover {
  color: var(--accent);
}

/* SPACING FOR ALL MAIN SECTIONS */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 800px) {
  main section {
    padding: 28px 7px;
  }
}

/* RESPONSIVE FLEX LAYOUTS & UTILITIES */
@media (max-width: 991px) {
  .container {
    padding: 0 8px;
  }
  .feature-grid, .key-points-grid, .occasion-grid, .benefits-grid, .testimonial-slider, .testimonial-list, .product-list, .occasion-list {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .key-points-grid, .occasion-grid, .product-list, .benefits-grid, .testimonial-slider, .testimonial-list, .occasion-list, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .card, .testimonial-card, .occasion-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .main-nav img, .footer-logo img {
    height: 32px;
    width: auto;
  }
  .footer-logo img {
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .section,
  main section {
    padding: 20px 2px;
    margin-bottom: 36px;
  }
  .cta {
    padding: 28px 0px;
    margin: 22px 0 20px 0;
  }
  .footer-nav {
    gap: 7px;
  }
}

/* BUTTONS & TRANSITIONS */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 11px 26px;
  box-shadow: 0 2px 8px #12798A12;
  transition: background 0.18s, color 0.14s, box-shadow 0.19s;
}
button:hover, button:focus,
input[type="button"]:hover, input[type="submit"]:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* LINKS HOVER */
a {
  transition: color 0.16s, background 0.18s;
}
a:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 1px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F7F2E2cc;
  box-shadow: 0 -4px 28px #2E1B0730;
  border-top: 2.5px solid #623E16;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 18px 20px 22px;
  z-index: 30000;
  animation: cookie-banner-in 0.46s cubic-bezier(.48,.95,.39,1.00);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  padding: 10px 22px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, box-shadow 0.15s;
  box-shadow: 0 2px 7px #12798A1A;
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--secondary);
  border: 1.4px dashed var(--accent);
}
.cookie-btn.reject {
  background: transparent;
  color: var(--primary);
  border: 1.4px solid var(--primary);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--retro-blue);
  color: var(--white);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--retro-red);
  color: var(--white);
  border-color: var(--retro-red);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 31000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 25, 8, 0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  animation: cookie-modal-in 0.33s cubic-bezier(.49, .13, .38, 1.05);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal__content {
  width: 94vw;
  max-width: 430px;
  background: #FFFDFB;
  border-radius: 24px;
  box-shadow: 0 10px 55px #623E1640;
  padding: 34px 27px 23px 27px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal__section {
  margin-bottom: 13px;
  background: var(--retro-bg);
  border-radius: 12px;
  padding: 11px 15px;
}
.cookie-modal__section label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 7px;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal__section input[type="checkbox"] {
  accent-color: var(--accent);
  margin-right: 7px;
}
.cookie-modal__section .cookie-lock {
  font-size: 1.04rem;
  margin-right: 6px;
  color: var(--accent);
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 9px;
  justify-content: flex-end;
}

/* Hide modal and banner by default (should be managed by JS) */
.cookie-banner[hidden], .cookie-modal[hidden] {
  display: none !important;
}

/* RETRO NOSTALGIC DECOR */
.hero,
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  position: absolute;
  bottom: 14px;
  right: 18px;
  width: 90px;
  height: 22px;
  background: repeating-linear-gradient(90deg,#C1582B 0 7px,#F7F2E2 7px 14px);
  opacity: 0.13;
  border-radius: 6px;
  pointer-events: none;
  z-index: 0;
}
.section:after {
  content: '';
  position: absolute;
  top: 18px;
  left: 11px;
  width: 12px;
  height: 92px;
  background: repeating-linear-gradient(180deg,#23616D 0 7px,#F7F2E2 7px 16px);
  opacity: 0.15;
  border-radius: 6px;
  pointer-events: none;
  z-index: 0;
}
main section, .section, .hero, .cta {
  z-index: 1;
}

/* OVERRIDES FOR PRINT & REMOVE HIGHLIGHTS */
@media print {
  header, footer, .cta, .cookie-banner, .mobile-menu { display: none !important; }
  main { margin: 0 !important; }
  section {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: none !important;
  }
}

/* SCROLLBAR STYLING (vintage look) */
::-webkit-scrollbar {
  width: 11px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: #E6D3AA;
  border-radius: 11px;
  border: 2px solid var(--retro-yellow);
}

/* ANIMATION TRANSITIONS */
.card, .testimonial-card, .feature-grid li, .occasion-card, .benefits-grid > div, .key-points-grid > div {
  transition: box-shadow 0.18s, transform 0.2s, border-color 0.22s;
}

/* ACCESSIBILITY UTILS */
:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/* Make sure nothing overlaps, enough space */
main > section:not(:last-child) {
  margin-bottom: 60px;
}

/* Utility classes for spacing */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-36 { margin-bottom: 36px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/*---------------------- VINTAGE RETRO FONTS --------------------------*/
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

/* Fallback font stack already included above */

/*------------------------ END OF FILE -------------------------------*/
