@font-face {
  font-family: 'Lato-Regular';
  src: url('../fonts/Lato-Regular.ttf') format('opentype');
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('opentype');
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f4f4f2;
    overflow-x:hidden;
}

    .po-age-gate-overlay{
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.38);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:2rem;
}

.po-age-gate-box{
  width:100%;
  max-width:40%;
  background:#18211b91;
  border-radius:0.5rem;
  padding:2.5rem 2rem;
  text-align:center;
  box-shadow:0 15px 50px rgba(0,0,0,0.45);
}

.po-age-gate-box h2{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Poppins';
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 1px;
      font-family: 'Lato-Regular';
}


.po-age-gate-buttons{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}

.po-age-btn{
  padding:0.8rem 2rem;
  border:none;
  border-radius:0rem;
  font-size:1.3rem;
  font-weight:700;
  cursor:pointer;
  transition:0.3s ease;
  font-family:'Lato-Regular';
}

.po-age-yes{
  background:#37b772;
  color:#fff;
    font-family: 'Lato-Regular';
}

.po-age-no{
  background:#fe9d4e;
  color:#fff;
  border:1px solid #555;
    font-family: 'Lato-Regular';
}

.po-age-btn:hover{
  transform:translateY(-3px);
}

.po-top-offer-strip {
  width: 100%;
  min-height: auto;
  background: #2b9f67;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  padding: 0.55rem 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= HERO ================= */

.hero-section{
    width:100%;
    position:relative;
    overflow:hidden;
}

.desktop-img,
.mobile-img{
    width:100%;
    display:block;
    object-fit:cover;
}

.mobile-img{
    display:none;
}

/* ================= REVIEW SECTION ================= */

.review-section{
    width:100%;
    padding:4rem 0 2rem;
    overflow:hidden;
}

.review-heading{
    text-align:center;
    color:#c8c772;
    font-size:2rem;
    font-weight:700;
    line-height:1.15;
    margin-bottom:2rem;
    padding:0 1rem;
}

.review-top{
    width:90%;
    margin:auto;
    margin-bottom:1rem;
}

.rating-wrap{
    display:flex;
    align-items:center;
    gap:0.7rem;
    flex-wrap:wrap;
}

.stars{
    color:#f69a43;
    font-size:1.7rem;
    letter-spacing:0rem;
}

.review-count{
    font-size:1.15rem;
    color:#222;
    font-weight:500;
    margin-top: 7px;
}

/* ================= SLIDER ================= */

.review-slider{
    width:90%;
    margin:auto;
    overflow:hidden;
    position:relative;
}

.review-track{
    display:flex;
    gap:2rem;
    transition:transform 0.7s ease;
    will-change:transform;
}

/* ================= CARD ================= */

.review-card{
    flex:0 0 calc((100% - 4rem) / 3);
    background:#fff;
    border:1px solid #d9d9d9;
    border-radius:0.5rem;
    padding:2rem;
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    margin-bottom:0.8rem;
    flex-wrap:wrap;
}

.user{
    font-size:1rem;
    color:#333;
    font-weight:500;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}

.verified{
    color:#7d8aa3;
    font-weight:500;
    margin-left:0.4rem;
    display:flex;
    align-items:center;
    gap:0.35rem;
}

.verified-icon{
    width:0.9rem;
    height:0.9rem;
    object-fit:contain;
}

.date{
    font-size:1rem;
    color:#7d8aa3;
}

.card-stars{
    color:#f69a43;
    font-size:1.5rem;
    margin-bottom:0.3rem;
}

.card-title{
    font-size:1.3rem;
    line-height:1.3;
    color:#303030;
    margin-bottom:1rem;
    font-weight:500;
}

.card-text{
    font-size:0.9rem;
    line-height:1.8;
    color:#444;
}

/* ================= ARROWS ================= */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:4rem;
    height:4rem;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0.3rem 1rem rgba(0,0,0,0.12);
    cursor:pointer;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s ease;
}

.arrow:hover{
    transform:translateY(-50%) scale(1.05);
}

.arrow svg{
    width:2rem;
    height:2rem;
}

.prev{
    left:1rem;
        display: none;
}

.next{
    right:1rem;
    display: none;
}

/* ================= FOOTER ================= */

.footer{
    width:100%;
    background:#050505;
    text-align:center;
    padding: 1rem;
    margin-top:2rem;
}

.privacy-link{
    color:#fff;
    text-decoration:none;
    font-size:1.1rem;
    font-weight:500;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .desktop-img{
        display:none;
    }

    .mobile-img{
        display:block;
    }

    .review-section{
        padding:2.5rem 0 0;
    }

    .review-heading{
        font-size:2.3rem;
        margin-bottom:1.5rem;
    }

    .review-top{
        width:100%;
        padding:0 1rem;
    }

    .stars{
        font-size:1.7rem;
    }

    .review-count{
        font-size:1.1rem;
    }

    .review-slider{
        width:100%;
        padding:0 1rem;
    }

    .review-track{
        gap:1rem;
    }

    .review-card{
        flex:0 0 100%;
        min-width:100%;
        padding:1.5rem;
    }

    .card-title{
        font-size:1.5rem;
    }

    .card-text{
        font-size:1rem;
        line-height:1.7;
    }

    .arrow{
        display:none;
    }

    .footer{
        margin-top:1rem;
    }

    .privacy-link{
        font-size:1.2rem;
    }
    
     .po-age-gate-box{
    padding:2rem 1.2rem;
    max-width: 95%;
  }

  .po-age-gate-box h2{
    font-size:1.3rem;
  }

  .po-age-btn{
    width:100%;
     padding: 0.8rem 1.5rem;
      font-size: 1.3rem;
  }
  
  .po-age-gate-overlay {
    padding: 2rem 0.6rem;
}

.po-age-gate-buttons {
    gap: 1rem;
    flex-wrap: nowrap;
}

 .po-top-offer-strip {
    font-size: 1.08rem;
    padding: 0.6rem 1vw;
  }
}

