.ocrimg {
  position:absolute;
  top: 0;
  left:0;
  width: 600px !important;
  height: 600px !important;
  overflow: hidden;
}
.fx-banner {
  position: relative;
  width: 100%;
  height: 620px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  overflow: hidden;
}

.fx-banner-wrapper {
  display: flex;
  justify-content: center;
}

.fx-banner-img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  margin: 0;
  z-index: 1; 
}

.fx-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;

  pointer-events: none; /* 🔥 KEY FIX */
}

/* Re-enable interaction ONLY for text */
.fx-banner-content * {
  pointer-events: auto;
}


.fx-banner-text {
  color: #fff;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 400;
}

@media (max-width: 768px) {
  .fx-banner {
    height: 70vh;
  }

  .fx-banner-text {
    font-size: 28px;
  }
}

.fx-image-grid {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 120px;
}

/* shared image rules */
.fx-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* main image */
.fx-image.item-main {
  width: 70%;
}

/* overlapping image */
.fx-image.item-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* responsive */
@media (max-width: 768px) {
  .fx-image-grid {
    padding-bottom: 0;
  }

  .fx-image.item-main,
  .fx-image.item-overlap {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}



.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;
  margin: 0;

  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%;
  }
}
.fx-qi-section {
  width: 100%;
  padding: 80px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-qi-container {
  width: 100%;
  max-width: 1200px;
  margin: 0;
}

.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;
  margin: 0;

  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flat-wrap-iconbox-top {
    width: 100%;
  max-width: 900px;   /* control width */
  margin-left: auto;
  margin-right: auto;
  }

.wae-2 {
  width: 100%;
  max-width: 900px;   /* control width */
  margin-left: auto;
  margin-right: auto;
}

.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;
}

/* ================================
   Testimonial Item (Isolated)
================================ */

.fx-ts-item {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Title */
.fx-ts-title {
  font-size: 36px;
  /* font-weight: 500; */
  margin-bottom: 10px;
  /* color: #000; */
}

/* Quote icon */
.fx-ts-quote {
  margin-top: 6px;
}

.fx-ts-quote img {
  width: 44px;
  opacity: 0.35; /* very light like original */
}

/* Rating */
.fx-ts-rating {
  display: flex;
  gap: 6px;
  font-size: 16px;
  color: #ff7a45; /* orange stars like screenshot */
}

/* Testimonial text */
.fx-ts-text {
  font-size: 20px;
  line-height: 1.75;
  /* color: #333; */
  max-width: 560px;
}

/* Author */
.fx-ts-author {
  margin-top: 12px;
  margin-bottom: 42px;
}

.fx-ts-name {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* ================================
   Mobile tuning
================================ */

@media (max-width: 600px) {
  .fx-ts-title {
    font-size: 26px;
  }

  .fx-ts-text {
    font-size: 15.5px;
    line-height: 1.65;
  }
}


/* title */
.fx-shop-title {
  text-align: center;
  margin-bottom: 32px;
  width: 100%;
  max-width: 900px;   /* control width */
  margin-left: auto;
  margin-right: auto;
}

.fx-title {
  display: block;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}


.fx-subtitle {
  font-size: 16px;
  opacity: 0.85;
}

/* grid */
.fx-gram-grid {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 50px;
  margin: 0;
}

/* each card should share equal width */
.fx-gram-item{
  flex: 1;
  z-index: 10;
}

/* keep images filling cards */
.fx-gram-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  max-width: none !important;
}


/* hover effect */
.fx-gram-item:hover .fx-gram-img {
  transform: scale(1.06);
}

.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;
  margin: 0;

  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;
  margin: 0;
}

/* ===== Main ===== */
.fx-footer-main {
  padding: 80px 24px 60px;
  margin: 0;
}

.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;
  }
}


.fx-about-image-text__heading-2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;

  /* Editor-safe */
  word-break: break-word;
  white-space: normal;
}

.fx-about-image-text__text-2 {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  margin-top: 10px;
}
.fx-about-image-text__text-1 {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  margin-top: 10px;
}


