@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}

img {
  max-width: 100%;
}

/* ==================================================================================================
   HERO
================================================================================================== */
.product-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../../assets/images/banners/touch-switch.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.797), rgba(0, 0, 0, 0.381));
  z-index: 1;
}

.product-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}

.product-hero .hero-content h1 {
  font-size: clamp(26px, 4vw, 60px);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.325);
}

.product-hero .hero-content h1 span {
  background: #6ec0a3;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .product-hero {
    background-position: center top;
  }
}

/* ==================================================================================================
   TOUCH INFO SECTION (interactive)
================================================================================================== */
.touch-info-section {
  padding: clamp(72px, 10vw, 110px) clamp(20px, 5vw, 48px);
  background: #fff;
  color: #111827;
}

.touch-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 56px);
}

.touch-left {
  min-width: 0;
  max-width: none;
  text-align: left;
}

.touch-info-heading {
  margin: 0 0 clamp(20px, 3vw, 28px);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.touch-info-heading-line {
  display: block;
}

.touch-info-heading-line--sub {
  margin-top: 0.12em;
  font-weight: 600;
  font-size: 0.92em;
  color: #374151;
}

.touch-accent {
  background: linear-gradient(90deg, #2d6a4f, #41866e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.touch-intro {
  margin-bottom: clamp(22px, 3vw, 32px);
  max-width: none;
  width: 100%;
}

.touch-intro p {
  margin: 0 0 0.85rem;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.touch-intro p:last-child {
  margin-bottom: 0;
}

.touch-right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  justify-self: center;
  width: 100%;
  max-width: 420px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.touch-right.touch-right--glow .circle {
  box-shadow: 0 24px 60px rgba(65, 134, 110, 0.32);
}

.circle {
  width: 100%;
  max-width: min(380px, 100%);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: linear-gradient(180deg, #f8faf9, #eef2f0);
  transition: box-shadow 0.35s ease;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(65, 134, 110, 0.12);
  pointer-events: none;
}

.touch-info-interactive {
  margin-top: 8px;
}

.touch-info-interactive-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #41866e;
}

.touch-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.touch-chip {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.touch-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(65, 134, 110, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.touch-chip:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 3px;
}

.touch-chip.active {
  background: linear-gradient(135deg, #3d7a5c, #41866e);
  border-color: #41866e;
  color: #fff;
  box-shadow: 0 12px 28px rgba(65, 134, 110, 0.28);
}

.touch-info-detail {
  position: relative;
  background: linear-gradient(165deg, #f9fafb 0%, #f3f4f6 100%);
  border: 1px solid rgba(65, 134, 110, 0.22);
  border-radius: 18px;
  padding: 20px 22px 22px;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.touch-info-detail.is-updating {
  animation: touchDetailPulse 0.45s ease;
}

@keyframes touchDetailPulse {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0.88;
  }
  100% {
    opacity: 1;
  }
}

.touch-detail-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b4332;
  background: rgba(65, 134, 110, 0.18);
}

.touch-info-detail h3 {
  margin: 0 0 12px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.touch-info-detail p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 992px) {
  .touch-container {
    grid-template-columns: 1fr;
    align-items: stretch;
    text-align: center;
    gap: 40px;
  }

  .touch-left {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .touch-right {
    max-width: none;
    justify-self: center;
    width: auto;
  }

  .touch-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .touch-info-interactive-label {
    text-align: center;
  }

  .touch-info-chips {
    justify-content: center;
  }

  .touch-info-detail {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .touch-right .circle {
    width: min(320px, 85vw);
    max-width: 320px;
    aspect-ratio: 1;
    height: auto;
  }
}

@media (max-width: 576px) {
  .touch-info-heading {
    font-size: 26px;
  }

  .touch-intro p {
    font-size: 13px;
    line-height: 1.62;
  }

  .touch-chip {
    padding: 10px 14px;
    font-size: 12px;
  }

  .circle {
    width: min(280px, 88vw);
    max-width: 280px;
    aspect-ratio: 1;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .touch-chip,
  .touch-info-detail,
  .touch-right {
    transition: none;
  }

  .touch-info-detail.is-updating {
    animation: none;
  }

  .touch-chip:hover {
    transform: none;
  }
}

/* ==================================================================================================
   Smart appliance section
================================================================================================== */
.smart-appliance-section {
  padding: 80px 6%;
  background: #f5f5f5;
  text-align: center;
}

.smart-title {
  font-size: 38px;
  font-weight: 600;
  color: #111;
  margin-bottom: 60px;
  line-height: 1.3;
}

.smart-title span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.appliance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  max-width: min(640px, 100%);
  margin: 0 auto;
  justify-items: center;
  align-items: start;
}

.appliance-item {
  background: #efefef;
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.appliance-item img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}

.appliance-item:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 134, 110, 0.35);
  background: rgba(65, 134, 110, 0.08);
  box-shadow: 0 16px 40px rgba(65, 134, 110, 0.18);
}

.appliance-item:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 3px;
}

.appliance-item--active {
  background: rgba(65, 134, 110, 0.14);
  border-color: rgba(65, 134, 110, 0.55);
  box-shadow: 0 18px 50px rgba(65, 134, 110, 0.22);
}

.appliance-detail {
  max-width: 900px;
  margin: 28px auto 0;
  background: #f6f7f8;
  border: 1px solid rgba(65, 134, 110, 0.25);
  border-radius: 18px;
  padding: 18px 18px;
}

.appliance-detail h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 800;
}

.appliance-detail p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .appliance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(520px, 100%);
  }
}

@media (max-width: 576px) {
  .smart-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .appliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .appliance-detail {
    margin-top: 18px;
    padding: 16px 14px;
  }
}

/* ==================================================================================================
   Product feature section (pf-*)
================================================================================================== */
.product-feature-section {
  padding: 70px 6%;
  background: #fff;
}

.pf-container {
  max-width: 1200px;
  margin: auto;
}

.pf-main-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.pf-main-heading span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pf-card {
  background: #f5f5f5;
  border-radius: 24px;
  padding: 30px;
}

.pf-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pf-left .pf-title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.pf-desc {
  color: #4b5563;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
}

.pf-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}

.pf-btn:hover {
  background: #41866e;
}

.pf-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pf-feature-item {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-feature-section .pf-feature-item {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
  will-change: transform;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.product-feature-section .pf-feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 134, 110, 0.35);
  box-shadow: 0 16px 40px rgba(65, 134, 110, 0.18);
}

.product-feature-section .pf-feature-item:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 3px;
}

.product-feature-section .pf-feature-item--active {
  border-color: rgba(65, 134, 110, 0.6);
  box-shadow: 0 18px 55px rgba(65, 134, 110, 0.22);
  background: rgba(65, 134, 110, 0.10);
}

.pf-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.pf-feature-item p {
  margin-top: 10px;
  color: #111827;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 992px) {
  .pf-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================================================================================================
   Customisation section (tabs)
================================================================================================== */
.customisation-section {
  padding: 70px 6%;
  background: #f5f5f5;
  --custom-pick-thumb: 120px;
  --custom-pick-radius: 14px;
}

@media (max-width: 768px) {
  .customisation-section {
    --custom-pick-thumb: 88px;
    --custom-pick-radius: 12px;
  }
}

@media (max-width: 480px) {
  .customisation-section {
    --custom-pick-thumb: 72px;
    --custom-pick-radius: 10px;
  }
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.section-title span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: 0.25s;
}

.tab-btn.active {
  background: #41866e;
  color: #fff;
  border-color: #41866e;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.color-box {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.color-box img {
  width: var(--custom-pick-thumb, 120px);
  height: var(--custom-pick-thumb, 120px);
  max-width: var(--custom-pick-thumb, 120px);
  max-height: var(--custom-pick-thumb, 120px);
  object-fit: contain;
  object-position: center;
  display: block;
  margin-inline: auto;
}

.color-box p {
  margin-top: 10px;
  color: #111827;
  font-weight: 700;
  font-size: 13px;
}

.content-row {
  display: flex;
  gap: 30px;
  align-items: center;
}

.content-left {
  flex: 1;
}

.content-left h3 {
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
}

.content-left p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.content-right {
  flex: 1;
}

.content-right img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}

.feature-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.feature-card p {
  margin-top: 10px;
  color: #111827;
  font-weight: 600;
  font-size: 13px;
}

/* ==================================================================================================
   Touch switch features + compare
================================================================================================== */
.ts-features-section {
  padding: 90px 6%;
  background: #fff;
}

.ts-features-heading h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.ts-features-heading h2 span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ts-features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ts-features-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ts-feature-card {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
}

.ts-feature-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  margin-bottom: 6px;
}

.ts-feature-card p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.switch-compare-section {
  padding: 90px 6% 120px;
  background: #f5f5f5;
}

.switch-heading h2 {
  text-align: center;
  color: #000;
  font-size: 36px;
  margin-bottom: 20px;
}

.switch-heading p {
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #4b5563;
  line-height: 1.7;
  font-size: 14px;
}

.switch-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.switch-box {
  width: 360px;
  padding: 28px;
  border-radius: 28px;
  text-align: center;
}

.switch-box.old {
  background: #eaeaea;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.switch-box.new {
  background: #41866e;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #fff;
}

.switch-box .label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.switch-box.old .label {
  background: #d1d1d1;
  color: #000;
}

.switch-box.new .label {
  background: rgba(255, 255, 255, 0.18);
  color: #000;
}

.switch-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .ts-features-container {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .palette {
    grid-template-columns: repeat(3, 1fr);
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ============================================================================================================================ */


.product-feature-section {
    padding: 80px 6%;
    background: #f6f6f6;
}

.pf-container {
    max-width: 1200px;
    margin: auto;
}

.pf-main-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #111;
}

.pf-main-heading span {
    background: #41866e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-card {
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Top Section */
.pf-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.pf-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.pf-desc {
    font-size: 15px;
    color: #555;
    max-width: 520px;
    line-height: 1.5;
}

.pf-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;

}

.pf-btn:hover {
    background: #b5b3b3;
    color: #000;
}

/* Features */
.pf-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pf-feature-item {
    text-align: center;
}

.pf-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #f2f2f2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.345);
    margin-bottom: 15px;
}

.pf-icon img {
    width: 35px;
    opacity: 0.7;
}

.pf-feature-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* ================== Responsive ================== */

@media (max-width: 992px) {
    .pf-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pf-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .pf-right {
        width: 100%;
        text-align: left;
    }

    .pf-btn {
        display: inline-block;
        margin-left: 30px;
        
    }

    .pf-main-heading {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .pf-card {
        padding: 30px 20px;
    }

    .pf-features {
        grid-template-columns: 1fr;
    }

    .pf-main-heading {
        font-size: 24px;
    }
}

/* =============================================================================================================================== */

.customisation-section {
  padding: 80px 6%;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: #000;
  font-weight: 600;
}
.section-title span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}

.tab-btn {
  padding: 14px 30px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #edecec;
  cursor: pointer;
  transition: 0.3s;
}
.tab-btn.active {
  background: #000;
  color: #fff;
  box-shadow: 0 0 15px 5px rgba(7, 7, 7, 0.174);
}

.tab-content {
  display: none;
  animation: fadeUp 0.5s ease;
  padding: 0 3%;
}
.tab-content.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.palette {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  color: #000;
}

.color-box p{
    color: #000;
    font-size: 14px;
    text-align: center;
}
.content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-top: 1px solid #9b9999;
  padding-top: 30px;
}

.content-left {
  flex: 1;
}
.content-left h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}
.content-left p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 15px;
}

.primary-btn {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
}

.content-right {
  flex: 1;
  text-align: right;
}
.content-right img {
  max-width: 100%;
}

.features-title {
  margin: 50px 0 30px;
  font-size: 26px;
  color: #000;
   font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.137);
  transition: 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card img {
  width: 50px;
  margin-bottom: 10px;
}

.feature-card p{
 color: #000;
 font-size: 14px;
}



/* ===============================
   Responsive Breakpoints
================================ */

/* Large tablets / small laptops */
@media (max-width: 1200px) {
  .customisation-section {
    padding: 70px 4%;
  }

  .section-title {
    font-size: 32px;
  }

  .palette {
    gap: 60px;
  }

  .color-box p{
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Tablets */
@media (max-width: 992px) {
  .tabs {
    gap: 8px;
    margin-bottom: 40px;
  }

  .tab-btn {
    padding: 12px 22px;
    font-size: 14px;
    border-radius: 10px;
  }

  .content-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .content-right {
    text-align: center;
  }

  .content-left h3 {
    font-size: 22px;
  }

  .features-title {
    font-size: 22px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Large mobiles */
@media (max-width: 768px) {
  .customisation-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .palette {
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  .color-box p{
    text-align: center;
  }

  .content-left p {
    font-size: 14px;
  }

  .primary-btn {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 8px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .tabs {
    gap: 15px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 8px;
  }

  .palette {
    gap: 30px;
  }
  .color-box p{
    text-align: center;
    font-size: 12px;
  }

  .content-left h3 {
    font-size: 20px;
  }

  .content-left p {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .features-title {
    font-size: 20px;
    margin: 40px 0 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 18px;
    border-radius: 12px;
  }

  .feature-card img {
    width: 42px;
  }

  .feature-card p {
    font-size: 13px;
  }
}


.sizes {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  color: #000;
}
.size-box {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: 155px;
  min-width: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.size-box img {
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-inline: auto;
}
.size-box p {
  margin-top: 10px;
  color: #111827;
  font-weight: 700;
  font-size: 13px;
}

.size-box:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 3px;
}

.size-box--active {
  border-color: rgba(65, 134, 110, 0.55);
  box-shadow: 0 14px 36px rgba(65, 134, 110, 0.18);
  background: rgba(65, 134, 110, 0.06);
}

#size .size-custom-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

#size .size-custom-preview img {
  max-height: min(420px, 55vh);
  width: auto;
  max-width: 100%;
}

@media (max-width: 768px) { 
  .sizes {
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  .size-box {
    width: 145px;
    min-width: 145px;
  }
  .size-box p{
    text-align: center;
  }
}

.material.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  max-width: min(720px, 100%);
  margin: 0 auto 48px;
  color: #000;
}

.material-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 22px 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 0;
}

.material-box__thumb {
  width: var(--custom-pick-thumb, 120px);
  height: var(--custom-pick-thumb, 120px);
  border-radius: var(--custom-pick-radius, 14px);
  overflow: hidden;
  background: #e8eaed;
  margin-bottom: 14px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.material-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.material-box__label {
  margin: 0;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  max-width: 12rem;
}

@media (max-width: 768px) {
  .material.material-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 40px;
  }

  .material-box {
    padding: 16px 10px 14px;
    border-radius: 16px;
  }

  .material-box__thumb {
    margin-bottom: 10px;
  }

  .material-box__label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .material.material-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 16px;
  }
}


/* Switch Icons tab: one row, smaller thumbnails */
#icons .icons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  margin: 0 auto 48px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 8px 4px 15px;
  box-sizing: border-box;
}

#icons .icons-box {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.216);
  display: flex;
  align-items: center;
  justify-content: center;
}

#icons .icons-box img {
  width: 65px;
  height: 65px;
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  #icons .icons {
    margin-bottom: 40px;
    justify-content: flex-start;
    padding-inline: 4px;
  }

  #icons .icons-box img {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  #icons .icons-box {
    padding: 5px 6px;
    border-radius: 10px;
  }
}


.bezels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 40px);
  margin-bottom: 60px;
  color: #000;
}

.bezels-box {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.bezels-box img {
  width: var(--custom-pick-thumb, 120px);
  height: var(--custom-pick-thumb, 120px);
  max-width: var(--custom-pick-thumb, 120px);
  max-height: var(--custom-pick-thumb, 120px);
  object-fit: contain;
  object-position: center;
  display: block;
  margin-inline: auto;
}

.bezels-box p {
  margin-top: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: #111827;
}

@media (max-width: 768px) {
  .bezels {
    margin-bottom: 40px;
  }

  .bezels-box p {
    text-align: center;
  }
}

/* ============================================================================================================================== */
/* ================= SECTION ================= */

.ts-features-section{
  padding:100px 6%;
  background:#fff;
  overflow-x: visible;
  overflow-y: visible;
}


/* ================= HEADING ================= */

.ts-features-heading{
  text-align:center;
  margin-bottom:70px;
}

.ts-features-heading h2{
  font-size:42px;
  color:#000;
  line-height:1.3;
}

.ts-features-heading h2 span{
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ================= CONTAINER ================= */

.ts-features-container{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;

  align-items:stretch; /* 🔥 KEY FIX */
}


/* ================= IMAGE ================= */

.ts-features-image{
  height:100%;
  display:flex;
  overflow:hidden;
  border-radius:20px;
}

.ts-features-image img{
  width:100%;
  height:100%;
  object-fit:contain;

  transition:transform 0.6s ease;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}


/* IMAGE HOVER ZOOM */

.ts-features-container:hover .ts-features-image img{
  transform:scale(1.05);
}


/* ================= CONTENT ================= */

.ts-features-content{
  display:flex;
  flex-direction:column;
  justify-content:space-between; /* 🔥 equal height distribution */
  height:100%;
}


/* ================= FEATURE CARDS ================= */

.ts-feature-card{
  position:relative;
  padding:20px 24px;
  margin-bottom:18px;
  border-radius:16px;

  background:rgba(255,255,255,0.75);

  box-shadow:
    0 8px 25px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.04);

  backdrop-filter:blur(10px);

  transition:all 0.4s ease;
  overflow:hidden;

  flex:1; /* 🔥 IMPORTANT for equal height */
}


/* TEXT */

.ts-feature-card h4{
  font-size:18px;
  margin-bottom:6px;
  color:#111;
}

.ts-feature-card p{
  font-size:14px;
  color:#555;
  line-height:1.5;
}


/* SHINE EFFECT */

.ts-feature-card::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );
  transition:0.6s;
}

.ts-feature-card:hover::after{
  left:120%;
}


/* GLOW BORDER */

.ts-feature-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  padding:1px;

  background:linear-gradient(
    120deg,
    transparent,
    #34d399,
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:0.4s;
}


/* HOVER EFFECT */

.ts-feature-card:hover{
  transform:translateX(12px) scale(1.03);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.12),
    0 5px 15px rgba(0,0,0,0.08);
}

.ts-feature-card:hover::before{
  opacity:1;
}


/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

  .ts-features-heading h2{
    font-size:36px;
  }

  .ts-features-container{
    gap:40px;
  }

}


@media(max-width:992px){

  .ts-features-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .ts-features-content{
    justify-content:center;
  }

  .ts-feature-card{
    flex:none; /* reset for mobile */
  }

  .ts-features-image{
    height:400px; /* 🔥 fixed height for mobile */
  }

  .ts-features-heading h2{
    font-size:32px;
  }

}


@media(max-width:576px){

  .ts-features-heading h2{
    font-size:26px;
  }

  .ts-features-section{
    padding:70px 20px;
  }

  .ts-features-image{
    height:280px;
  }

  .ts-feature-card{
    padding:16px;
  }

}

/* ================================================================================================================================ */

/* ================= SECTION ================= */

.switch-compare-section{
  padding:100px 6%;
  background:#fff;
}

/* ================= HEADING ================= */

.switch-heading{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.switch-heading h2{
  font-size:42px;
  margin-bottom:15px;
  color:#000;
}

.switch-heading p{
  font-size:16px;
  color:#555;
  line-height:1.6;
}

/* ================= CONTAINER ================= */

.switch-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* ================= BOX ================= */

.switch-box::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  padding:1px;
  background:linear-gradient(120deg,#b2ebd6c1,transparent);
  opacity:0;
  transition:0.4s;
}

.switch-box:hover::before{
  opacity:1;
}

.switch-box{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:#f8f8f8;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 4px 15px rgba(0,0,0,0.05);

  transition:0.4s ease;
  background: #0000000f;
}

/* HOVER EFFECT */

.switch-box:hover{
  transform:translateY(-8px);
  /* box-shadow:
    0 20px 50px rgba(0,0,0,0.12),
    0 10px 25px rgba(0,0,0,0.08); */
}

/* ================= IMAGE ================= */

.switch-box img{
  width:100%;
  height:450px;
  object-fit:cover;
  display:block;
  transition:0.5s ease;
}
.switch-box:hover img{
  transform:scale(1.05);
}

/* ================= LABEL ================= */

.label{
  position:absolute;
  top:15px;
  left:15px;
  padding:6px 14px;
  font-size:12px;
  font-weight:600;
  border-radius:20px;
  backdrop-filter:blur(10px);
}

/* OLD LABEL */

.old-label{
  background:rgba(0, 0, 0, 0.81);
  color:#fff;
}

/* NEW LABEL */

.new-label{
  background:linear-gradient(135deg,#9af4d3,#48af8d);
  color:#000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .switch-container{
    grid-template-columns:1fr;
  }

  .switch-heading h2{
    font-size:32px;
  }

}

@media(max-width:768px){

  .switch-box img{
    height:260px;
  }

}

@media(max-width:576px){

  .switch-heading h2{
    font-size:26px;
  }

  .switch-box img{
    height:220px;
  }

}


* {
  scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
  will-change: transform, opacity;
}

/* ==================================================================================================
   Premium interactions: Customisation section only
================================================================================================== */
.customisation-section .tab-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.customisation-section .tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(65, 134, 110, 0.22);
}

.customisation-section .tab-btn.active {
  box-shadow: 0 14px 34px rgba(65, 134, 110, 0.28);
}

.customisation-section .tab-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.customisation-section .tab-content.active {
  opacity: 1;
  transform: translateY(0);
}

.customisation-section .tab-content.custom-tab-enter .content-row,
.customisation-section .tab-content.custom-tab-enter .features-grid {
  animation: customTabFloatIn 0.55s ease both;
}

@keyframes customTabFloatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.customisation-section .color-box,
.customisation-section .size-box,
.customisation-section .material-box,
.customisation-section .icons-box,
.customisation-section .bezels-box,
.customisation-section .feature-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.customisation-section .color-box:hover,
.customisation-section .size-box:hover,
.customisation-section .material-box:hover,
.customisation-section .icons-box:hover,
.customisation-section .bezels-box:hover,
.customisation-section .feature-card:hover {
  box-shadow: 0 16px 38px rgba(65, 134, 110, 0.18);
  border-color: rgba(65, 134, 110, 0.35);
}

.customisation-section .content-right img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.customisation-section .content-row:hover .content-right img {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.16));
}

/* ==================================================================================================
   Extra premium interaction: ts-features-section
================================================================================================== */
.ts-features-section .ts-features-container {
  perspective: 1200px;
}

.ts-features-section .ts-features-image img {
  transform-style: preserve-3d;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.ts-features-section .ts-feature-card {
  cursor: pointer;
  border: 1px solid rgba(65, 134, 110, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.ts-features-section .ts-feature-card:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 3px;
}

.ts-features-section .ts-feature-card--active {
  border-color: rgba(65, 134, 110, 0.55);
  background: linear-gradient(135deg, rgba(65, 134, 110, 0.14), rgba(255, 255, 255, 0.96));
  box-shadow: 0 20px 44px rgba(65, 134, 110, 0.24);
  transform: translateX(14px) scale(1.03);
}

.ts-features-section .ts-feature-card--active h4 {
  color: #0f3f31;
}

.ts-features-section .ts-feature-card--active::before {
  opacity: 1;
}

/* Entrance animation: handled by AOS on .ts-feature-card (do not set opacity:0 here — it blocked AOS). */

/* ==================================================================================================
   Extra premium interaction: switch-compare-section
================================================================================================== */
.switch-compare-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.switch-compare-section .switch-container {
  max-width: 1320px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  justify-items: center;
  perspective: 1300px;
  align-items: stretch;
}

.switch-compare-section .switch-box {
  width: 100%;
  max-width: 580px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.switch-compare-section .switch-box img {
  width: 100%;
  height: clamp(250px, 33vw, 400px);
  object-fit: contain;
  object-position: center;
  padding: 12px;
  border-radius: 14px;
  background: transparent;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.switch-compare-section .switch-box:hover img,
.switch-compare-section .switch-box--active img {
  transform: scale(1.04);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.18));
}

.switch-compare-section .switch-box:hover,
.switch-compare-section .switch-box--active {
  border-color: rgba(65, 134, 110, 0.55);
  box-shadow: 0 22px 48px rgba(65, 134, 110, 0.22);
}

.switch-compare-section .switch-box:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 4px;
}

.switch-compare-section .switch-box.new.switch-box--active {
  background: linear-gradient(145deg, rgba(65, 134, 110, 0.18), rgba(255, 255, 255, 0.98));
}

.switch-compare-section .label {
  letter-spacing: 0.2px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.2);
}

@media (max-width: 992px) {
  .switch-compare-section .switch-box {
    min-height: 390px;
  }
}

@media (max-width: 576px) {
  .switch-compare-section .switch-box {
    min-height: 320px;
  }
}