/* =========================================
   Dermple UI — Custom CSS
   Keep this file modular & easy to edit
========================================= */

:root{
  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --black: #151515;
  --white: #ffffff;

  /* sampled/approximated from design */
  --neon-yellow: #fdff00;
  --warm-yellow: #fdea13;
  --lime: #a6f200;
  --purple: #9b74e6;

  --soft-gray: #f6f6f6;
  --border: rgba(0,0,0,.12);
  --muted: rgba(0,0,0,.65);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  background: #151515;
  color: var(--black);
  font-family: var(--font);
}

/* Max width wrapper for a 1440px desktop layout */
.site-container{
  padding: 0;
}

/* ---------- Topbar ---------- */
.topbar{
  background: var(--neon-yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
}
.topbar__inner{
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  min-height: 34px;
  text-transform: lowercase;
}
.topbar__dot{ opacity: .75; }

/* ---------- Header/Nav ---------- */
.site-header{
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.brand-mark{
  background: var(--black);
  border-radius: 6px;
  display: inline-block;
  height: 18px;
  width: 18px;
}
.brand-name{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: lowercase;
}
.navbar .nav-link{
  color: var(--white);
  font-family: "Sono", monospace;
  font-weight: 600;
  opacity: .9;
}
.navbar .nav-link.active,
.navbar .nav-link:hover{
  color: #fff;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav-actions .icon-btn{
    background: transparent;
    border-color: transparent;
    border-radius: 999px;
    display: grid;
    height: 38px;
    place-items: center;
    width: 38px;
}
.nav-actions .icon-btn i {
    color: #fff;
    font-size: 24px;
}
.cart-badge{
  background: #e10707;
  border-radius: 999px;
  color: #fff;
  display: grid;
  font-size: 11px;
  height: 18px;
  place-items: center;
  position: absolute;
  right: -6px;
  top: -6px;
  width: 18px;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ---------- Hero ---------- */
.hero{
    background: url(images/home-banner.png) no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    font-family: "Sono", monospace;
    margin: 0 20px;
    padding: 10% 0 10%;
    text-align: center;
}
.hero-title{
  font-family: "Sono", monospace;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  margin-bottom: 8px;
}
.hero-cta{
    border-radius: 999px;
    font-weight: 700;
    padding: 10px 30px;
}

/* ---------- As Seen In ---------- */
.as-seen{
    background: #fff;
    border-radius: 33px;
    margin: 20px 20px;
    padding: 70px 0px;
    text-align: center;
    
}
.as-seen-title{
     font-family: "Sono", monospace;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.as-seen-logos{
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
}
.as-seen-copy{
    color: rgba(0, 0, 0, .75);
    font-family: "Sono", monospace;
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto;
}

/* ---------- Featured Products ---------- */
.featured{
    background: var(--neon-yellow);
    border-radius: 33px;
    margin: 0 20px;
    padding: 70px 0;
}
.section-title{
     font-family: "Sono", monospace;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.product-card{
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 0px;
      height: 100%;
    overflow: hidden;
    padding: 30px 20px;
    position: relative;
}
.product-media img{
  display: block;
  height: auto;
  width: 100%;
}
.wish-btn{
    background: transparent;
    border: 0px;
    border-radius: 999px;
    bottom: 50px;
    display: grid;
    height: 34px;
    place-items: center;
    position: absolute;
    right: 0px;
    width: 34px;
}
.wish-btn i {
  font-size: 25px;
}
.product-body{
    padding-top: 50px;
    position: relative;
}
.product-title{
    font-family: "Sono", monospace;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 3px;
}
.product-desc{
    color: rgb(0 0 0 / 70%);
    font-family: "Sono", monospace;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: lowercase;
}
.product-meta{
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.product-btn{
    border-radius: 999px;
    font-weight: 700;
    padding: 7px 20px;
}
.product-price{
  font-weight: 800;
}


/* ---------- Split Story ---------- */
.split-story{
  padding: 40px 0 20px;
}
.story-title{
  background: var(--black);
  border-radius: 16px;
  color: var(--white);
  display: inline-block;
  font-family: "Sono", monospace;
  font-weight: 900;
  padding: 16px 14px;
  width: 100%;
}
.story-photo{
    background: #38c0d8;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}
.story-photo img{ height: 100%; width: 100%; }

.story-card{
    background: #38c0d8;
    border-radius: 0 30px 30px 0;
    padding: 16px;
    position: relative;
}
.story-beforeafter img {
    height: fit-content;
    left: -100px;
    top: 30px;
}
.story-card__title{
  font-family: "Sono", monospace;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  margin-top: 14px;
}
.story-card__sub{
  font-weight: 600;
  margin: 6px 0 10px;
  opacity: .95;
  text-transform: lowercase;
}
.story-icons{
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.story-icons li{
  align-items: center;
  display: flex;
  font-family: "Sono", monospace;
  font-weight: 600;
  gap: 10px;
}
.story-icons i{
    background: rgb(0 0 0);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 40px;
    color: #fff;
    display: grid;
    height: 34px;
    place-items: center;
    width: 34px;
}

/* Ingredients + model row */
.ingredients-card{
    background: #ff3fb4;
    border-radius: 30px 0px 0px 40px;
    color: #111;
    padding: 50px 30px 50px 30px;
}
.ingredients-title{
  font-family: "Sono", monospace;
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}
.icon-feature{
    align-items: flex-start;
    display: flex;
    gap: 10px;
    padding: 10px;
}
.icon-feature i{
    border: 1px solid rgb(0 0 0);
    border-radius: 50%;
    display: grid;
    font-size: 25px;
    height: 65px;
    object-fit: cover;
    place-items: center;
    width: 85px;
}
.icon-feature>div {
    width: 290px;
}
.ingredients-card a.btn {
  border-radius: 30px;
  font-weight: 800;
  padding: 10px 40px;
}
.icon-feature__label{
    font-family: "Sono", monospace;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
}
.icon-feature__desc{
    color: rgba(0, 0, 0, .72);
    font-size: 16px;
    margin: 0;
    text-transform: lowercase;
}
.model-product{
    background: #ff3fb4;
    border-radius: 0px 30px 30px 0px;
    overflow: hidden;
}
.model-product img{ height: 100%; width: 100%; }

/* ---------- Steps ---------- */
.steps{
  padding: 10px 0 30px;
}
.steps-card{
  background: var(--lime);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 0px;
}
.steps-title{
    font-family: "Sono", monospace;
    font-weight: 900;
    margin-bottom: 30px;
}
.steps-list{
    display: grid;
    font-family: "Sono", monospace;
    font-size: 20px;
    font-weight: 600;
    gap: 5px;
    margin: 0;
    padding-left: 18px;
}
.steps-list p {
    font-family: 'Poppins';
    font-size: 16px !important;
    font-weight: 400;
}
.steps-list strong{
  font-weight: 900;
}

/* ---------- Complete bar ---------- */
.complete{
  padding: 0px 0 20px;
}
.complete-bar{
  background: var(--black);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: center;
}
.complete-title{
  color: #fff;
  font-family: "Sono", monospace;
  font-weight: 900;
  margin: 0;
}
.complete a.btn {
    border-radius: 30px;
    padding: 10px 40px;
}

/* ---------- Community (purple) ---------- */
.community{
    background: var(--purple);
    border-radius: 33px;
    margin: 0 20px;
    padding: 40px 0 40px;
}
.community-title{
  color: #000000;
  font-family: "Sono", monospace;
  font-weight: 900;
}
.review-card{
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 14px;
    display: grid;
    gap: 15px;
    height: 100%;
    padding: 14px;
}
.review-stars{
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.review-stars i{ color: #ffb400; }
.review-title{
    font-family: "Sono", monospace;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}
.review-text{
    color: rgba(0, 0, 0, .75);
    font-size: 16px;
    margin-bottom: 8px;
}
.review-name{
    color: rgba(0, 0, 0, .65);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.community-btn{
  border-radius: 30px;
  font-weight: 800;
  padding: 10px 40px;
}


/* ---------- FAQ ---------- */
.faq{
    background: #fff;
    border-radius: 33px;
    margin: 20px 20px;
    padding: 50px 0 50px;
}
.faq-title{
  font-family: "Sono", monospace;
  font-weight: 900;
  margin-bottom: 20px;
}
.accordion-button{
    font-family: "Sono", monospace;
    font-size: 20px;
    font-weight: 500;
}
.accordion-body{
  color: rgba(0,0,0,.75);
}

/* ---------- Footer ---------- */
.site-footer{
    background: var(--neon-yellow);
    border-radius: 33px;
    border-top: 1px solid rgba(0, 0, 0, .12);
    margin: 0 20px;
    padding: 60px 100px 10px;
}
.footer-title{
    font-family: "Sono", monospace;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.footer-copy{
  color: rgba(0,0,0,.75);
  margin: 0;
}
.footer-links{
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a{
  color: rgba(0,0,0,.8);
  font-weight: 500;
  text-decoration: none;

}
.contact-d a {
  color: rgba(0,0,0,.8);
  font-weight: 500;
  text-decoration: none;
}
.footer-links a:hover{ text-decoration: underline; }

.footer-social{
  display: flex;
  gap: 12px;
}
.footer-social a{
    color: var(--black);
    display: grid;
    height: 38px;
    place-items: center;
    text-decoration: none;
    width: 38px;
}
.footer-social a i {
    font-size: 20px;
}
.payments img {
    display: block;
    margin-left: auto;
    margin-right: 0;
}
.footer-bottom{
  border-top: 1px solid rgba(0,0,0,.12);
  color: rgba(0,0,0,.75);
  font-size: 14px;
  margin-top: 18px;
  padding-top: 14px;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px){
  .navbar .nav-link{ padding: 10px 0; }
  .hero-card{ padding: 16px; }
  .as-seen .as-seen-logos img {
      width: 100%;
  }
  .story-beforeafter img {
      left: 0;
      margin: auto;
      right: 0;
      width: auto;
  }
  .story-photo {
        border-radius: 30px 30px 0 0px;
  }
  .story-card {
      border-radius: 0 0px 30px 30px;
      padding: 20px 30px 40px 30px;
  }
  .ingredients-card {
        border-radius: 30px 30px 0px 0px;
  }
  .model-product {
      border-radius: 0px 0px 30px 30px;
  }
  .icon-feature>div {
      width: auto;
  }
  .icon-feature i {
      height: 65px;
      width: 65px;
  }
  .icon-feature {
    display: grid;
  }
  .steps-card {
      padding: 30px 30px 30px 30px;
  }
  h3.steps-title {
      margin-top: 40px;
  }
  nav {
      padding-left: 10px !important;
      padding-right: 10px !important;
  }
  .hero {
      background-size: auto !important;
  }
  .site-footer{
      padding: 60px 50px 10px;
  }
}

@media (max-width: 575.98px){
  .topbar__inner{
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 6px 0;
    text-align: center;
  }
  .story-title{
    font-size: 18px;
    padding: 14px 12px;
  }
}
