:root {
    --wdtPrimaryColor: #e09a7a;
    --mix-color: #f8deb4;
}

.row {
    row-gap: 10px
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #FFF9F4;
    color: #000000;
    overflow-x: hidden !important;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

a{
    text-decoration: none;
    color: #eb8b5f;
}

.navbar-brand img {
    width: 170px;
}
/* ============================================== */

.banner {
        margin-top: 60px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.315), rgba(0, 0, 0, 0.288)), url('../img/banner.webp');
        background-size: cover;
        background-position:center;
        padding: 100px 0;
        height: 95vh;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-header-content{
        padding: 30px 10px;
    }
    .main-header-content span{
        background-color: #000;
        color: bisque;
        padding: 5px 15px;
        font-weight: 400;
        border-radius: 5px;
    }

    .banner h1 {
        color: rgb(243, 232, 224);
        font-weight: 800;
        font-size:54px;
        margin: 15px 0;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.4), 0 4px 12px rgba(5, 2, 0, 0.3) !important;
    }
    .banner p {
        font-size: 1.0rem;
        margin-bottom: 30px;
    }
    .btn-black{
        background-color: #000;
        color: bisque;
    }
     .btn-black:hover{
        background-color: #e09a7a;
        color: white;
     }

     @media(max-width:1299px){
        .banner h1 {
          font-size:58px !important;
      }
     }

     @media(max-width:1199px){
        .banner h1 {
          font-size:52px !important;
      }
     }
     @media(max-width:991px){
        .banner h1 {
          font-size:50px !important;
      }
     }

     @media(max-width:767px){
      .banner {
          background-image: 
              linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('../img/banner.webp'); /* <-- MOBILE IMAGE */
          background-position: left;
          background-size: cover;
          height: 90vh; /* optional shorter height on mobile */
      }
     }


     @media (max-width: 768px) {
      .banner h1 {
          font-size:36px !important;
          color: rgb(0 0 0) !important;
          text-shadow: none !important;
      }

      .main-header-content{
        background-color: rgb(250 235 215 / 63%);
        border-radius: 0 60px 10px 0;
      }
}
@media(max-width:575px){
  .main-header-content span {
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 0px !important;
}
  .banner h1 {
        font-size: 40px !important;
        margin: 10px 0 15px 0 !important;
    }
  
    .banner p {
        font-size: 0.9rem !important;
    }
  }

@media(max-width:375px){
  .banner h1 {
        font-size: 34px !important;
    }
}

@media(max-width:320px){
  .banner h1 {
        font-size: 26px !important;
    }
}

     /* =============== */
     /* Promo Strip Container */
    .promo-strip {
      width: 100%;
      background: #000;
      color: #fff;
      padding: 8px 0;
      font-size: 18px;
      font-weight: 300;
      letter-spacing: 0.9px;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
    }

    /* Scrolling animation */
    .promo-strip .marquee {
      display: inline-flex;
      align-items: center;
      gap: 40px;
      animation: scroll-left 50s linear infinite;
    }

    .promo-strip:hover .marquee {
      animation-play-state: paused;
    }

    /* Automatically insert yellow star after each headline */
    .headline::after {
      content: "★";
      color: #ffe605;
      font-size: 20px;
      margin-left: 40px;
    }

    /* Remove star after last item */
    .headline:last-child::after {
      content: "";
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    /* Edge Fade Effect */
    .promo-strip::before,
    .promo-strip::after {
      content: "";
      position: absolute;
      top: 0;
      width: 60px;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }

    .promo-strip::before {
      left: 0;
      background: linear-gradient(to right, #000 0%, transparent 100%);
    }

    .promo-strip::after {
      right: 0;
      background: linear-gradient(to left, #000 0%, transparent 100%);
    }


/* ============================================ */
@media (max-width: 525px) {
    .navbar-brand img {
        width: 170px !important;
    }

    .top_section h1 {
        font-size: 30px !important;
    }

    .top_section p {
        font-size: 14px;
    }
}

.top_section h1 {
    font-size: 42px;
    font-weight: 700;
    font-style: normal;
}

.top_section .row {
    justify-content: center;
    align-items: center;
}

p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1px;
}

ol,
ul {
    padding-left: 1rem !important;
}

section {
    padding: 25px 0;
}

.button_main {
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    background-image: linear-gradient(90deg,
            #e09a7a,
            #e09a7a 50%,
            #e09a7a 50%,
            #e09a7a,
            #e09a7a);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;

    /* 
    padding: 5px 15px;
    border: none;
    background-image: linear-gradient(90deg,
            var(#e09a7a),
            var(--mix-color),
            var(#e09a7a) 50%,
            var(#e09a7a) 50%,
            var(#e09a7a),
            var(#e09a7a)); */
}

.button_2 {
    padding: 5px 30px;
    border: none;
    border-radius: 25px;
    background-image: linear-gradient(90deg,
            #e09a7a,
            #e09a7a 50%,
            #e09a7a 50%,
            #e09a7a,
            #e09a7a);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.button_main:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    /* Small lift on hover */
}

.navbar {
    background-color: #FFF9F4 !important;
}

.nav-link {
    color: #000000 !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #e09a7a !important;
}

.btn-primary {
    background-color: #000000;
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #e09a7a;
    border-color: #e09a7a;
}

.text-primary {
    color: #E43600 !important;
}

.blob-bg {
    position: absolute;
    width: 36.125rem;
    height: 678px;
    background: linear-gradient(to top right, #ff80b5, #9089fc);
    opacity: 0.3;
    clip-path: polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%);
}

.top-blob {
    left: calc(50% - 11rem);
    transform: translateX(-50%) rotate(30deg);
}

.bottom-blob {
    left: calc(50% + 3rem);
    transform: translateX(-50%);
}

@media (min-width: 640px) {
    .top-blob {
        left: calc(50% - 30rem);
        width: 72.1875rem;
    }

    .bottom-blob {
        left: calc(50% + 36rem);
        width: 72.1875rem;
    }
}

.fixed-bottom-bar {
    background-color: #FAD4C4;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #FFF7EF;
    z-index: 1050;
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.mobile-menu-close {
    font-size: 24px;
    background: none;
    border: none;
    color: #E43600;
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
}

.mobile-menu-nav li {
    margin-bottom: 15px;
}

.mobile-menu-nav a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: #E43600;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.navbar-toggler {
    border: none;
}


/* =========================== */
/* Before-After Slider Styles */
.new-launches-section {
    padding: 40px 0;
}

.hero_section {
    /* background-color: #E09A7A; */
    position: relative;
    display: flex;
    align-items: center;
    /* min-height: 600px; */
    overflow: hidden;
    /* Ensures the pseudo-element doesn't overflow */
    z-index: 1;
    border-radius: 15px;
}

.before-after-container::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('../img/Home-3-Banner-bg.webp');
    background-position: center center;
    background-repeat: repeat;
    background-size: contain;
    opacity: 0.04;
    mix-blend-mode: multiply;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: -1;
    background-color: #E09A7A;

    /* Places it behind content */
}

.section-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #E43600;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.before-after-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 0;  
    overflow: hidden;    
}

.before-after-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
    width: 100%;
}

.before-image,
.after-image {
    display: block;
    width: 100%;
    height: auto;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.after-image img {
    height: 100%;
    width: auto;
    max-width: none;
}

.slider-handle {
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: white;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 11;
    cursor: ew-resize;
}

.slider-button:after {
    content: "DRAG";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
}

.before-label,
.after-label {
    position: absolute;
    bottom: 20px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    z-index: 10;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}



@media (max-width: 768px) {
    .hero_section {
        min-height: auto;
        padding: 10px 0;
    }

    .section-heading {
        font-size: 32px;
    }

    .before-after-slider {
        margin-bottom: 30px;
    }
}

.benefits-list {
    list-style: square;
    text-align: start;
}

/* ========================= */

/* ======================= */
    .product-box{
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        text-align: center;
        margin-bottom: 30px;
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
        transition: all 0.3s ease-in-out;
    }

    .product-box:hover .product-image img{
        transform: scale(1.05);
        transition: all 0.3s ease-in-out;
    }

    .product-image{
      position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .discount{
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #000000;
      color: #fff;
      width: 40px;
      height: 40px;

      font-size: 12px;
      border-radius: 50%;
      font-weight: 500;

      display: flex;
      justify-content: center;
      align-items: center;

      padding: 0; /* IMPORTANT FIX */
      line-height: 1; /* optional improvement */
    }

    .product-image img{
        width: 100%;
        height: auto;
    }
    
    .product-details{
        margin-top: 15px;
    }

    .product-details h3{
        font-size: 18px !important;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .cat-title{
      /* background-color: #ffad76; */
      color: rgb(0, 0, 0);
      font-weight: 600; 
      padding: 3px 8px;
    }

    .prod-quntity{
      border: 1px solid #000;
      padding: 5px 12px;
      margin-right: 8px;
      cursor: pointer;
      border-radius: 5px;
    }

    .prod-quntity.active, .prod-quntity:hover{
      background-color: #000;
      color: rgb(255, 255, 255);
    }
/* ================================================== */

/* ------------------- */

.acne_img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}


/* ============benefits-section=============== */



/* .=============================== */


.heading_txt_2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.sub_heading {
    text-align: center;
    margin: 0;
    padding: 0;
}

/* ========footer====== */
.footer_logo span {
    font-size: 36px;
    font-weight: 800;

}

footer {
    background-color: #000;
    padding: 30px 0 10px 0;
    color: #fff;
}

.social {
    display: flex;
    gap: 10px;
    text-align: center;
}

.social a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social a:hover {
    background-color: #E43600;
    color: #fff;
}

.vr-line {
    width: 1px;
    height: 100px;
    /* adjust height */
    background-color: #E43600;

}

.footer_logo img {
    /* width: 170px; */
}


.footer_links ul li {
    list-style: none;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.footer_connect ul li {
    list-style: none;
    padding-bottom: 10px;
}

.copyRight {
    text-align: center;
}

.copyRight p {
    font-size: 12px;
}

.payment_methods ul {
    display: flex;
    font-size: 35px;
    list-style: none;
    gap: 10px;
}

.certificate {
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    padding: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.img112 {
    width: 60px;
    /* Set your desired width */
    height: 30px;
    /* Set your desired height */
    object-fit: contain;
    /* Ensures the image fills the container without distortion */
}

.footer-header-txt {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    /* Space between text and line */
    display: inline-block;
    /* Ensure proper sizing for the border */
    border-bottom: 2px solid #E43600;
}

.footer-disc span {
    font-size: 12px;
    font-weight: 500;
    border-bottom: 2px solid #ce0707;
    /* Creates the black line under the text */
}

.footer-disc p {
    font-size: 12px;
    font-weight: 400;
    padding-top: 10px;
}


/*================================================
                        Page Title CSS
=================================================*/
.page-title-area {
    background-color: #fff;
    padding-top: 35px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.page-title-content {
    position: relative;
}

.page-title-content h2 {
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 700;
}

.page-title-content ul {
    text-align: right;
    position: absolute;
    right: 0;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-title-content ul li {
    display: inline-block;
    margin-left: 15px;
    font-weight: 600;
    color: #eb9e7b;
    position: relative;
}

.page-title-content ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 6px;
    height: 12px;
    width: 1px;
    background-color: #777777;
}

.page-title-content ul li:first-child {
    margin-left: 0;
}

.page-title-content ul li:first-child::before {
    display: none;
}

.page-title-content ul li a {
    display: block;
}


/*================================================
Checkout CSS
=================================================*/
.user-actions {
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 15px 20px;
    border-top: 3px solid #E09A7A;
    position: relative;
    margin-bottom: 40px;
}

.user-actions i {
    color: #04626c;
    margin-right: 2px;
    font-size: 20px;
    position: relative;
    top: 3px;
}

.user-actions span {
    display: inline-block;
    color: #E09A7A;
    font-weight: 500;
    font-size: 16px;
}

.user-actions span a {
    display: inline-block;
    color: #000000;
}

.user-actions span a:hover,
.user-actions span a:focus {
    color: #E09A7A;
}

.billing-details .title {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    font-size: 22px;
    font-weight: 700;
}

.billing-details .title::before {
    content: '';
    position: absolute;
    background: #E09A7A;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
}

.billing-details .form-group {
    margin-bottom: 25px;
}

.billing-details .form-group label {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.billing-details .form-group label .required {
    color: #E09A7A;
}

.billing-details .form-group .nice-select {
    float: unset;
    line-height: 48px;
    color: #000000;
    border: none;
    background-color: #f5f5f5 !important;
    font-weight: normal;
    font-size: 15px;
    padding-top: 0;
    padding-bottom: 0;
}

.billing-details .form-group .nice-select .list {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    border-radius: 0;
    margin-top: 0;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.billing-details .form-group .nice-select .list .option {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.billing-details .form-group .nice-select .list .option:hover {
    background-color: #E09A7A !important;
    color: #ffffff;
}

.billing-details .form-group .nice-select .list .option.selected {
    background-color: transparent;
    font-weight: 600;
}

.billing-details .form-group .nice-select:after {
    right: 20px;
}

.billing-details .form-check {
    margin-bottom: 20px;
}

.billing-details .form-check .form-check-label {
    color: #000000;
}

.billing-details .form-check label {
    position: relative;
    left: -3px;
    top: 1px;
    font-weight: 500;
}

.billing-details .col-lg-12:last-child .form-group {
    margin-bottom: 0;
}

.order-details .title {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    font-size: 22px;
    font-weight: 700;
}

.order-details .title::before {
    content: '';
    position: absolute;
    background: #E09A7A;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
}

.order-details .order-table table {
    margin-bottom: 0;
}

.order-details .order-table table thead tr th {
    border-bottom-width: 0;
    vertical-align: middle;
    border-color: #eaedff;
    padding: 12px 20px 10px;
    font-weight: 700;
    font-size: 17px;
}

.order-details .order-table table tbody tr td {
    vertical-align: middle;
    border-color: #eaedff;
    font-size: 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 13px;
}

.order-details .order-table table tbody tr td.product-name a {
    display: inline-block;
    font-weight: 500;
}

.order-details .order-table table tbody tr td.order-subtotal span,
.order-details .order-table table tbody tr td.order-shipping span,
.order-details .order-table table tbody tr td.total-price span {
    color: #000000;
    font-weight: 700;
}

.order-details .order-table table tbody tr td.shipping-price,
.order-details .order-table table tbody tr td.order-subtotal-price,
.order-details .order-table table tbody tr td.product-subtotal {
    font-weight: 700;
    color: #000000;
}

.order-details .payment-box,
.order-table {
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    margin-top: 30px;
    padding: 30px;
}

.order-details .payment-box .payment-method p [type="radio"]:checked,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
    display: none;
}

.order-details .payment-box .payment-method p [type="radio"]:checked+label,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked)+label {
    padding-left: 27px;
    cursor: pointer;
    display: block;
    color: #000000;
    position: relative;
    margin-bottom: 8px;
    font-weight: 600;
}

.order-details .payment-box .payment-method p [type="radio"]:checked+label::before,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked)+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background: #ffffff;
}

.order-details .payment-box .payment-method p [type="radio"]:checked+label::after,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #E09A7A;
    position: absolute;
    top: 8px;
    left: 3px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked)+label::after {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.order-details .payment-box .payment-method p [type="radio"]:checked+label::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.order-details .payment-box .default-btn {
    margin-top: 20px;
    -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
    display: block;
    text-align: center;
}



/*default-btn&optional-btn*/
.default-btn {
    display: inline-block;
    border: 1px solid #E09A7A;
    padding: 10px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-transform: uppercase;
    background-color: #E09A7A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.default-btn:hover {
    background-color: #f0a945;
    color: #000000;
    border: none;
}

.optional-btn {
    display: inline-block;
    border: 1px solid #000000;
    padding: 10px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-transform: uppercase;
    background-color: transparent;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.optional-btn:hover {
    background-color: #E09A7A;
    color: #ffffff;
    border-color: #E09A7A;
}

/* ============================== */
/* Remove default focus styles */
#promo_code:focus,
#apply-promo:focus {
    outline: none;
    box-shadow: none;
    border-color: #ccc;
}

/* Style the input field */
#promo_code {
    border: 1px solid #ccc;
    border-right: none;
    color: #333;
}

/* Custom button theme */
#apply-promo {
    background-color: #E09A7A;
    color: white;
    border-color: #E09A7A;
}

/* Hover and active states for button */
#apply-promo:hover,
#apply-promo:active {
    background-color: #d18567;
    border-color: #d18567;
    color: white;
}

/* ==============card================= */

#card-form-container input::placeholder {
    color: #888;
    /* Light gray color for placeholder */
    font-style: italic;
    /* Italic text */
    opacity: 0.6;
    /* Full visibility */
}

#card-form-container label {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    /* Optional: Add spacing below labels */
}

#paypal-form-container input::placeholder {
    color: #888;
    /* Light gray color for placeholder */
    font-style: italic;
    /* Italic text */
    opacity: 0.6;
    /* Full visibility */
}

#paypal-form-container label {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    /* Optional: Add spacing below labels */
}



/* ------footer Ads--------- */



@media (min-width: 992px) and (max-width: 1179px) {
   
}
@media (max-width: 525px) {
   
}

@media (max-width: 991px) {
    

    .social {
        display: flex;
        text-align: center;
        justify-content: center;
    }
}



/* ======================Order invoice============== */


        /* Color variables matching tretinoin-australia.com */

    
        .testimonials-section {
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-header h2 {
            color: var(--primary);
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .section-header p {
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .testimonials-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            color: var(--text);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .author-info h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--light-text);
            font-size: 14px;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .control-btn {
            background-color: #e09a7a;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .control-btn:hover {
            background-color: #D27D67;
        }
        
        @media (max-width: 768px) {
            .testimonial-card {
                max-width: 100%;
            }
        }

/* ==============login page================= */

        .login-area{
  padding: 100px 10px;
  background-color:#f7f7f7;
}

.login-content {
  webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
            box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
            padding: 20px;
  background-color: #fff;
}

.login-content h2 {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 700;
}

.login-content .login-form {
  padding-right: 15px;
}

.login-content .login-form .form-group {
  margin-bottom: 20px;
}

.login-content .login-form .form-group .form-control {
  height: 50px;
}

.login-content .login-form .default-btn {
  display: block;
  width: 100%;
  padding: 14px 25px;
}

.login-content .login-form .forgot-password {
  display: inline-block;
  margin-top: 15px;
  position: relative;
  font-weight: 600;
}

.login-content .login-form .forgot-password::before {
  width: 100%;
  height: 1.5px;
  background: #777777;
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: '';
}

.login-content .login-form .forgot-password:hover::before {
  width: 0;
}

.new-customer-content {
  padding-left: 15px;
}

.new-customer-content h2 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 700;
}

.new-customer-content span {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.new-customer-content .optional-btn {
  margin-top: 5px;
}

/*================================================
Signup CSS
=================================================*/
.signup-content {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
            box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  padding: 20px;
}

.signup-content h2 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}

.signup-content .signup-form .form-group {
  margin-bottom: 20px;
}

.signup-content .signup-form .form-group label {
  display: none;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.signup-content .signup-form .form-group .form-control {
  height: 50px;
}

.signup-content .signup-form .default-btn {
  display: block;
  width: 100%;
  padding: 14px 25px;
}

.signup-content .signup-form .return-store {
  display: inline-block;
  margin-top: 15px;
  color: #777777;
  position: relative;
  font-size: 15px;
}

.signup-content .signup-form .return-store::before {
  width: 100%;
  height: 1.5px;
  background: #777777;
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: '';
}

.signup-content .signup-form .return-store:hover {
  color: #000000;
}

.signup-content .signup-form .return-store:hover::before {
  width: 0;
}





/* ------------------- */
/* === Blog Section Styling === */
.blog_banner {
    background: rgb(224 154 122);
    padding: 60px 0 40px;
    text-align: center;
}

.blog_banner h1 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

/* === Blog Card === */
.blog_item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog_item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.blog_thumb img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog_item_content {
    padding: 20px;
}

.blog_item_meta span {
    font-size: 14px;
    margin-right: 10px;
    color: #f8deb4;
}

.blog_item_content h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 15px;
    color: #333;
}

.blog_item_content a.btn {
    background-color: #e09a7a;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.blog_item_content a.btn:hover {
    background-color: #e09a7a;
    color: #fff;
}

.content-blog-section p {
    font-weight: 400;
    font-size: 16px;
}

@media screen and (max-width: 575px) {
   .content-blog-section p{
    font-size: 14px;
   }

   .content-blog-section h2 {
       font-size: 20px;
   }

   .content-blog-section h3 {
       font-size: 18px;
   }

   .content-blog-section h4 {
       font-size: 18px;
   }
}

/* === Sidebar Widgets === */

.sidebar-widget {
    background-color: #fffcf6;
    border-radius: 8px;
}

.sidebar-widget span {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.sidebar-widget a {
    color: #e09a7a;
    text-decoration: none;
}

.sidebar-widget a:hover {
    color: #e09a7a;
    text-decoration: underline;
}

/* === Category List === */
.sidebar-widget.category ul li a {
    font-size: 14px;
    color: #555;
}

.sidebar-widget.category ul li a:hover {
    color: #e09a7a;
}

/* Responsive Fixes */
@media (max-width: 767px) {
    .blog_banner h1 {
        font-size: 28px;
    }
    .blog_item_content h2 {
        font-size: 20px;
    }
    .blog_item_content a.btn {
        font-size: 13px;
        padding: 8px 18px;
    }
}


.comment-area,
.comment-box {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
}

.rounded {
    border-radius: var(--bs-border-radius) !important;
}

.shadow{
    box-shadow: var(--bs-box-shadow) !important;
}




/* ==============home blog  section =======  */
.blog_img img {
  width: 100%;
  height: 100%;
}

/* ========================== */

.Reviwe {
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  margin-top: 30px;
}

.Reviwe .row {
  align-items: center;
}

.dr_img img {
  border: 3px solid #ffffff;
  border-radius: 50%;
  width: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.Reviwe span {
  font-size: 14px;
  font-weight: 500;
}

.dr_heading {
  color: #171c8f;
  font-size: 22px;
  font-weight: 600;
}

.Reviwe p {
  font-size: 15px;
}

@media (max-width: 768px) {
  td[data-label="Products"] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


.author_name h2 {
  font-size: 18px;
  font-weight: 600;
}

.Author-details h2 {
  font-size: 20px;
  font-weight: 600;
}
/* ==============Last============== */

.wcy-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.wcy-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #EB8B5F;
  display: block;
}

.wcy-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #EB8B5F;
}

.wcy-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: #0A0806;
  line-height: 1.12;
  letter-spacing: -.01em;
}

.wcy-heading em {
  font-style: italic;
  color: #993C1D;
  font-weight: 300;
}

/* Why choose — point headings */
.why-choose-point{
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.why-choose-des h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  color: #0A0806;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}

/* Why choose — body text */
.why-choose-des p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5A3D2B;
  line-height: 1.72;
  margin: 0;
}

/* Intro paragraph below h2 */
.new-launches-section > .container-fluid p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: #5A3D2B;
  line-height: 1.72;
}

/* ==================================== */

.benefit-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.box-fit {
  width: calc(25% - 20px);
  text-align: center;
  border: 1px solid #fccdad;
  padding: 15px;
  background-color: #fff7f3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box-fit img {
  width: 100px;
}

.box-fit h4 {
  font-family: 'Cormorant Garamond', serif;
  color: #e09a7a;
  font-size: 20px !important;
  font-style: italic;
  font-weight: 500;
  margin: 10px 0;
  letter-spacing: .01em;
  line-height: 1.2;
}

.box-fit p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.68;
}

.why-choose-des h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px !important;
  font-weight: 500;
}

.section-cont h3.heading_txt_2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: #0A0806;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0 0 40px;
}

.section-cont h3.heading_txt_2 em {
  font-style: italic;
  color: #993C1D;
}

.section-cont h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
}

.bg-img-box {
  background:
    linear-gradient(
      rgba(247, 231, 219, 0.6),
      rgba(247, 231, 219, 0.6)
    ),
    url("../img/mask-patten-style.png");
  background-color: #f7e7db;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 50px 0;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .box-fit {
    width: calc(50% - 20px);
  }
}

@media (max-width: 520px) {
  .box-fit {
    width: 100%;
  }
}
/* =================================== */


    .why-choose-des h3{
      font-size: 18px !important;
      font-weight: 600;
    }


    .section-cont h2{
      font-size: 32px;
      font-weight: 700;
    }

    .section-cont h3{
      font-size: 24px;
      font-weight: 700;
    }

    .section-cont h4{
      font-size: 20px;
      font-weight: 600;
    }

    .bg-img-box{
      /* background-image: url('img/mask-patten-style.png'); */
      background:
    linear-gradient(
      rgba(247, 231, 219, 0.6),
      rgba(247, 231, 219, 0.6)
    ),
    url("../img/mask-patten-style.png");
      background-color: #f7e7db;
      background-size: cover;
      background-position: center;
      background-blend-mode: multiply;
      padding: 50px 0;
      border-radius: 10px;

      margin-bottom: 30px;

    }


/* =============new price card=================  */

/* ── PRICING SECTION ── */
.prc-section {
  margin: 50px auto;
  padding: clamp(48px, 8vw, 80px) 0;
  background: #FDFAF7;
}

/* Eyebrow */
.prc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.prc-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #EB8B5F;
  display: block;
}

.prc-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #EB8B5F;
}

/* Heading */
.prc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: #0A0806;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0 0 48px;
}

.prc-heading em {
  font-style: italic;
  color: #993C1D;
  font-weight: 300;
}

/* Cards grid */
.prc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* Card */
.prc-card {
  background: #F3E8E0;
  border: 1px solid rgba(153, 60, 29, .12);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: border-color .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
}

.prc-card:hover {
  border-color: rgba(153, 60, 29, .32);
  transform: translateY(-3px);
}

/* Card top accent line */
.prc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: #EB8B5F;
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity .3s;
}

.prc-card:hover::before {
  opacity: 1;
}

/* Card name */
.prc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: #0A0806;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}

/* Price */
.prc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  color: #993C1D;
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -.02em;
}

/* Description */
.prc-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #5A3D2B;
  line-height: 1.72;
  margin: 0 0 24px;
}

/* CTA button */
.prc-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #993C1D;
  color: #FDFAF7;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
  letter-spacing: .02em;
}

.prc-btn:hover {
  background: #712B13;
  color: #FDFAF7;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 480px) {
  .prc-section {
    padding: 48px 0;
    margin: 24px auto;
  }
}


/* ==========================================/ */

/* ── HOW IT WORKS ── */
.trtn-how {
  background: #0d0b09;
  padding: 80px 24px;
}

.trtn-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.trtn-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.trtn-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: #eb8b5f;
}

.trtn-eyebrow-text {
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #eb8b5f;
}

.trtn-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: #fdfaf7;
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}

.trtn-heading em {
  font-style: italic;
  color: #eb8b5f;
}

.trtn-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(253, 250, 247, .55);
  line-height: 1.72;
  max-width: 620px;
  margin: 0 0 52px;
}

.trtn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07);
  border-radius: 16px;
  overflow: hidden;
}

.trtn-step {
  background: #0d0b09;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  transition: background .25s;
}

.trtn-step:hover {
  background: #141210;
}

.trtn-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: rgba(235, 139, 95, .13);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .25s;
}

.trtn-step:hover .trtn-num {
  color: rgba(235, 139, 95, .28);
}

.trtn-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(235, 139, 95, .09);
  border: 1px solid rgba(235, 139, 95, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .25s, border-color .25s;
}

.trtn-step:hover .trtn-icon {
  background: rgba(235, 139, 95, .17);
  border-color: rgba(235, 139, 95, .38);
}

.trtn-icon svg {
  width: 19px;
  height: 19px;
  stroke: #eb8b5f;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trtn-step h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: #fdfaf7;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.trtn-step p {
  font-size: clamp(12.5px, 1.2vw, 13.5px);
  color: rgba(253, 250, 247, .5);
  line-height: 1.7;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .trtn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trtn-how {
    padding: 60px 20px;
  }
}

@media (max-width: 520px) {
  .trtn-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .trtn-how {
    padding: 48px 16px;
  }
  .trtn-sub {
    margin-bottom: 36px;
  }
}


/* ── FAQ SECTION ── */
.faq2-wrap {
  background: #F7EDE4;
  padding: 80px 24px;
}

.faq2-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq2-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq2-sidebar {
  position: sticky;
  top: calc(72px + 32px);
}

.faq2-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.faq2-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #993C1D;
}

.faq2-eyebrow-text {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #993C1D;
}

.faq2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: #0A0806;
  line-height: 1.14;
  margin: 0 0 18px;
  letter-spacing: -.01em;
}

.faq2-title em {
  font-style: italic;
  color: #993C1D;
}

.faq2-sub {
  font-size: 14px;
  color: #5A3D2B;
  line-height: 1.7;
  margin: 0 0 28px;
}

.faq2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #993C1D;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .3s cubic-bezier(.4,0,.2,1);
}

.faq2-cta:hover {
  background: #EB8B5F;
}

.faq2-list {
  display: flex;
  flex-direction: column;
}

.faq2-item {
  border-bottom: 1px solid rgba(153,60,29,.22);
}

.faq2-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}

.faq2-qtext {
  font-size: 15px;
  font-weight: 500;
  color: #0A0806;
  line-height: 1.42;
  transition: color .3s cubic-bezier(.4,0,.2,1);
}

.faq2-btn:hover .faq2-qtext {
  color: #993C1D;
}

.faq2-ico {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid rgba(153,60,29,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s cubic-bezier(.4,0,.2,1), border-color .3s cubic-bezier(.4,0,.2,1);
}

.faq2-item.open .faq2-ico {
  background: #993C1D;
  border-color: #993C1D;
}

.faq2-ico svg {
  width: 13px;
  height: 13px;
  stroke: #993C1D;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform .25s, stroke .3s cubic-bezier(.4,0,.2,1);
}

.faq2-item.open .faq2-ico svg {
  transform: rotate(45deg);
  stroke: #FFFFFF;
}

.faq2-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4, 0, .2, 1);
}

.faq2-body-inner {
  padding: 0 0 22px;
  font-size: 14px;
  color: #5A3D2B;
  line-height: 1.74;
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .faq2-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq2-sidebar {
    position: static;
  }
  .faq2-wrap {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .faq2-wrap {
    padding: 48px 16px;
  }
  .faq2-cta {
    width: 100%;
    justify-content: center;
  }
}


/* ── NEWSLETTER ── */
.nl5-section {
  background: #993C1D;
  padding: clamp(48px, 8vw, 80px) 5%;
}

.nl5-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.nl5-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.nl5-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #FCCDAD;
}

.nl5-eyebrow-text {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #FCCDAD;
}

.nl5-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: #FDFAF7;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}

.nl5-title em {
  font-style: italic;
  color: #FCCDAD;
}

.nl5-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(253, 250, 247, .65);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.nl5-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
}

.nl5-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 99px;
  padding: 14px 22px;
  color: #FDFAF7;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .3s cubic-bezier(.4,0,.2,1);
}

.nl5-input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.nl5-input:focus {
  border-color: rgba(255, 255, 255, .55);
}

.nl5-submit {
  background: #EB8B5F;
  color: #FDFAF7;
  border: none;
  border-radius: 99px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
}

.nl5-submit:hover {
  background: #D97A4E;
  transform: translateY(-1px);
}

#nl5-success {
  display: none;
  color: #FCCDAD;
  font-size: 14px;
  margin: 8px 0 20px;
}

.nl5-perks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
  row-gap: 8px;
}

.nl5-perk {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253, 250, 247, .45);
}

.nl5-dot {
  color: rgba(253, 250, 247, .3);
  font-size: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nl5-form {
    flex-direction: column;
    align-items: stretch;
  }

  .nl5-input {
    min-width: unset;
    width: 100%;
    text-align: center;
  }

  .nl5-submit {
    width: 100%;
    padding: 15px 28px;
  }

  .nl5-perks {
    flex-direction: row;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .nl5-section {
    padding: 48px 20px;
  }
}


/* ── TESTIMONIALS ── */
.tsm-section {
  background: #FDFAF7;
  padding: clamp(48px, 8vw, 80px) 5%;
}

.tsm-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tsm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.tsm-card {
  background: #F3E8E0;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(153, 60, 29, .12);
  position: relative;
}

.tsm-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.tsm-star {
  width: 14px;
  height: 14px;
  fill: #EB8B5F;
  stroke: none;
}

.tsm-star.empty {
  fill: transparent;
  stroke: #9A7060;
  stroke-width: 1.5;
}

.tsm-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: #0A0806;
  line-height: 1.62;
  margin-bottom: 20px;
}

.tsm-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tsm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FCCDAD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: #993C1D;
  flex-shrink: 0;
}

.tsm-name {
  font-size: 13px;
  font-weight: 500;
  color: #0A0806;
}

.tsm-meta {
  font-size: 11.5px;
  color: #9A7060;
  margin-top: 1px;
  font-family: 'DM Mono', monospace;
  letter-spacing: .05em;
}

.tsm-verified {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(39, 80, 10, .12);
  color: #27500A;
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 99px;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .tsm-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tsm-card {
    padding: 24px 20px;
  }

  .tsm-text {
    font-size: 15.5px;
  }
}

/* eyebrow shared styles scoped to tsm */
.tsm-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.tsm-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #EB8B5F;
}
.tsm-eyebrow-text {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #EB8B5F;
}
.tsm-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: #0A0806;
  line-height: 1.12;
  margin: 0 0 14px;
}
.tsm-heading em {
  font-style: italic;
  color: #993C1D;
}
.tsm-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #5A3D2B;
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 560px;
}



/* ── DOSAGE CALCULATOR ── */
.clc-section {
  background: #0A0806;
  padding: clamp(60px, 8vw, 100px) 5%;
}

.clc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.clc-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #EB8B5F;
}

.clc-eyebrow-text {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #FCCDAD;
}

.clc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: #FDFAF7;
  line-height: 1.12;
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: -.01em;
}

.clc-heading em {
  font-style: italic;
  color: #EB8B5F;
}

.clc-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(253, 250, 247, .55);
  line-height: 1.7;
  margin: 0 auto 48px;
  text-align: center;
  max-width: 580px;
}

.clc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.clc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clc-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(253, 250, 247, .45);
  margin-bottom: 8px;
  display: block;
}

.clc-select {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px 16px;
  color: #FDFAF7;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color .3s cubic-bezier(.4, 0, .2, 1);
  appearance: none;
  cursor: pointer;
}

.clc-select:focus {
  border-color: #EB8B5F;
}

.clc-select option {
  background: #1C1410;
  color: #FDFAF7;
}

.clc-range-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

input.clc-range {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, .15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

input.clc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #EB8B5F;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .15s;
}

input.clc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

input.clc-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #EB8B5F;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.clc-result {
  background: rgba(235, 139, 95, .08);
  border: 1px solid rgba(235, 139, 95, .2);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 32px);
}

.clc-result-title {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(253, 250, 247, .5);
  margin-bottom: 20px;
}

.clc-strength {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  color: #FDFAF7;
  line-height: 1;
  margin-bottom: 6px;
}

.clc-type {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #EB8B5F;
  margin-bottom: 20px;
}

.clc-note {
  font-size: 13.5px;
  color: rgba(253, 250, 247, .55);
  line-height: 1.68;
  margin-bottom: 20px;
}

.clc-cta-btn {
  display: inline-block;
  background: #EB8B5F;
  color: #FDFAF7;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .3s cubic-bezier(.4, 0, .2, 1);
}

.clc-cta-btn:hover {
  background: #D97A4E;
}

.clc-disclaimer {
  font-size: 11px;
  color: rgba(253, 250, 247, .3);
  margin-top: 12px;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .clc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* .clc-result {
    order: -1;
  } */
}

@media (max-width: 480px) {
  .clc-section {
    padding: 48px 20px;
  }

  .clc-select {
    font-size: 13px;
    padding: 12px 14px;
  }
}




/* ── BLOGS SECTION ── */
.section_blogs {
  padding: clamp(48px, 8vw, 80px) 0;
  background: #FDFAF7;
}

/* Eyebrow */
.blg-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.blg-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #EB8B5F;
  display: block;
}

.blg-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #EB8B5F;
}

/* Section heading */
.blg-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: #0A0806;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0 0 48px;
}

.blg-heading em {
  font-style: italic;
  color: #993C1D;
}

/* Blog card */
.blog_box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(153, 60, 29, .12);
  background: #FDFAF7;
  transition: border-color .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
}

.blog_box:hover {
  border-color: rgba(153, 60, 29, .28);
  transform: translateY(-3px);
}

/* Image */
.blog_img_home {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog_img_home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.blog_box:hover .blog_img_home img {
  transform: scale(1.04);
}

/* Details */
.blog_details {
  padding: 20px 22px 24px;
}

/* Date & author */
.blg-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  color: #e43600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Title */
.blg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 14px;
  letter-spacing: -.01em;
}

.blg-title a {
  color: #0A0806;
  text-decoration: none;
  transition: color .2s;
}

.blg-title a:hover {
  color: #993C1D;
}

/* Read more */
.blg-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #e43600;
  text-decoration: none;
  letter-spacing: .03em;
  transition: gap .2s;
}

.blg-read-more::after {
  content: '→';
  font-size: 13px;
  transition: transform .2s;
}

.blg-read-more:hover {
  gap: 10px;
}

.blg-read-more:hover::after {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog_box {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .section_blogs {
    padding: 48px 0;
  }
}


/* ── PRODUCTS SECTION ── */
.prd-section {
  background: #F7EDE4;
  padding: clamp(48px, 8vw, 80px) 0;
}

/* Eyebrow */
.prd-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.prd-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: #EB8B5F;
  display: block;
}

.prd-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #EB8B5F;
}

/* Section heading */
.prd-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: #0A0806;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0 0 48px;
}

.prd-heading em {
  font-style: italic;
  color: #993C1D;
}

/* Card */
.prd-card {
  background: #FDFAF7;
  border-radius: 20px;
  border: 1px solid rgba(153, 60, 29, .12);
  overflow: hidden;
  transition: border-color .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
  margin-bottom: 24px;
  position: relative;
}

.prd-card:hover {
  border-color: rgba(153, 60, 29, .28);
  transform: translateY(-3px);
}

/* Image wrap */
.prd-img-wrap {
  position: relative;
  background: #F3E8E0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.prd-card:hover .prd-img-wrap img {
  transform: scale(1.05);
}

/* Discount badge */
.prd-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #993C1D;
  color: #FDFAF7;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 10px;
  border-radius: 99px;
  line-height: 1.4;
}

/* Out of stock badge */
.prd-badge-oos {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(90, 61, 43, .15);
  color: #5A3D2B;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 99px;
}

/* Details */
.prd-details {
  padding: 18px 20px 22px;
}

.prd-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 20px);
  font-weight:600;
  color: #0A0806;
  line-height: 1.25;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

.prd-price {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: #9A7060;
  font-weight: 600;
  letter-spacing: .06em;
  margin: 0 0 16px;
}

/* Buttons */
.prd-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #993C1D;
  color: #FDFAF7;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 99px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
  letter-spacing: .02em;
}

.prd-btn:hover {
  background: #712B13;
  color: #FDFAF7;
  transform: translateY(-1px);
}

.prd-btn-oos {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #9A7060;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 99px;
  border: 1px solid rgba(153, 60, 29, .2);
  cursor: not-allowed;
  letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 768px) {
  .prd-heading {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .prd-section {
    padding: 48px 0;
  }
}