/* =======================================
   PRODUCT HERO – BASE LAYOUT (DESKTOP)
   ======================================= */

/* ---------- Layout shell ---------- */

.product-hero {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* left a bit wider */
  column-gap: 150px;
  align-items: flex-start;
}

/* ---------- Left: main image with hotspots ---------- */

.product-hero__media {
  display: flex;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.image-with-hotspots {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.image-with-hotspots img {
  max-width: 776px; /* upper limit for very wide screens */
  height: auto;
  display: block;
  object-fit: cover;
}

/* Invisible clickable hotspots (overlay rectangles) */
.hotspot {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Rough positions in % – tweak to match your exact design */
.hotspot--1 {
  top: 4.5%;
  right: 3.5%;
}
.hotspot--2 {
  top: 16.5%;
  right: 3.5%;
}
.hotspot--3 {
  top: 28.5%;
  right: 3.5%;
}
.hotspot--4 {
  top: 40.5%;
  right: 3.5%;
}

/* ---------- Right: text content ---------- */

.product-hero__content {
  display: flex;
  flex-direction: column;
}

.product-hero__header {
  display: flex;
  flex-direction: column;
}

.product-hero__title {
  color: var(--Header, #151515);
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap; /* keep single line on large screens */
  margin-bottom: 20px;
}

.product-hero__title-main {
  color: var(--Header, #151515);

  /* H1 */
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.product-hero__intro,
.product-hero__bullets {
  color: var(--P, #4a4a4a);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.product-hero__bullets li + li {
  margin-top: 2px;
}

/* ---------- Share ---------- */

.product-hero__share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.product-hero__share-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 30px;
}

.product-hero__share-label {
  font-weight: 600;
  font-size: 14px;
}

.product-hero__share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.socmed {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-hero__share-links a {
  color: var(--P, #4a4a4a);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

/* ---------- Variants & colors ---------- */

.product-hero__variants {
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.product-hero__variant-toggle {
  display: inline-flex;
  gap: 10px;
}

.product-hero__variant-btn {
  background: #fff;
  border: 1px solid var(--Header, #151515);
  border-radius: 999px;
  padding: 5px 20px;
  cursor: pointer;
  font-family: Lato;
  font-size: 16px;
  outline: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-hero__variant-btn.is-active {
  background: var(--Header, #151515);
  color: #fff;
  border-color: var(--Header, #151515);
}

.product-hero__variant-btn:hover {
  background: var(--Header, #151515);
  color: #fff;
  border-color: var(--Header, #151515);
}

.product-hero__color-list {
  display: none;
  grid-template-columns: repeat(16, 1fr);
  column-gap: 10px;
  row-gap: 15px;
  align-items: center;
}

/* only active list is visible */
.product-hero__color-list.is-active {
  display: grid;
}

.product-hero__color-swatch {
  width: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ---------- Sizes ---------- */

.product-hero__sizes {
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.product-hero__size-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.product-hero__size-btn {
  border-radius: 999px;
  padding: 5px 20px;
  border: 1px solid var(--Header, #151515);
  background: #fff;
  cursor: pointer;
  color: var(--Header, #151515);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.product-hero__size-btn.is-active {
  background: var(--Header, #151515);
  color: #fff;
}

.product-hero__size-btn:hover {
  background: var(--Header, #151515);
  color: #fff;
  border-color: var(--Header, #151515);
}

.product-hero__size-meta {
  margin: 0;
  color: var(--Header, #151515);
}

/* ---------- CTA ---------- */

.product-hero__cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}

.product-hero__cta-buttons {
  display: flex;
  gap: 10px;
}

.product-hero__cta p {
  padding-top: 15px;
  color: var(--P, #151515);
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: #e02626;
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  border: 1px solid #e02626;
}

.btn--primary:hover {
  background: transparent;
  color: #e02626;
  border: 1px solid #e02626;
}

.btn--outline-red {
  background: #fff;
  color: #ed1c24;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  border: 1px solid #e02626;
}

/* =======================================
   PRODUCT HERO – RESPONSIVE
   ======================================= */

/* <= 1600px – slightly tighter padding & gap */
@media (max-width: 1600px) {

  .product-hero__grid {
    column-gap: 110px;
  }
}

/* <= 1500px – give image a bit more share */
@media (max-width: 1500px) {
  .product-hero__title {
    white-space: wrap;
  }

  .product-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    column-gap: 100px;
  }

  .image-with-hotspots img {
    max-width: 650px;
  }
}

/* <= 1200px – tighter layout, still two columns */
@media (max-width: 1199px) {

  .product-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 30px;
  }

  .image-with-hotspots img {
    max-width: 580px;
  }

  .product-hero__color-list {
    grid-template-columns: repeat(12, 1fr);
  }
}

/* <= 991px – stack columns, disable sticky, center image */
@media (max-width: 991px) {
  .product-hero {
    padding: 70px 30px;
  }

  .product-hero__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .product-hero__media {
    position: static;
    top: auto;
    justify-content: center;
  }

  .image-with-hotspots {
    max-width: 600px;
    margin: 0 auto;
  }

  .image-with-hotspots img {
    max-width: 100%;
    height: auto;
  }

  .product-hero__title {
    white-space: normal; /* allow wrapping on smaller screens */
  }

  .product-hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-hero__color-list {
    grid-template-columns: repeat(10, 1fr);
  }
}

/* <= 768px – fewer color columns */
@media (max-width: 767px) {
  .product-hero__color-list {
    grid-template-columns: repeat(8, 1fr);
  }
  .product-hero {
    padding: 50px 20px;
  }
}

/* <= 575px – mobile tweaks */
@media (max-width: 575px) {


  .image-with-hotspots {
    max-width: 100%;
  }

  .product-hero__title {
    font-size: 26px;
  }

  .product-hero__share {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-hero__content {
    gap: 20px;
  }

  .product-hero__color-list {
    grid-template-columns: repeat(6, 1fr);
  }

  /* optional: smaller hotspots on small screens */
  .hotspot {
    width: 40px;
    height: 40px;
  }
}

/* =============================================
   EXTRA SECTIONS INSIDE PRODUCT HERO
   ============================================= */
.product-hero__extra {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Row layout */
.product-hero__extra-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  column-gap: 60px;
  margin-top: 100px;
}

.product-hero__extra-row.reverse {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.extra-text h2 {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  color: #151515;
  line-height: normal;
  margin-bottom: 20px;
  max-width: 758px;
}

.extra-text p {
  font-family: "Lato";
  font-size: 16px;
  line-height: 24px;
  color: #4a4a4a;
  margin-bottom: 20px;
  max-width: 758px;
}

.extra-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1200px) {
  .product-hero__extra-row {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
}

@media (max-width: 991px) {
  .product-hero__extra-row,
  .product-hero__extra-row.reverse {
    grid-template-columns: 1fr;
  }

  .extra-text,
  .extra-image {
    text-align: left;
  }

  .extra-image img {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .extra-text h2 {
    font-size: 26px;
  }
}

/*VZZ Additions*/
.kenmos__wrapper{
  max-width: 1576px;
  margin: 0 auto;
}
section.second__section{
  background: #151515;
}

.accordion-button::after {
  display: none !important; /* Hide default Bootstrap arrow */
}

.accordion-button svg {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-button.collapsed svg {
  transform: rotate(180deg);
}
.header__content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:276px;
  margin-bottom: 60px;
}
.header__content p,
.header__content h2{
  max-width: 650px;
}

.second__section h2,
.second__section p,
.second__section h3,
.second__section h4{
  color: #FFF;
  margin: 0;
}
.second__section .acp__grid{
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.second__section .mini__banner{
  border-radius: 15px;
  margin-bottom: 30px;
  overflow: hidden;
}
.second__section .grid__row{
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}
.second__section .grid__row::after{
  content: "";
  flex: 1 1 calc(33.333% - 30px);
}
.second__section .big__card img,
.second__section .mini__card img{
  height:30px;
  width:30px;
}
.second__section .acp > img{
  margin-bottom: 30px;
  border-radius: 10px;
}
.second__section .mini__card{
  flex: 1 1 calc(33.333% - 30px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5px);
  min-height: 218px;
  width: 100%;
}
.second__section .grid__row > .mini__card {
  flex: 1 1 calc(33.333% - 30px);
}
.second__section .mini__card p,
.second__section .big__card p{
  margin-bottom: 0;
}
.second__section .big__card{
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5px);
  width: 100%;
}
.second__section h3,
.second__section h4,
.second__section p{
  margin-bottom: 0;
}
.second__section .big__card .__left, 
.second__section .big__card .__right {
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.third__section h3,
.third__section p{
  margin-bottom: 0;
}
.third__section .why__top{
  display: flex;
  flex-direction: row;
  margin-bottom: 100px;
  align-items: center;
  gap: 150px;
}
.third__section .why__top .content__container{
  max-width: 650px;
}

.third__section .why__btm .content-container{
  max-width: 1100px;
  margin: 0 auto 60px;
}
.third__section .why__top .why__grid{
  margin: 60px 0 0;
  display: flex;
}
.third__section .why__top .why__grid .why__card{
  flex: 1 1 calc(25% - 30px);
}
.third__section .why__grid{
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.third__section .why__card{
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 calc(25% - 30px);
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
}
.third__section .why__card img{
  max-width: fit-content;
}
.third__section .why__card .d-flex{
  gap:20px;
  flex-direction: column;
}
.third__section .why__card .d-flex h3 {
  min-height: 110px;
}
.fourth__section{
  background: #151515;
}
.fourth__section h2,
.fourth__section p,
.fourth__section h3{
  color: #fff;
  margin: 0;
}
.fourth__section .kenmos__wrapper > img{
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}
.fourth__section .appl__grid{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.fourth__section .appl__card{
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5px);
  flex: 1 1 calc(25% - 30px);
  padding: 20px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.fourth__section .appl__card .__top{
  gap:20px;
  display: flex;
  flex-direction: column;
}
.fourth__section .appl__card img{
  max-width: fit-content;
}

.fifth__section .testi__area h2,
.fifth__section .testi__area p {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.fifth__section .testi__area h2{
  margin-bottom: 20px;
}
.fifth__section .testi__carousel{
  margin-top: 60px;
}

.fifth__section .testi__box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap:20px;
  text-align: center;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
  height: 100%;
}
.fifth__section .testi__box img{
  max-width: fit-content;
  margin: auto;
}
.fifth__section .testi__box span{
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.fifth__section .owl-stage{
  display: flex;
  padding-bottom: 50px;
}
.fifth__section .faq__area{
  margin-top: 100px;
}
.fifth__section .faq__area h2{
  margin: auto;
  text-align: center;
}
.fifth__section .faq__area .accordion{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.fifth__section .accordion-item{
  border: none;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
}
.fifth__section .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: var(--Header, #151515);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.fifth__section .accordion-body {
    padding: 0 30px 30px;
}
.fifth__section .accordion-body p:last-of-type{
  margin-bottom: 0;
}
.fifth__section .contact__area{
  margin-top: 100px;
  background: url('https://kenmos.ph/wp-content/uploads/2025/12/Frame-23.jpg')no-repeat center center / cover;
  padding: 100px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.contact__area h2, 
.contact__area p, 
.contact__area h3, 
.contact__area span {
    color: #fff;
    margin: 0;
}
.contact__area .__right p:first-of-type{
  margin-bottom: 24px;
}
.contact__area .__right h3{
  margin: 24px 0;
}
.contact__area .__left{
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap:20px;
}
.contact__area span{
  display: block;
}
.contact__area span a{
  color:#fff;
  text-decoration: none;
}
section{
  padding: 100px 15px;
}
@media all and (max-width: 1400px){
  .third__section .why__card .d-flex h3 {
      min-height: 140px;
  }
}
@media all and (max-width: 1199px){
  section{
    padding: 70px 30px;
  }
  .second__section .grid__left {
      flex: 100%;
  }
  .grid__row > *{
    width: 100%;
  }
  .header__content{
    gap:50px;
  }
  .grid__row .grid__right .mini__card{
    width: 100%;
    max-width: 100%;
  }
  .second__section .grid__row::after{
    content:unset;
    flex: unset;
  }
  .second__section .mini__card{
    min-height: unset;
  }
  .second__section .grid__row > .mini__card{
    flex: 1 1 calc(50% - 30px);
  }
  .third__section .why__top {
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
    align-items: center;
    gap: 70px;
  }
  .third__section .why__card .d-flex h3 {
    min-height: 70px;
  }
  .third__section .why__card{
    flex: 1 1 calc(50% - 30px)!important;
  }
  .fourth__section .appl__card{
    flex: 1 1 calc(50% - 30px);
  }
  .product-hero__extra{
    gap:70px;
  }
  .product-hero__extra-row{
    margin-top: 0;
    align-items: center;
  }
  .product-hero__grid{
    margin-bottom: 70px;
  }
  .fifth__section .contact__area{
    margin-top: 70px;
    padding: 70px 30px;
    gap: 30px;
  }
}

@media all and (max-width: 991px){
  .extra-text{
    order:2;
  }
  .extra-image{
    order:1;
    margin-bottom: 30px;
  }
  .header__content{
    flex-wrap: wrap;
    text-align: left;
    justify-content: start;
    gap:25px;
  }
  .second__section .grid__row > .mini__card {
    flex: 1 1 calc(100%);
  }
  .third__section .why__top {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: start;
    margin-bottom: 70px;
    flex-wrap: wrap;
  }
  .third__section .why__card{
    flex: 1 1 calc(100%)!important;
  }
  .fourth__section .appl__card{
    flex: 1 1 calc(100%);
  }
  .fifth__section .contact__area{
    flex-wrap: wrap;
  }
  .third__section .why__card h3{
    min-height: 0!important;
  }
  .second__section .big__card {
    flex-direction: column;
  }
  .third__section .why__btm .content-container{
    text-align: left!important;
  }
}
@media all and (max-width: 767px){
  section{
    padding: 50px 20px;
  }
  .product-hero__extra{
    gap:50px;
  }
  .product-hero__grid{
    margin-bottom: 50px;
  }
  .fifth__section .contact__area{
    margin-top: 50px;
    padding: 50px 20px;
  }  
}