* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Calibri", "Roboto", Arial, serif;
  background-color: #f7f8fa;
}

html {
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
}

/* ✅ Black overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* adjust darkness here */
  z-index: 1;
}

/* ✅ Ensure your hero content sits above the overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  /* max-width: 600px; */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.hero-content h1 {
  font-size: 55px;
  font-weight: bold;
  /* margin-bottom: 25px; */
}
.hero_description {
  margin-bottom: 20px;
  font-size: 18px;
}
.features-list-new {
  list-style: none;
  /* margin-bottom: 30px; */
  margin: 10px 0;
}

.features-list-new li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.features-list-new li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn {
  padding: 0px 25px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 9px !important;
  transition: all 0.3s;
  height: 40px;
  display: flex;
  align-items: center;
}

.btn-primary {
  background-color: #025fc7;
  color: #fff;
}

.btn-link {
  color: white !important;
  text-decoration: none !important;
}

.btn-primary:hover {
  background-color: #0061c8;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.rating {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.stars {
  color: #ffd700;
  font-size: 18px;
}

/* Features Bar */
.features-bar {
  background-color: #1a1a1a;
  padding: 8px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}

.feature-item-prev {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.feature-icon {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.feature-icon i {
  margin-left: 1.4px;
}
.feature-text {
  font-size: 14px;
  font-weight: 500;
}

/* Popular Categories Section */
.popular-categories {
  padding: 80px 50px;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.category-card {
  width: 288px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(235, 235, 235);
  border-radius: 14px;
  cursor: pointer;
}

.category-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.category-card:hover .image-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}

.overlay-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.overlay-icon:hover {
  background: #fff;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.overlay-icon i {
  font-size: 18px;
  color: #333;
}

.category-info {
  padding: 25px;
  text-align: center;
  margin: 12px 0;
}

.category-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.category-title::after {
  color: #0066cc;
}

.category-price {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.category-price span {
  color: #0066cc;
  font-weight: bold;
}

.quote-btn {
  background-color: #025fc7;
  color: #fff;
  border: none;
  padding: 8px 25px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background-color: #0061c8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 97, 200, 0.3); /* #0061C8 at 30% */
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
  }

  to {
    transform: scale(1);
  }
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.2);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.custom-patches {
  background-color: #1a1a1a;
  margin-bottom: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
}
.custom-patches-max {
  display: flex;
  align-items: center;
  gap: 30px;
}
.content-section-first {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-section-first p {
  max-width: 500px;
}
.content-section {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: min(65vw, 1300px);
  margin: 0 auto;
}

.content-section h2,
.content-section-first h2 {
  font-size: 36px;
}

.content-section button {
  max-width: 180px;
}

.size-guide-header {
  text-align: center;
  margin-bottom: 40px;
}

.size-guide-header h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Tab Navigation */
.tab-navigation {
  display: inline-flex;
  background: #f1f1f1;
  border-radius: 50px;
  padding: 5px;
  gap: 0;
}

.tab-btn {
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #333;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: #025fc7;
  color: #fff;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Size Guide Grid */
.size-guide-grid {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 14px;
}

.size-guide-card {
  /* flex: 0 1 calc(25% - 30px); */
  /* background: #fff; */
  border-radius: 10px;
  overflow: visible;
  text-align: center;
  transition: all 0.3s ease;
  /* max-width: 286px; */
  width: 22%;
}

.size-guide-image:hover {
  transform: scale(1.5);
}

.size-guide-image {
  width: 100%;
  object-fit: cover;
  background-color: #f0f0f0;
}

.size-guide-info {
  padding: 25px 20px;
}

.size-guide-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.size-guide-size {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Free Quote Button */
.quote-button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.free-quote-btn {
  background-color: #0061c8;
  color: #fff;
  border: none;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3); */
}

.free-quote-btn:hover {
  background-color: #025fc7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 97, 200, 0.3); /* #0061C8 at 30% */
}

.inspiration-gallery {
  padding: 80px 50px;
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 42px;
  color: #000;
  margin-bottom: 15px;
  font-weight: bold;
}

.gallery-header p {
  font-size: 16px;
  color: #666;
}

/* Swiper Container */
.gallery-swiper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-image-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gallery-image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #fff;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  color: #333;
  font-weight: bold;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Pagination */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #333;
  width: 30px;
  border-radius: 5px;
}

.custom-patches-new {
  background: url("../images/Custom_Patches.jpg");
  background-position: auto;
  height: 440px;
  background-size: cover;
  padding: 60px 180px;
  display: flex;
}

.custom-patches-new .content-section {
  justify-content: center;
}

.mobile-section {
  display: none;
}

.desktop-banner img {
  width: 100%;
}

.desktop-gallery-section {
  max-width: 85vw;
  margin: 30px auto;
}

.gallery-header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.heading-and-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.heading-text {
  padding: 0 10px;
  border-bottom: 1px solid black;
}

.heading-text h1 {
  font-size: 20px;
}

.gallery-main-container {
  padding: 10px;
  background-color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  max-width: 1140px !important;
  margin: 0 auto;
  justify-content: center;
}

.gallery-free-quote-btn {
  background-color: #025fc7;
  padding: 10px 12px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}
.gallery-link {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.image-box {
  cursor: pointer;
  width: 218px;
  height: 218px;
}

.image-box img {
  width: 100%;
  height: 100%;
}

.shipping-alert {
  background-color: rgb(2, 104, 2);
  color: rgb(255, 255, 255);
  padding: 0.75rem max(50% - 525px, 3vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heading-shipping {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-sample {
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  padding: 0.7em 0.8em;
  min-width: 9em;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.pop-wrapper {
  max-width: 390px !important;
  height: 390px !important;
}

.popular-categories-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.desktop-gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  /* toggled with .open */
  align-items: center;
  /* center the dialog */
  justify-content: center;
  /* center the dialog */
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  padding: 24px;
}

.desktop-gallery-modal.open {
  display: flex;
}

.desktop-gallery-modal__dialog {
  position: relative;
  width: 980px;
  max-width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.desktop-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
}

.desktop-gallery-modal__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333333;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
}

.desktop-gallery-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* ======== MAIN SLIDER ======== */
.gallery-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* keep the swiper centered */
}

.gallery-main .swiper {
  width: 100%;
  display: flex;
  /* Swiper wrapper is flex; keep container flex too */
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  /* breathing room for 3D transforms */
  /* perspective: 1000px; */
}

.gallery-main .swiper-wrapper {
  /* display: flex; */
  /* ensure flex for proper gaps */
  /* gap: 20px; */
  /* visual gap; Swiper still uses JS spaceBetween */
}

.gallery-main .swiper-slide {
  width: 500px;
  /* centered image size */
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  /* use flex instead of grid */
  align-items: center;
  justify-content: center;
  background: #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 400ms ease, filter 300ms ease, opacity 300ms ease;
}
.gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Center slide (active) pop */
.gallery-main .swiper-slide-active {
  transform: translateZ(0) scale(1, 1);
  filter: none;
  opacity: 1;
}

/* Left and Right neighbor transforms – EXACT per request */
.gallery-main .swiper-slide-prev {
  transform: translate3d(0px, 0px, -153.2px) rotateX(0deg) rotateY(-9.2deg)
    scale(1);
  filter: saturate(0.8) brightness(0.9);
  opacity: 1;
}

.gallery-main .swiper-slide-next {
  transform: translate3d(0px, 0px, -118.6px) rotateX(0deg) rotateY(6.6deg)
    scale(1);
  filter: saturate(0.8) brightness(0.9);
  opacity: 1;
}

/* Any slide that is not active or direct neighbor (fallback) */
.gallery-main
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(
    .swiper-slide-next
  ) {
  transform: scale(0.5, 0.86);
  filter: saturate(0.75) brightness(0.85);
  opacity: 0.9;
}

/* Nav buttons */
.gallery-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  color: #ffffff;
  border: 1px solid #333333;
  cursor: pointer;
  z-index: 3;
}

.gallery-nav-button:hover {
  background: #2a2a2a;
}

.gallery-button-prev {
  left: 0;
}

.gallery-button-next {
  right: 0;
}

/* ======== CAPTION & CTAS ======== */
.gallery-meta {
  margin: 18px auto 10px;
  text-align: center;
  max-width: 780px;
  color: #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-title {
  color: #ffffff;
  font-weight: 700;
}

.gallery-sub {
  color: #bdbdbd;
  margin-top: 6px;
  font-size: 14px;
}

.actions {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======== THUMB STRIP ======== */
.gallery-thumbs {
  margin: 14px auto 0;
  width: 980px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumbs .swiper {
  width: 100%;
  padding: 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumbs .swiper-wrapper {
  display: flex;
  gap: 12px;
}

.gallery-thumbs .swiper-slide {
  width: 118px !important;
  /* fixed thumb size */
  height: 118px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Active thumb = red border */
.gallery-thumbs .swiper-slide-thumb-active {
  border-color: #ff5a4f;
  box-shadow: 0 0 0 2px #ff5a4f inset;
}
.category-single {
  width: 390px !important;
}
/* Card wrapper */
.hover-video-card {
  /* width: 390px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hover-video-card .category-image-wrapper {
  position: relative;
  width: 100%;
  /* height: 250px; */
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image + Video */
.hover-video-card .category-thumb,
.hover-video-card .category-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Fade behavior */
.hover-video-card .category-thumb {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.hover-video-card .category-card-video {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hover-video-card:hover .category-thumb {
  opacity: 0;
}

.hover-video-card:hover .category-card-video {
  opacity: 1;
}

/* Overlay */
.hover-video-card .image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: opacity 0.25s ease;
}

.hover-video-card:hover .image-overlay {
  opacity: 0;
}

/* Icons (z-index ensures above video) */
.hover-video-card .play-icon,
.hover-video-card .zoom-icon {
  position: absolute;
  color: rgb(96, 97, 97);
  z-index: 3;
  transition: opacity 0.25s ease;
}

/* Play icon bottom-right */
.hover-video-card .play-icon {
  bottom: 10px;
  right: 10px;
  font-size: 40px;
  opacity: 0.9;
  pointer-events: none;
}

/* Zoom icon top-right */
.hover-video-card .zoom-icon {
  top: 10px;
  right: 10px;
  font-size: 20px;
  opacity: 0.9;
  cursor: pointer;
}

/* Hide play icon on hover, keep zoom visible */
.hover-video-card:hover .play-icon {
  opacity: 0;
}

/* Info */
.hover-video-card .category-info {
  text-align: center;
  margin-top: 12px;
}

.hover-video-card .category-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* .categories-container videos */

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.open {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.close-modal:hover {
  color: #ff7f50;
}

/* Section shell */
.templates-section {
  width: 100%;
  /* background:#f7f8fa; */
  padding: 0px 16px 60px;
  display: flex;
  /* flex-only layout */
  justify-content: center;
}

.templates-container {
  width: 1200px;
  /* content max width */
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Headings */
.templates-title {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #333;
  text-align: center;
}

.templates-subtitle {
  margin: 0 0 24px;
  max-width: 920px;
  text-align: center;
  color: #60656b;
  font-size: 15px;
}

/* Subheading with side rules */
.templates-subheading-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 6px 0 28px;
}

.templates-rule {
  height: 1px;
  background: #cfcfd3;
  flex: 1;
}

.templates-subheading {
  margin: 0;
  font-size: 22px;
  color: #0066cc;
  /* blue */
  font-weight: 800;
  white-space: nowrap;
}

/* Cards row */
.templates-cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  /* keep three across but wrap on narrow screens */
}

/* Card */
.template-card {
  width: 340px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: transparent;
}

.template-image-wrap {
  width: 290px;
  /* image block size similar to screenshot */
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Text block */
.template-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.template-name {
  margin: 10px 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.template-line {
  font-size: 13px;
  line-height: 1.5;
  color: #6b6f75;
}

.template-line--orange {
  color: #ff6a00;
  /* “Order From 1pc” */
  font-weight: 700;
}

.template-line--price {
  color: #ff6a76;
  /* pinkish price line */
}

.template-link {
  margin-top: 8px;
  color: #0066cc;
  /* blue link */
  font-weight: 700;
  font-size: 16px;
}

/* ========== Base tweaks for better flexibility ========== */
.reviews-section {
  width: 100%;
  background: #fff;
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-review-container {
  width: 100%;
  /* max-width: 1200px; */
  border: 1px solid #d3d3d3;
  border-radius: 40px 40px 1em 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Header */
.reviews-header {
  width: 100%;
  background: #333333;
  border-radius: 40px 40px 0 0;
  padding: 20px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-brand {
  display: flex;
  align-items: center;
  padding-right: 16px;
  border-right: 1px solid grey;
}

.review-brand img {
  height: 170px;
  width: auto;
}

.review-stats {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  /* enables wrapping on medium screens */
}

.review-metrics {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: column;
  min-width: 260px;
}

.metric-one-line {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  /* allow wrap when tight */
}

.review-metrics .metric h4,
.review-metrics .metric h5,
.review-metrics .metric h3 {
  margin: 0;
  color: #fff;
}

.review-metrics .metric p {
  color: #ccc;
  font-size: 14px;
  margin: 4px 0 0;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 320px;
}

.score-box {
  background: #f9893b;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  text-align: center;
}

.score-value {
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.score-text {
  font-size: 13px;
}

.score-bars {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  /* grow on wider screens */
  min-width: 220px;
  /* avoid squishing */
}

.score-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #ddd;
}

.bar {
  flex: 1;
  height: 10px;
  background: #555;
  border-radius: 2px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: #f9893b;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}

.overall-rating p {
  margin: 4px 0 0;
  color: #ddd;
  font-size: 13px;
}

.overall-rating .stars {
  color: #ffb300;
  font-size: 18px;
  letter-spacing: 1px;
}

/* Swiper Section */
.review-slider {
  width: 100%;
  max-width: 1100px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.review-slider .swiper {
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.review-slider .swiper-wrapper {
  display: flex;
  gap: 10px;
}

.review-slider .swiper-slide {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.review-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-slider .swiper-button-prev,
.review-slider .swiper-button-next {
  color: #000;
}

.review-slider .swiper-button-prev,
.review-slider .swiper-button-next {
  width: 40px;
  /* increase button width */
  height: 40px;
  /* optional, keep square */
}

.review-slider .swiper-button-prev::after,
.review-slider .swiper-button-next::after {
  font-size: 20px;
  /* decrease font size of icons */
}

.see-all-link {
  color: #0073e6;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

/* Reviews List */
.reviews-list {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px;
  padding: 0 20px 10px;
}

.review-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
}

.review-item:last-child {
  border: none;
}

.review-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.review-info h4 {
  margin: 0;
  font-weight: 700;
}

.review-info .stars {
  color: #ff9f00;
  font-size: 16px;
}

.review-date {
  color: #666;
  font-size: 14px;
}

.review-text {
  margin: 8px 0;
  color: #333;
  font-size: 15px;
}

.review-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.verified-star {
  color: #ff9f00;
}

.size-guide-section {
  padding: 80px 0;
}

.backing-section {
  width: 100%;
  background: #1a1a1a;
  color: #000;
  padding: 50px 0px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.backing-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

/* Container for cards */
.backing-container {
  width: 100%;
  /* max-width: 1300px; */
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

/* Card */
.backing-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  max-width: 295px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Image area */
.backing-image {
  position: relative;
  width: 100%;
  max-height: 238px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.backing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.backing-image:hover img {
  transform: scale(1.05);
}

/* Content */
.backing-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  line-height: 1.6;
}

.backing-info h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}

.backing-info p {
  margin: 0;
  color: #333;
}

.backing-info strong {
  color: #000;
  font-size: 18px !important;
}

/* ===== Section Shell ===== */
.fab-section {
  width: 100%;
  background: #f3f5f7;
  display: flex;
  justify-content: center;
  padding: 40px 16px 80px;
}

.fab-wrap {
  width: 1200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fab-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: rgb(51, 51, 51);
  text-align: center;
  margin: 10px 0px 30px;
}

/* ===== Tabs ===== */
.fab-tabs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.fab-tabs-track {
  background: #ffffff;
  border-radius: 28px;
  padding: 0 20px;
  display: flex;
  gap: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.fab-tab {
  position: relative;
  appearance: none;
  border: none;
  background: transparent;
  padding: 10px 18px 14px;
  border-radius: 22px;
  color: #4b5763;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-tab:hover {
  color: #1f6fd6;
}

.fab-tab.is-active {
  color: #1f6fd6;
}

.fab-tab .fab-underline {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0px;
  height: 3px;
  border-radius: 3px;
  background: #1f6fd6;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.fab-tab.is-active .fab-underline {
  opacity: 1;
}

/* ===== Panels ===== */
.fab-panels {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fab-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fab-panel[hidden] {
  display: none;
}

/* ===== Cards Row ===== */
.fab-card-row {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.fab-card-row--grid2 {
  gap: 20px;
}

/* ===== Card ===== */
.fab-card {
  width: 284px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fab-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fab-img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.fab-caption {
  margin: 12px 0 0;
  color: #4b5763;
  font-weight: 600;
  text-align: center;
}

/* CTA */
.fab-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.fab-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #ef6a24;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.fab-cta:hover {
  filter: brightness(1.05);
}

/* ===== FAQ Section ===== */
.faq-section {
  width: 100%;
  display: flex;
  justify-content: center;
  /* padding: 0px 16px 0px; */
  margin: 80px 0;
}

.faq-container {
  /* width: 1200px; */
  /* max-width: 100%; */
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0 40px;
}

.highlighted-word {
  color: #0066cc;
}

.faq-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: rgb(51, 51, 51);
  text-align: center;
  margin: 10px 0px 10px;
  margin-bottom: 20px;
}

/* ===== Banner ===== */
.faq-banner {
  width: 100%;
  background: #0070f3;
  color: #fff;
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 15px;
}

.faq-chat-btn {
  background: #fff;
  color: #0070f3;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.faq-chat-btn:hover {
  background: #e9eefc;
}

/* ===== FAQ List ===== */
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FAQ Item */
.faq-item {
  background: #f8f8f8;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 16px 24px;
  border: none;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-align: left;
}
.chat-now {
  background-color: #0066cc;
  display: flex;
  align-items: center;
  padding: 16px 24px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  color: white;
  justify-content: space-between;
  font-size: 18px;
}
.chat-now-btn {
  background-color: white;
  padding: 6px 15px;
  border-radius: 20px;
  color: #0066cc;
  text-decoration: none;
}
.faq-question i {
  font-size: 18px;
  color: #333;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: #fff;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #444;
  margin: 12px 0;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 14px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Section shell */
.materials-section {
  width: 100%;
  background: #171717;
  /* dark background like screenshot */
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

.materials-wrap {
  /* width: 1400px; */
  /* max-width: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Heading */
.materials-title {
  margin: 0 0 30px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: white;
  text-align: center;
}

/* Cards row */
.materials-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  /* flex-wrap: wrap; */
}

/* Card */
.material-card {
  background: #ffffff;
  border-radius: 12px;
  /* width: 295px; */
  width: 23%;
  /* close to screenshot width */
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 22px 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* Circular image */
.material-figure {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 12px;
}

.material-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.material-name {
  font-size: 16px;
  font-weight: 800;
  color: #1f1f1f;
  text-align: center;
  margin: 6px 0 8px;
}

.material-text {
  color: #3e4650;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* ===== VIDEO TIPS (flex only) ===== */
.faq-videos {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  border-bottom: 1px solid #e6e8eb;
  margin-bottom: 14px;
  background-color: white;
}

.faq-videos-left {
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 240px;
  max-width: 320px;
}

.videos-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  color: #27303a;
}

.videos-sub {
  margin: 0 0 16px;
  color: #616b74;
  line-height: 1.5;
  font-size: 14px;
}

.videos-btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #eb6a22;
  /* orange like screenshot */
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.faq-videos-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.video-thumb {
  width: 32%;
  aspect-ratio: 16 / 9;
  border: none;
  padding: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.video-thumb:hover img {
  transform: scale(1.03);
}

.play-overlay {
  position: absolute;
  left: 40%;
  bottom: 40%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 999px;
  pointer-events: none;
}

.play-overlay i {
  margin-left: 3px;
}

/* Base */
.trusted-section {
  background: #0b0b0b;
  color: #fff;
  margin-top: 80px;
}

.trusted-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 64px 20px;
}

/* Two-column layout using only display:flex */
.trusted-wrap {
  display: flex;
  align-items: center;
  /* gap:48px; */
  /* flex-wrap:wrap; */
}

/* Left column */
.trusted-media {
  width: 40%;
  /* big image on left */
  min-width: 320px;
  max-width: 532px;
  margin: 0;
  display: flex;
  border-radius: 40px;
  overflow: hidden;
  min-height: 480px;
}

.trusted-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
  z-index: 1;
}

/* Right column */
.trusted-content {
  max-width: 60%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 170px;
}

.trusted-title {
  margin: 0 40px;
  font-size: 32px;
  font-weight: 800;
}

/* Brand card */
.brand-card {
  background: #f4f4f4;
  border-radius: 18px;
  padding: 60px 0px 60px 68px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  color: #111;
  margin-left: -48px;
}

/* Logo grid (flex-only) */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
  /* separators mimic */
  margin: -1px 0 0 -1px;
  /* for crisp borders */
}

/* Each logo tile is EXACTLY 209px wide */
.brand-tile {
  width: 209px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  margin: 10px;
  padding: 0;
  cursor: pointer;
  outline: none;
  position: relative;

  transition: background 0.2s ease;
}

/* Dull (default) logos */
.brand-tile img {
  max-width: 209px;
  max-height: 133px;
  width: 100%;
  height: auto;
  opacity: 0.35;
  /* dull look */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hover gives a hint */
.brand-tile:hover img {
  opacity: 0.55;
  transform: translateY(-1px);
}

/* ACTIVE logo: white background + full color */
.brand-tile.active {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08) inset,
    0 6px 20px rgba(0, 0, 0, 0.12);
}

.brand-tile.active img {
  opacity: 1;
}

/* Section shell */
.why-section {
  background: #121315;
  /* dark band */
  color: #111;
}

.why-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  padding: 64px 0px 48px;
}

/* Heading */
.why-head {
  text-align: center;
  color: #fff;
  margin-bottom: 65px;
}

.why-head h2 {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 800;
}

.why-head p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

/* Cards row (flex only) */
.why-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* space between cards */
}

/* Card */
.card {
  width: 295px;
  max-width: 23%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  padding: 56px 18px 24px;
  /* top padding leaves room under floating icon */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Floating circular icon with colored ring */
.card-icon {
  position: absolute;
  left: 50%;
  top: -46px;
  transform: translateX(-50%);
  width: 120px;
  height: 118px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.card-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* Colored ring behind the white circle */
.ring-orange::before,
.ring-yellow::before,
.ring-blue::before,
.ring-cyan::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  z-index: -1;
}

.ring-orange::before {
  background: #e85c1f;
}

.ring-yellow::before {
  background: #f4c431;
}

.ring-blue::before {
  background: #2371ff;
}

.ring-cyan::before {
  background: #00a8d6;
}

.card-body {
  margin-top: 40px;
}

/* Card content */
.card-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #111;
  text-align: center;
}

.card-body ul {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: disc;
  color: black;
  line-height: 1.35;
  font-size: 16px;
}

/* Colored “tab” at the bottom of each card */
.card-tab {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 120px;
  height: 14px;
  border-radius: 20px 20px 6px 6px;
  opacity: 1;
}

.tab-orange {
  background: #e85c1f;
}

.tab-yellow {
  background: #f4c431;
}

.tab-blue {
  background: #2371ff;
}

.tab-cyan {
  background: #00a8d6;
}

/* CTA */
.why-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: #f16525;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(241, 101, 37, 0.35);
}

/* SECTION BASE */
.how-section {
  background: #f7f7f7;
  padding: 64px 20px;
}

.how-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  text-align: center;
}

/* TITLE */
.how-title {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 50px;
}

/* STEPS WRAPPER */
.how-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

/* STEP BOX */
.how-step {
  width: 320px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-step .how-image {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.how-step .how-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  max-width: 260px;
}

/* BUTTON */
.how-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f16525;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: 0 6px 16px rgba(241, 101, 37, 0.3);
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background: #d4571d;
}

/* Custom Patch Order Form Styles */
.custom-patch-section-form {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.custom-patch-section-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.form-custom-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.content-wrapper-new {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Order Form Content */
.order-form-content {
  flex: 1;
  color: white;
  min-width: 300px;
}

.order-form-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.order-form-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  color: #ff9800;
  font-size: 20px;
}

.reviews-text {
  font-size: 14px;
  color: white;
}

.reviews-badge {
  height: 24px;
  width: auto;
}

/* Form Container */
.form-container-new {
  background: white;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 680px;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.width-and-quantity {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.width-and-height {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.progress-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: #4caf50;
}

.progress-step.completed {
  background: #4caf50;
}

.step-number {
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.price-and-continue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.step-2-cont {
  width: auto !important;
  height: 100%;
  flex-shrink: 0;
}

.progress-line {
  width: 80px;
  height: 3px;
  background: #e0e0e0;
  transition: all 0.3s ease;
}

.progress-line.active {
  background: #4caf50;
}

/* Return Button */
.return-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 8px 0;
  transition: color 0.3s;
}

.return-btn:hover {
  color: #333;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-description {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  line-height: 1.5;
}

/* Form Groups */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

/* Radio Groups */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.radio-option input[type="radio"] {
  opacity: 1;
  cursor: pointer;
}

.radio-label {
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.radio-sublabel {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

.more-btn {
  background: none;
  cursor: pointer;
  color: #0066cc;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.hidden-options {
  margin-top: 10px;
}

/* Quantity Section */
.quantity-section {
  flex: 1;
  min-width: 280px;
}

.quantity-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.quantity-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quantity-option {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  padding: 6px 12px;
  background: #fff;
  cursor: pointer;
  /* border: 1px solid #e0e0e0; */
  transition: all 0.3s;
}

.quantity-option > input[type="radio"] {
  margin: 0 12px 0 0;
  align-self: center;
  flex: 0 0 auto;
}

.quantity-content {
  display: flex;
  align-items: center;
  /* gap: 16px; */
  width: 100%;
  flex-wrap: wrap;
}

.q-col {
  display: inline-flex;
  align-items: center;
}

.q-qty {
  flex: 0 0 64px;
  font-weight: 700;
  font-size: 14px;
}

.q-total {
  flex: 0 0 110px;
  justify-content: flex-end;
  font-weight: 600;
  text-align: right;
}

.q-unit {
  flex: 1 1 auto;
  color: #666;
  justify-content: flex-start;
}

.custom-input {
  width: 110px;
  height: 34px;
  padding: 6px 10px;
  border: 1px solid #dadada;
  border-radius: 6px;
  font-size: 14px;
}

.custom-input:disabled {
  background: #f7f7f7;
  color: #999;
}

/* Shape Grid - FLEXBOX */
.shape-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.shape-option {
  position: relative;
  cursor: pointer;
  flex: 1 1 calc(33.333% - 10px);
  min-width: 120px;
}

.shape-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.shape-box {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  padding: 15px 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fafafa;
  height: 100%;
}

.shape-option input[type="radio"]:checked + .shape-box {
  border-color: #0066cc;
  background: #f0f7ff;
}

.shape-option input[type="radio"]:checked + .shape-box::before {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #0066cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.shape-box img {
  width: 130px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.shape-label {
  font-size: 13px;
  color: #333;
  text-align: center;
  font-weight: 500;
}

/* Backing Grid - FLEXBOX */
.backing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.backing-option {
  position: relative;
  cursor: pointer;
  flex: 1 1 calc(33.333% - 10px);
  min-width: 150px;
}

.backing-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.backing-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fafafa;
  min-height: 160px;
  height: 100%;
}

.backing-option input[type="radio"]:checked + .backing-box {
  border-color: #0066cc;
  background: #f0f7ff;
}

.backing-option input[type="radio"]:checked + .backing-box::before {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #0066cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.backing-box img {
  width: 100%;
  max-width: 100px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.backing-label {
  font-size: 13px;
  color: #333;
  text-align: center;
  font-weight: 500;
  margin-bottom: 4px;
}

.backing-price {
  font-size: 12px;
  color: #0066cc;
  font-weight: 600;
}

/* Border Grid - FLEXBOX */
.border-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.border-option {
  flex: 1 1 calc(33.333% - 8px);
  position: relative;
  cursor: pointer;
  min-width: 150px;
}

.border-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.border-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.border-option input[type="radio"]:checked + .border-box {
  border-color: #0066cc;
  background: #f0f7ff;
}

.border-option input[type="radio"]:checked + .border-box::before {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #0066cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.border-box img {
  width: 80px;
  height: 50px;
  object-fit: contain;
}

.border-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.border-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.border-price {
  font-size: 12px;
  color: #0066cc;
  font-weight: 600;
}

/* Upload Area */
.upload-area {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-area:hover {
  border-color: #0066cc;
  background: #f0f7ff;
}

.upload-text {
  display: inline-block;
  color: #0066cc;
  font-weight: 600;
  font-size: 16px;
}

.upload-info {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  text-align: center;
}

/* Toggle Switch */
.toggle-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.toggle-slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: #4caf50;
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-label {
  font-size: 13px;
  color: #666;
}

.toggle-switch input {
  display: none;
}

/* Turnaround Grid - FLEXBOX */
.turnaround-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.turnaround-option {
  position: relative;
  cursor: pointer;
  flex: 1 1 calc(33.333% - 8px);
  display: flex;
  min-width: 180px;
}

.turnaround-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.turnaround-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 16px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: white;
}

.turnaround-option input[type="radio"]:checked + .turnaround-box {
  border-color: #0066cc;
  background: #f0f7ff;
}

.turnaround-option input[type="radio"]:checked + .turnaround-box::before {
  content: "✓";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: #0066cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.turnaround-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.discount-badge {
  font-size: 11px;
  padding: 3px 8px;
  background: #0066cc;
  color: white;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}

.turnaround-details {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Features List - FLEXBOX */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  flex: 1 1 calc(50% - 6px);
  min-width: 200px;
}

.check-icon {
  flex-shrink: 0;
}

/* Price Summary */
.price-summary,
.price-summary-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.price-summary-2 {
  flex: 1;
}

.summary-label {
  font-size: 14px;
  color: #666;
}

.summary-total {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

#summaryQty,
#summaryTotal,
#finalQty,
#finalTotal {
  color: #0066cc;
}

/* Buttons */
.continue-btn,
.add-to-cart-btn {
  width: 100%;
  padding: 16px 24px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.continue-btn:hover,
.add-to-cart-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .content-wrapper-new {
    gap: 40px;
  }

  .form-container-new {
    max-width: 100%;
  }

  .order-form-title {
    font-size: 42px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .custom-patch-section-form {
    padding: 30px 15px;
  }

  .content-wrapper-new {
    flex-direction: column;
    gap: 30px;
  }

  .order-form-content {
    text-align: center;
    width: 100%;
  }

  .order-form-title {
    font-size: 32px;
  }

  .form-container-new {
    padding: 20px 15px;
    min-width: auto;
  }

  .width-and-quantity {
    flex-direction: column;
  }

  .width-and-height {
    max-width: 100%;
  }

  .quantity-section {
    min-width: auto;
  }

  .price-and-continue {
    flex-direction: column;
  }

  .step-2-cont {
    width: 100% !important;
  }

  .price-summary-2 {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Shape Grid Mobile */
  .shape-option {
    flex: 1 1 calc(50% - 8px);
    min-width: 130px;
  }

  /* Backing Grid Mobile */
  .backing-option {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }

  /* Border Grid Mobile */
  .border-option {
    flex: 1 1 100%;
  }

  .border-box {
    flex-direction: row;
    justify-content: flex-start;
  }

  /* Turnaround Grid Mobile */
  .turnaround-option {
    flex: 1 1 100%;
    min-width: auto;
  }

  /* Features Mobile */
  .feature-item {
    flex: 1 1 100%;
  }

  .features-list {
    gap: 10px;
  }

  .progress-line {
    width: 40px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .order-form-title {
    font-size: 26px;
  }

  .order-form-description {
    font-size: 14px;
  }

  .form-container-new {
    padding: 15px 10px;
  }

  .step-title {
    font-size: 14px;
  }

  /* Shape Grid - Full Width on Small Mobile */
  .shape-option {
    flex: 1 1 100%;
  }

  .shape-box {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px;
  }

  .shape-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right: 12px;
  }

  /* Backing Grid - Full Width */
  .backing-option {
    flex: 1 1 100%;
  }

  .backing-box {
    flex-direction: row;
    min-height: auto;
    padding: 12px;
  }

  .backing-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right: 12px;
  }

  /* Quantity Content Mobile */
  .quantity-content {
    gap: 10px;
  }

  .q-qty {
    flex: 0 0 50px;
    font-size: 13px;
  }

  .q-total {
    flex: 0 0 80px;
    font-size: 14px;
  }

  .q-unit {
    flex: 1 1 100%;
    font-size: 12px;
  }

  .custom-input {
    width: 90px;
    height: 32px;
    font-size: 13px;
  }

  .progress-bar {
    gap: 5px;
  }

  .progress-step {
    width: 32px;
    height: 32px;
  }

  .step-number {
    font-size: 14px;
  }

  .progress-line {
    width: 30px;
  }

  .price-summary,
  .price-summary-2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .summary-label,
  .summary-total {
    font-size: 13px;
  }

  #summaryQty,
  #summaryTotal,
  #finalQty,
  #finalTotal {
    font-size: 16px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .order-form-title {
    font-size: 22px;
  }

  .form-container-new {
    padding: 12px 8px;
  }

  .continue-btn,
  .add-to-cart-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

.blog-section-aqua {
  width: 100%;
  padding: 80px 20px;
  /* background: #fff; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}

.blog-section-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-section-title {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.blog-section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.blog-cards-container {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 50px;
}

.blog-card {
  max-width: 18%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image-wrapper {
  width: 100%;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-view-all-btn {
  display: inline-flex;
  padding: 14px 40px;
  background: #fff;
  color: #ff6b35;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ff6b35;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-view-all-btn:hover {
  background: #ff6b35;
  color: #fff;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  /* .blog-card {
    flex: 1 1 calc(33.333% - 24px);
  } */
   .faq-section{
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .blog-section-aqua {
    /* padding: 60px 16px; */
    padding: 0 16px;
  }

  .blog-section-title {
    font-size: 32px;
  }

  .blog-section-subtitle {
    font-size: 14px;
  }
/* 
  .blog-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 200px;
  } */

  .blog-cards-container {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .blog-section-aqua {
    padding: 50px 12px;
  }

  .blog-section-header {
    margin-bottom: 40px;
  }

  .blog-section-title {
    font-size: 28px;
  }
/* 
  .blog-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  } */

  .blog-cards-container {
    gap: 16px;
  }

  .blog-card-image-wrapper {
    height: 180px;
  }

  .blog-card-content {
    padding: 20px 16px;
  }

  .blog-view-all-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .how-step {
    width: 280px;
  }
}

@media (max-width: 750px) {
  .how-steps {
    gap: 30px;
  }

  .how-step {
    width: 100%;
    max-width: 360px;
  }
}

/* Responsive: 2-up on tablets, full width on phones */
@media (max-width: 980px) {
  /* .card {
    width: calc(50% - 14px);
    min-width: 280px;
  } */
  .why-cards{
    flex-wrap: wrap;
  }
    .blog-cards-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .card {
    width: 100%;
  }

}

/* Responsive stacking */
@media (max-width: 980px) {
  .trusted-wrap {
    gap: 28px;
    /* flex-wrap: wrap; */
  }

  .trusted-media {
    width: 100%;
    min-height: unset;
  }

  .trusted-content {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand-tile {
    height: 110px;
  }
}

/* Responsive tweaks */
@media (max-width: 980px) {
  .materials-title {
    font-size: 28px;
  }

  .materials-cards {
    flex-wrap: wrap;
  }

  .material-card {
    width: 300px !important;
  }

  .material-figure {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 640px) {
  .materials-title {
    font-size: 24px;
  }

  .materials-cards {
    gap: 18px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .fab-img {
    width: 100%;
    height: 100%;
  }

  .fab-card {
    width: 45%;
  }
}

@media (max-width: 560px) {
  .fab-title {
    font-size: 26px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .backing-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .backing-card {
    max-width: 90%;
  }
}

/* Responsive tweaks */
@media (max-width: 1100px) {
  .templates-cards {
    justify-content: center;
    gap: 34px;
  }

  .template-card {
    width: 320px;
  }

  .template-image-wrap {
    width: 270px;
    height: 240px;
  }
}

@media (max-width: 700px) {
  .templates-title {
    font-size: 28px;
  }

  .templates-subheading {
    font-size: 18px;
  }

  .template-card {
    width: 100%;
    max-width: 140px;
  }

  .template-image-wrap {
    width: 140px;
    height: 140px;
  }
}

/* ======== Small screens fallback ======== */
@media (max-width: 640px) {
  .gallery-main .swiper {
    padding: 10px 20px;
  }

  .gallery-button-prev {
    left: 0;
  }

  .gallery-button-next {
    right: 0;
  }

  .gallery-main .swiper-slide {
    width: 86vw;
    height: 86vw;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .desktop-banner {
    display: none;
  }

  .mobile-section {
    display: block;
  }

  .hero-content {
    display: none;
  }

  .hero {
    background-image: var(--hero-bg-mobile) !important;
    background-repeat: no-repeat;
    background-size: cover;
    height: 131.94px;
    margin: 0px;
    padding: 0px;
    max-height: 131.94px;
    box-sizing: border-box;
    min-height: unset !important;
  }

  .features-bar {
    display: none;
  }

  .hero {
    padding: 40px 20px;
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    margin-bottom: 12px !important;
  }

  .mob-btn,
  .btn-new {
    width: 50%;
    justify-content: center;
  }

  .category-card {
    width: 48%;
    border: 1px solid rgb(219, 219, 219);
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .category-card:hover {
    transform: translateY(0);
  }

  .popular-categories {
    padding: 60px 12px !important;
  }

  .category-image-wrapper {
    height: 200px;
    width: 100%;
  }

  .categories-container {
    gap: 10px !important;
    align-items: flex-start;
  }

  .category-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0;
  }

  .category-title {
    font-size: 16px;
  }

  .custom-patches {
    flex-direction: column;
    padding: 30px 20px;
  }

  .image-section img {
    width: 100%;
    max-width: 350px;
  }

  .content-section {
    justify-content: center;
    align-items: center;
  }

  .content-section p,
  .content-section h2 {
    text-align: center;
  }

  .content-section button {
    max-width: 100%;
  }

  .custom-patches-new {
    padding: 40px 20px;
    height: auto;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .inspiration-gallery {
    padding: 60px 20px;
  }

  .mobile-hero-content {
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-hero-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }

  .mobile-hero-content ul li {
    font-size: 13px;
  }

  .cta-buttons {
    flex-direction: row;
    margin-bottom: 0;
  }

  .btn {
    padding: 10px 14px;
  }

  .btn-new {
    background-color: transparent;
    border: 1px solid #025fc7;
    color: #025fc7 !important;
  }

  .banner {
    align-items: stretch;
    display: flex;
  }

  .banner img {
    width: 100%;
  }

  .feature1 {
    display: flex;
    gap: 4px;
    align-items: self-end;
    min-width: 46%;
  }

  .features-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 0 11px;
  }

  .feature1 p {
    color: #333333;
    font-size: 14px;
  }

  .feature1 i {
    color: #333333;
    font-size: 18px;
  }

  .photo-gallery-mobile {
    padding: 20px 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: url("../images/mobile-section-background.png");
    background-position: top;
    background-color: rgb(243, 244, 245);
  }

  .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .heading h2 {
    text-transform: uppercase;
  }

  .heading a {
    text-decoration: none;
    font-size: 14px;
  }

  .photo-gallery-mobile p {
    font-size: 13px;
    color: #333333;
  }

  /* Slider sizing & cards */
  .gallery-slider {
    width: 100%;
  }

  .gallery-slider .swiper-slide {
    width: 116px !important;
    /* fixed card width */
    height: 116px;
    /* fixed card height */
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Gap between slides */
  .gallery-slider .swiper {
    /* Swiper handles spacing via JS; nothing needed here */
  }

  /* Controls row below the slider */
  .gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    margin: 0 auto;
  }

  /* Center dots */
  .gallery-controls .swiper-pagination {
    flex: 1;
    text-align: center;
    position: static;
    /* keep dots in the flow */
  }

  /* Move Swiper’s default nav buttons into the flow and style them */
  .gallery-controls .swiper-button-prev,
  .gallery-controls .swiper-button-next {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 8px 12px;
    border-radius: 50%;
    background: #025fc7;
    color: white !important;
    font-weight: 600;
    line-height: 1;
    border: none;
  }

  /* Optional: smaller arrow icons within buttons */
  .gallery-controls .swiper-button-prev::after,
  .gallery-controls .swiper-button-next::after {
    font-size: 14px;
    color: white;
  }

  .swiper-pagination-bullet-active {
    background-color: #025fc7;
  }

  .tab-btn {
    padding: 8px 25px;
    font-size: 14px;
  }

  .mob-alert-section {
    background-color: rgb(2, 104, 2);
    padding: 1.25rem max(50% - 525px, 3vw);
    background-image: linear-gradient(
      79deg,
      rgb(236, 243, 254) 0px,
      rgb(210, 229, 250) 100%
    );
  }

  .mob-alert-section h3 {
    color: #005cce;
    font-size: 16px;
    padding: 8px 0;
  }

  .button-section {
    display: flex;
    gap: 6.24px;
  }

  .button-section p {
    font-size: 14px;
  }

  .button-section button {
    background-color: rgb(54, 144, 255);
    border: 1px solid rgb(54, 144, 255);
    padding: 0.3em 0.625em;
    min-width: 130px;
    color: white;
    height: 31.2px;
    font-size: 13px;
    border-radius: 7px;
  }

  .newsletter-form {
    flex-wrap: wrap;
  }

  .quote-btn {
    font-size: 12px !important;
    padding: 8px 15px !important;
  }

  .desktop-gallery-section,
  .shipping-alert {
    display: none;
  }

  .reviews-section {
    padding: 40px 12px 40px;
  }

  .reviews-header {
    padding: 16px;
    border-radius: 24px 24px 0 0;
    flex-direction: row;
    /* stack brand + stats */
    align-items: stretch;
    gap: 10px;
  }

  .review-brand {
    border-right: none;
    /* remove divider */
    padding-right: 0;
    justify-content: center;
  }

  .review-brand img {
    height: 80px;
  }

  .review-stats {
    flex-direction: row;
    /* stack metrics and score */
    align-items: stretch;
    gap: 16px;
  }

  .review-metrics {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    min-width: 215px;
  }

  .metric-one-line {
    display: flex;
    flex-direction: row;
    /* 2 metrics vertical on mobile */
    gap: 10px;
  }

  .review-score {
    flex-direction: column;
    /* score box over bars */
    align-items: stretch;
    gap: 12px;
    min-width: 0;
  }

  .score-box {
    align-self: flex-start;
    padding: 6px 10px;
  }

  .score-value {
    font-size: 28px;
  }

  .score-bars {
    display: none;
  }

  .overall-rating {
    align-items: flex-start;
    /* left-align on mobile */
    margin-left: 0;
  }

  /* Slider */
  .review-slider {
    padding: 0 8px;
  }

  .review-slider .swiper-slide {
    width: 90px !important;
    height: 90px;
    border-radius: 6px;
  }

  .review-slider .swiper-button-prev,
  .review-slider .swiper-button-next {
    display: none;
  }

  .see-all-link {
    font-size: 13px;
  }

  /* Reviews list */
  .reviews-list {
    padding: 0 12px 8px;
    gap: 16px;
  }

  .review-info {
    gap: 6px;
  }

  .review-info .stars {
    font-size: 14px;
  }

  .review-date {
    font-size: 12px;
  }

  .review-text {
    font-size: 14px;
  }

  .review-footer {
    justify-content: flex-start;
    /* bring badges under text */
    font-size: 13px;
  }

  .fab-tab {
    font-size: 12px;
    padding: 12px 0;
  }

  .size-guide-card {
    min-width: unset;
    width: 195px;
  }

  .size-guide-image {
    width: 195px;
    border-radius: 10px;
  }

  .size-guide-grid {
    gap: 14px;
  }

  h2 {
    font-size: 28px !important;
  }

  .backing-card {
    width: 48%;
    max-width: 48%;
    min-width: 48%;
  }

  .backing-image {
    height: 165px;
  }

  .backing-container {
    gap: 10px;
  }

  .backing-section {
    padding: 50px 15px 60px;
  }

  .backing-info {
    padding: 4px 18px 7px;
  }

  /* .pop-wrapper{
    width: 190px !important; 
    height: 190px !important;
  } */
  /* .popular-categories-inner{
    flex-wrap: wrap;
  } */
  .popular-categories-inner {
    display: none;
  }

  /* .hover-video-card {
        flex: 1;
    } */

  .category-single:last-child {
    display: none;
  }

  .faq-videos {
    flex-direction: column;
  }

  .videos-btn {
    display: none;
  }

  .faq-videos-left {
    padding: 0 !important;
  }

  .play-overlay {
    left: 30%;
    bottom: 20%;
    font-size: 12px;
  }

  .review-slider {
    margin-right: 0 !important;
  }

  .trusted-content {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: unset;
  }

  .brand-card {
    margin-left: 0;
    padding: 10px;
  }

  .trusted-title {
    margin: 0;
  }

  .why-cards {
    gap: 90px;
  }
  .custom-patches-max {
    flex-direction: column;
  }
}

@media screen and (max-width: 450px) {
  .review-metrics {
    display: none;
  }

  .review-score {
    flex-direction: row;
    align-items: center;
  }

  .reviews-header {
    align-items: center;
  }
}

/* ===== Order Summary ===== */
.order-summary {
  position: sticky;
  top: 20px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.order-summary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f2f5;
  margin-bottom: 8px;
}

.order-summary-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.order-summary-subtitle {
  color: #6c757d;
  font-size: 12px;
}

.order-summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.selection-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid #f0f2f5;
  border-radius: 10px;
  background: #fcfcfd;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.selection-item:hover {
  border-color: #e1e6ef;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.selection-item .section-title {
  font-weight: 600;
  font-size: 13px;
  color: #111827;
}

.selection-item .selection-value {
  grid-column: 1 / -1;
  color: #374151;
  font-size: 12px;
}

.selection-item .selection-value.empty {
  color: #9ca3af;
  font-style: italic;
}

.selection-item .selection-price {
  font-weight: 700;
  font-size: 13px;
  color: #111827;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid #f0f2f5;
  font-size: 16px;
}

.order-summary-badges {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.order-summary-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  background: #f3f4f6;
  color: #374151;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #edeff3;
}

.section.focused {
  outline: 2px solid #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  scroll-margin-top: 90px;
  transition: box-shadow 0.2s ease;
}

.promo-banner {
  --o1: #025fc7;
  --o2: #0061c8;
  --o3: #025fc7;
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--o2),
    var(--o1) 35%,
    var(--o2) 65%,
    var(--o3)
  );
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.promo-banner::before,
.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.promo-banner::before {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0) 25% 75%,
    rgba(255, 255, 255, 0.06)
  );
  mix-blend-mode: screen;
}
.promo-banner::after {
  background: radial-gradient(
    1200px 60px at 40% -30px,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0) 60%
  );
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

/* Left text (updated copy) */
.lead {
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
  font-size: clamp(14px, 1.9vw, 22px);
  font-style: italic;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.lead .price {
  color: #ffd267; /* light golden */
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}
.lead .highlight {
  color: #ffd267; /* light golden */
  font-weight: 900;
}

/* Right side container */
.offers {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* >>> Your requested construction:
       1) one div with border-radius: 30px (the capsule)
       2) ::before and ::after create curved trims (left curve + glossy strip)
    */

.deal-capsule {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #0061c8 0%, #025fc7 35%, #0061c8 100%);
  border: 2px solid rgba(2, 95, 199, 0.95);

  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 -10px 16px rgba(200, 87, 0, 0.35), 0 6px 12px rgba(0, 0, 0, 0.22);
}
/* curved shine across top */
.deal-capsule::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.45),
    transparent 40%
  );
  mix-blend-mode: screen;
}
/* inward curved dark trim on the far left (like the reference) */
.deal-capsule::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  width: 70px;
  border-radius: 30px;
  background: radial-gradient(
    80px 50px at 28px 50%,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0) 70%
  );
  clip-path: inset(0 100% 0 0 round 30px);
  pointer-events: none;
}

.seg {
  white-space: nowrap;
}
.or-coin {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 44px;
  background: radial-gradient(
    circle at 32% 30%,
    #025fc7,
    #0061c8 55%,
    #025fc7 90%
  );
  color: #ffffff;
  border: 2px solid #0061c8;

  box-shadow: inset 0 2px 0 #fff6, 0 6px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 880px) {
  .inner {
    display: flex;
    flex-direction: column;
  }
  .lead {
    text-align: center;
  }
  .offers {
    justify-content: flex-start;
  }
  .desktop-show {
    display: none;
  }
}
@media (max-width: 480px) {
  .deal-capsule {
    padding: 8px 14px;
    gap: 10px;
  }
  .or-coin {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
}

/* Modal Styles */
.size-options-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: white;
  max-width: 600px;
  margin: 50px auto;
  border-radius: 8px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
}

.modal-close:hover {
  color: #000;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-body .radio-group {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: flex-end;
}

.modal-confirm-btn {
  background: #025fc7;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-confirm-btn:hover {
  background: #025fc7;
}

/* More Option Styling */
.more-option {
  cursor: pointer;
}

.more-label {
  color: #025fc7;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.more-label:hover {
  color: #025fc7;
}

.more-arrow {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 90%;
    margin: 20px auto;
    max-height: 90vh;
  }
}

.hero-review-bar {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  max-width: 600px;
}

.hero-review-bar .review-title {
  font-weight: 600;
  margin-right: 6px;
}

.hero-review-bar .review-stars .star {
  font-size: 16px;
  margin-right: 2px;
  color: #ffc107; /* gold */
}

.hero-review-bar .review-text {
  margin-left: 6px;
  color: white;
  font-size: 18px;
}

.hero-review-bar .review-badge img {
  display: block;
  max-height: 25px;
  width: auto;
}

@media (max-width: 800px) {
  .size-guide-grid {
    flex-wrap: wrap;
  }
  .trusted-wrap {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
