/* ================================
   Contact Page Title Section
   ================================ */
/* iframe used as layout block (map, video, embed) */
.fx-iframe,
iframe {
  width: 100%;
  /* height: 660px !important; */
  /* max-height: none !important; */
  height: auto;
  display: block;
}

.fx-contact-visit {
  position: relative;
  width: 100%;

  min-height: 720px !important;   /* ⛔ prevents shrinking too much */
  height: auto;        /* ✅ allows increasing height */
}

.fx-contact-visit .fx-iframe {
  width: 100%;
  height: 100%;
  min-height: 520px !important;   /* match section min-height */
  border: 0;
}



.fx-page-title--contact {
  width: 100%;
  box-sizing: border-box;

  /* spacing controlled ONLY here */
  padding: 80px 24px;

  /* background (adjust if needed) */
  background-color: #fbf7f0;

  /* prevent overlap */
  overflow: hidden;
}

/* inner wrapper */
.fx-page-title--contact .fx-page-title__inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* heading */
.fx-page-title--contact .fx-page-title__heading {
  margin: 0;

  font-size: 48px;
  line-height: 1.2;
  /* padding-bottom: 10px !important; */
  min-height: 1em !important;
  align-items:center !important;
  /* min-height: 160px; */
  font-weight: 100;

  /* IMPORTANT for editor text resize */
  white-space: normal;
  word-break: break-word;
}

.fx-icon-section {
  padding: 60px 0;
}

.fx-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.fx-icon-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px;
  box-sizing: border-box;

  /* editor friendly */
  min-height: 80px;
}

.fx-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #eee;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
}

.fx-content {
  flex: 0 0 auto; /* 🔑 critical */
}

.fx-title {
  font-weight: 600;
}

.fx-text {
  font-size: 14px;
  opacity: 0.7;
}

/* ===== Page Title Section ===== */
.fx-page-title {
  width: 100%;
  min-height: 260px;
  padding: 40px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  /* ✅ MATCH ORIGINAL */
  background-color: #fbf7f0;
}

@media (max-width: 768px) {
  .fx-page-title {
    flex-direction: column;
    align-items: center; /* optional */
  }
}


/* Inner wrapper */
.fx-page-title-inner {
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Heading */
.fx-heading {
  /* font-family: "layfair Display", serif; */
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.fx-breadcrumbs li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

/* Breadcrumbs */
.fx-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  align-items: center;
  gap: 8px;
}

.fx-breadcrumbs a {
  text-decoration: none;
}

/* Separator */
.fx-sep {
  display: flex;
  align-items: center;
}

/* ===== Section owns spacing ===== */
.fx-contact-section {
  width: 100%;
  background: #f5f5f5;

  /* 🔑 spacing must live here */
  padding: 80px 20px;

  box-sizing: border-box;

  /* ✅ ADDED: prevent margin-collapsing & overlap */
  overflow: auto;

  /* ✅ ADDED: sections must not rely on margins */
  margin: 0;
}

/* ===== Container ===== */
.fx-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 40px;

  /* ✅ ADDED: ensure container contributes to height */
  box-sizing: border-box;
}

/* ===== Title ===== */
.fx-title {
  text-align: center;
  max-width: 700px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  /* ✅ ADDED: no collapsing margins */
  margin: 0;
}

.fx-heading {
  font-size: 42px;
  margin: 0;
}

.fx-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ===== Form ===== */
.fx-form {
  width: 100%;
  max-width: 700px;

  display: flex;
  flex-direction: column;
  gap: 20px;

  /* ✅ ADDED */
  margin: 0;
}

/* Row for name/email */
.fx-row {
  display: flex;
  gap: 15px;
}

.fx-row input {
  flex: 1;
}

/* Inputs */
.fx-form input,
.fx-form textarea {
  width: 100%;
  padding: 14px 16px;
  box-sizing: border-box;
}

/* Button */
.fx-btn {
  background: #000;
  color: #fff;
  align-self: center;
  padding: 12px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;

  /* ✅ ADDED */
  margin: 0;
}

/* Hover like Ecomus */
.fx-btn:hover {
  background: #222;
}

/* ===============================
   STORE INFO SECTION
================================ */

.fx-store-info {
  /* width: 100%;
  box-sizing: border-box; */

  /* spacing controlled ONLY here */
  padding: 2.5rem 1.5rem;

  /* never clip content */
  overflow: visible;
}

/* Inner wrapper */
.fx-store-inner {
  max-width: 420px;

  display: flex;
  flex-direction: column;
  gap: 2rem; /* 🔑 auto-adjusts height */

  box-sizing: border-box;
}

/* Title */
.fx-store-title {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0;
}

/* Info list */
.fx-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Each block */
.fx-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Labels */
.fx-info-item strong {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Text */
.fx-info-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;

  /* 🔑 prevents left overflow */
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Social icons */
.fx-socials {
  display: flex;
  gap: 1rem;

  padding: 0;
  margin: 0;
  list-style: none;

  flex-wrap: wrap; /* 🔑 prevents horizontal overflow */
}

.fx-socials li {
  width: 2.5rem;
  height: 2.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;

  flex-shrink: 0;
}

.fx-footer {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

/* ===== Main ===== */
.fx-footer-main {
  padding: 80px 24px 60px;
}

.fx-footer-grid {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

/* ===== Columns ===== */
.fx-footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fx-footer-col h6 {
  font-size: 18px !important;
  margin-bottom: 10px !important;
  font-weight: 500 !important;
}

.fx-footer-col p,
.fx-footer-col a,
.fx-footer-col li {
  font-size: 14px;
  line-height: 1.7;
}

.fx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== Brand ===== */
.fx-footer-logo {
  width: 140px;
  margin-bottom: 16px;
}

.fx-footer-link {
  margin-top: 8px;
  display: inline-block;
  border-bottom: 1px solid #000;
  width: fit-content;
}

/* ===== Social ===== */
.fx-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.fx-footer-socials li a {
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Newsletter ===== */
.fx-footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.fx-footer-newsletter input {
  flex: 1;
  padding: 12px;
}

.fx-footer-newsletter button {
  padding: 12px 20px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ===== Selects ===== */
.fx-footer-selects {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ===== Bottom ===== */
.fx-footer-bottom {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid #eee;
  padding: 20px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 14px;
}

.fx-footer-payments img {
  height: 26px;
  margin-left: 10px;
}

/* ================================
   Footer – Mobile Responsive
================================ */

/* Tablet & below */
@media (max-width: 900px) {
  .fx-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  /* Main padding */
  .fx-footer-main {
    padding: 56px 16px 40px;
  }

  /* Grid becomes single column */
  .fx-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Store info width fix */
  .fx-store-inner {
    max-width: 100%;
  }

  /* Footer columns */
  .fx-footer-col {
    gap: 10px;
  }

  .fx-footer-col h6 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }

  .fx-footer-col p,
  .fx-footer-col a,
  .fx-footer-col li {
    font-size: 14px;
  }

  /* Newsletter */
  .fx-footer-newsletter {
    flex-direction: column;
    gap: 12px;
  }

  .fx-footer-newsletter button {
    width: 100%;
  }

  /* Selects */
  .fx-footer-selects {
    flex-direction: column;
    gap: 10px;
  }

  /* Social icons */
  .fx-footer-socials {
    gap: 10px;
  }

  /* Bottom bar */
  .fx-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    padding: 16px;
    text-align: left;
  }

  .fx-footer-payments img {
    height: 22px;
    margin-left: 0;
    margin-right: 8px;
  }
}

/* ===============================
   ABOUT IMAGE + TEXT SECTION
   =============================== */

.fx-about-image-text {
  width: 100%;
  box-sizing: border-box;

  /* Section owns spacing */
  padding: 100px 24px;

  /* Prevent margin collapse & overlap */
  overflow: hidden;
}

/* Container */
.fx-about-image-text__container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;
  box-sizing: border-box;
}

/* Image */
.fx-about-image-text__image {
  width: 100%;
}

.fx-about-image-text__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content */
.fx-about-image-text__content {
  max-width: 520px;

  display: flex;
  flex-direction: column;
  gap: 20px;

  box-sizing: border-box;
}

/* Heading */
.fx-about-image-text__heading {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;

  /* Editor-safe */
  word-break: break-word;
  white-space: normal;
}

/* Text */
.fx-about-image-text__text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;

  /* Prevent overflow on resize */
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
  .fx-about-image-text__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fx-about-image-text__content {
    max-width: 100%;
  }
}

/* ================================
   Quality Section (Template-Accurate)
================================ */

.fx-qi-section {
  width: 100%;
  padding: 80px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-qi-container {
  width: 100%;
  max-width: 1200px;
}

.fx-qi-wrap {
  /* background: #f7f7f7; */
  border-radius: 12px;
  padding: 64px 48px;

  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Title */
.fx-qi-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.fx-qi-title h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 14px;
}

.fx-qi-title p {
  font-size: 15px;
  color: #555;
  margin: 4px 0;
}

/* Grid */
.fx-qi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Cards */
.fx-qi-card {
  /* background: #ffffff; */
  border-radius: 14px;
  padding: 36px 28px;

  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fx-qi-icon {
  font-size: 34px;
  line-height: 1;
}

.fx-qi-card h3 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 2px;
}

.fx-qi-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .fx-qi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  /* Section padding */
  .fx-qi-section {
    padding: 56px 16px;
  }

  .fx-qi-wrap {
    padding: 40px 20px;
    gap: 40px;
  }

  /* Title */
  .fx-qi-title h2 {
    font-size: 28px;
  }

  .fx-qi-title p {
    font-size: 14px;
  }

  /* Cards */
  .fx-qi-card {
    padding: 28px 20px;
    gap: 12px;
  }

  .fx-qi-card h3 {
    font-size: 20px;
  }

  .fx-qi-card p {
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* Icon rings */
  .fx-qi-icon-wrap-1,
  .fx-qi-icon-wrap-2,
  .fx-qi-icon-wrap-3 {
    width: 64px;
    height: 64px;
    margin-bottom: 6px;
  }

  .fx-qi-icon-wrap-1 i,
  .fx-qi-icon-wrap-2 i,
  .fx-qi-icon-wrap-3 i {
    font-size: 26px;
  }
}


.fx-qi-icon-wrap-1,
.fx-qi-icon-wrap-2,
.fx-qi-icon-wrap-3 {
  width: 90px; /* was 64 */
  height: 90px;

  border: 1.5px solid #e5e5e5;
  border-radius: 50%;
  border-color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 10px;
  box-sizing: border-box;
}

/* Icon itself */
.fx-qi-icon-wrap-1,
.fx-qi-icon-wrap-2,
.fx-qi-icon-wrap-3 i {
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  color: #222;
}
