:root {
  --bg-main: #6f8f8b;
  --bg-alt: #d8c88a;
  --bg-soft: #ede3c4;
  --text-dark: #1e1e1e;
  --text-light: #ffffff;
  --accent: #2f5f5b;
}

/* =========================
   GLOBAL
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--bg-soft);
  color: var(--text-dark);
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background: #111;
  color: white;
  padding: 10px 18px;
}

.top-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.top-left span {
  margin-right: 18px;
}

.top-right a {
  color: white;
  margin-left: 12px;
}

/* =========================
   BOUTIQUE RIBBON ALERT
========================= */
.ribbon-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(216, 200, 138, 0.95),
    rgba(237, 227, 196, 0.95)
  );
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 900;

  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
}

.ribbon-alert.show {
  transform: translateY(0);
  opacity: 1;
  margin-top: 37px;
}

body.ribbon-active {
  padding-top: 54px; /* adjust if your ribbon is taller */
}

.ribbon-inner {
  max-width: 1400px;
  margin: auto;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LEFT SIDE */
.ribbon-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.ribbon-left i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ACTIONS */
.ribbon-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ribbon-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.ribbon-link:hover {
  border-color: var(--accent);
  opacity: 0.85;
}

.ribbon-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.ribbon-close:hover {
  opacity: 1;
}

/* MOBILE STACK */
@media (max-width: 640px) {
  .ribbon-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(47, 95, 91, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/store-front.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  max-width: 800px;
  padding: 40px;
}

.hero-logo {
  width: 100%;
  margin-bottom: 30px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  padding: 14px 36px;
  background: var(--bg-alt);
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   INTRO STRIP
========================= */
.intro-strip {
  background: var(--bg-alt);
  padding: 80px 20px;
  text-align: center;
}

.intro-inner {
  max-width: 900px;
  margin: auto;
}

.intro-strip h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* =========================
   PRODUCTS
========================= */
.products {
  padding: 80px 0;
}

.product-section {
  padding: 80px 20px;
  background: var(--bg-soft);
}

.product-section.alt {
  background: #e0d2a5;
}

.product-header {
  max-width: 1400px;
  margin: auto;
  margin-bottom: 40px;
}

.product-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.product-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  border-radius: 6px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card span {
  display: block;
  padding: 14px;
  font-weight: 700;
  text-align: center;
}

/* =========================
   FEATURED BRANDS
========================= */
.featured-brands {
  background: var(--bg-main);
  color: white;
  padding: 100px 20px;
}

.featured-brands h2 {
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
}

.brand-gallery {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .brand-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.brand-tile {
  display: block;
  color: white;
  text-decoration: none;
  background: #000;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.brand-tile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.75;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.brand-tile:hover img {
  transform: scale(1.1);
  opacity: 0.4;
}

.brand-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.brand-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  background: var(--bg-alt);
  padding: 100px 20px;
  text-align: center;
}

.testimonials h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  margin-bottom: 50px;
}

.testimonial-row {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .testimonial-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.65);
  padding: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  border-radius: 8px;
}

.testimonial span {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* =========================
   FAQ TABS
========================= */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.faq-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.faq-tab.active {
  background: var(--bg-alt);
  color: #000;
  border-color: transparent;
}

/* =========================
   FAQS – MODERN, RESPONSIVE
========================= */
.faqs {
  background: var(--bg-main);
  color: white;
  padding: 110px 20px;
}

.faqs h2 {
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 50px;
  letter-spacing: 0.02em;
}

/* Tabs wrap: scroll on mobile, centered on desktop */
.faq-tabs {
  max-width: 1100px;
  margin: 0 auto 34px;
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* firefox */
}

.faq-tabs::-webkit-scrollbar {
  display: none;
}

.faq-tab {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.faq-tab:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.faq-tab.active {
  background: linear-gradient(
    90deg,
    rgba(216, 200, 138, 0.95),
    rgba(237, 227, 196, 0.95)
  );
  color: #111;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

/* Category container */
.faq-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* category show/hide */
.faq-category {
  display: none;
}
.faq-category.active {
  display: block;
}

/* Grid of cards */
.faq-category.active {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .faq-category.active {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
}

/* FAQ Card */
.faq-card {
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

/* Question button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  padding: 18px 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  font-size: 1.02rem;
  font-weight: 800;
  text-align: left;
  line-height: 1.3;
}

.faq-question i {
  flex: 0 0 auto;
  font-size: 1rem;
  opacity: 0.9;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

/* Answer panel: animated expand */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.34s ease,
    opacity 0.26s ease,
    transform 0.26s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* Open state */
.faq-card.open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 200, 138, 0.6);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.38);
}

.faq-card.open .faq-answer {
  max-height: 260px; /* enough for 2-4 lines; adjust if needed */
  opacity: 1;
  transform: translateY(0);
}

.faq-card.open .faq-question i {
  transform: rotate(180deg);
  opacity: 1;
}

/* Accessibility: focus */
.faq-tab:focus-visible,
.faq-question:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 200, 138, 0.75);
  border-radius: 999px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #1f1f1f;
  color: white;
  padding: 80px 20px 30px;
}

.footer-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand img {
  width: 220px;
  margin-bottom: 20px;
}

.footer-hours ul {
  list-style: none;
  padding: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-map .map-frame {
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
  border-radius: 8px;
}

.footer-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* =========================
   SUBMIT BUTTON PROGRESS
========================= */
.contact-button-two {
  position: relative;
  overflow: hidden;
}

.contact-button-two.loading {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.85);
}

.contact-button-two.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(216, 200, 138, 0.2),
    rgba(216, 200, 138, 0.9),
    rgba(216, 200, 138, 0.2)
  );
  animation: progressSweep 1.2s linear infinite;
}

@keyframes progressSweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

/* =========================
   SLIDE-UP SUCCESS TOAST
========================= */
.success-toast {
  position: fixed;
  left: 50%;
  bottom: -120px; /* physically off-screen */
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    bottom 0.35s ease,
    opacity 0.2s ease;
  z-index: 2000;
  opacity: 0;
}

/* When active, it rises into view */
.success-toast.active {
  bottom: 24px;
  opacity: 1;
}

.toast-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.toast-text strong {
  font-weight: 700;
}

.toast-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.8;
}

.toast-close:hover {
  opacity: 1;
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
  background: var(--bg-soft);
  padding: 100px 20px;
}

.contact-inner {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-field.full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Submit Button */
.contact-button-two {
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.contact-button-two:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  background: var(--bg-main);
}
