@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Oswald:wght@200..700&display=swap');

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

:root {
    --priamry-color: #1576BA;
    --secondary-color: #F8D8E7;
    --body-font: "DM Sans", sans-serif;
    --heading-font: "Abhaya Libre", serif;
}

body {
    color: #000000;
    line-height: 1.6;
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

img {
    max-width: 100%;
    height: auto;

}

.top-bar {
    background: var(--priamry-color);
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
}

.top-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 13px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.buy-btn {
    background: #fff;
    color: var(--priamry-color);
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.buy-btn:hover {
    border: 1px solid #fff;
}

.main-header {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.logo img {
    max-height: 100px;
    max-width: 120px;
}

.main-nav a {
    margin-right: 18px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--priamry-color);
}


.search-form {
    display: flex;
    border: 1px solid var(--priamry-color);
    border-radius: 30px;
    overflow: hidden;
}

.search-form input {
    border: none;
    padding: 8px 14px;
    flex: 1;
    font-size: 14px;
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    background: var(--priamry-color);
    border: none;
    color: #fff;
    padding: 0 18px;
}

.header-icons {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    color: #000;
}

.header-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.header-icons i {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--priamry-color);
}

/* hero section css */
.hero-section {
/*     background: url(../assets/img/hero-bg.png) no-repeat center center; */
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 80dvh;
    padding: 40px;

}
.hero-section:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 33%);
    inset: 0;
    z-index: 1;
}
.hero-section .container{
    z-index: 2;
}
.hero-section h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.hero-section p {
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-size: 24px;
}

.primary-btn {
    background: #fff;
    color: var(--priamry-color);
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.primary-btn::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--priamry-color);
    transform: translateY(-50%) scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
    border-radius: 50%
}

.primary-btn:hover span {
    position: relative;
    z-index: 3;
    color: #fff;
}

.primary-btn:hover::after {
    transform: translate(-50%) scale(45);

}


/* marque-section css  */
.marquee {
    background: var(--priamry-color);
    padding: 15px 0px;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-right: 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.section-title {
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 16px;
    color: #2b2b2b;
    font-weight: 500;
}

.buy-now-btn {
    background: #2b83c6;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
}

.buy-now-btn i {
    margin-left: 6px;
}

.product-card {
    position: relative;
    height: 100%;
}

.capsule-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    border-radius: 20px;
    font-size: 12px;
    padding: 4px 12px;
    color: var(--priamry-color);
    border: 1px solid #e4eef8;
}

.product-img {
    background: linear-gradient(180deg,
            #ffffff 0%,
            #def1ff 100%);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #DBDBDB;
}

.product-img img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
}



.product-title a {
    font-size: 24px;
    font-weight: 600;
    color: #434343;
    font-family: var(--body-font);
    text-decoration: none;
}

.product-desc {
    font-size: 16px;
    color: #6b6f76;
    margin-bottom: 14px;
}

.rating {
    font-size: 13px;
    color: #2b83c6;
}

.rating i {
    margin-right: 2px;
}


.add-cart-btn {
    display: inline-block;
    background: var(--priamry-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
}



.banner-section {
    background: url(../assets/img/banner.png) center center/cover no-repeat;
    height: 70vh;
    color: #fff;
}

.banner-section h2 {
    font-size: 48px;
    font-weight: 700;
}


.trusted-by h2 {
    font-size: 50px;
    color: #000;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
}

.trusted-by p {
    font-weight: 500;
    font-size: 16px;
    color: #2b2b2b;
}

.trusted-by img {
    max-width: 160px;
    max-height: 160px;
    border-radius: 50%;
}




.our-story-section {
    padding: 90px 0;
    background: linear-gradient(90deg, #ffffff 0%, #def1ff 100%);
    overflow: hidden;
}

/* TEXT */
.story-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 4px;
}

.story-subtitle {
    font-size: 18px;
    color: #2b2b2b;
    margin-bottom: 18px;
    font-weight: 500;
}

.story-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #2b2b2b;
    margin-bottom: 28px;
}

/* BUTTON */
.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2b83c6;
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
}

.story-btn span {
    transition: transform 0.3s ease;
}

.story-btn:hover span {
    transform: translateX(4px);
}

.story-img-wrap {
    border-radius: 25px;
    overflow: hidden;
}

.story-img-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

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




.benefit-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
}

.benefit-subtitle {
    font-size: 18px;
    color: #2b2b2b;
    font-weight: 500;
}

.benefit-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    border: 1px solid #dbdbdb;
    border-radius: 18px;
    background: #fff;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.benefit-icon img {
    min-width: 70px;
    height: 70px;
    object-fit: contain;
}

.benefit-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b6f76;
    margin-bottom: 0;
}



.ingredients-section {
    padding: 3rem 0;
}


.ingredients-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ingredients-subtitle {
    font-size: 18px;
    color: #2b2b2b;
    font-weight: 500;
}


.ingredients-row {
    margin-top: 40px;
}


.card-indg {
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 25px;
}
.ingredient-img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
    position: relative;
}

.ingredient-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.ingredient-caption {
    margin-top: 16px;
    opacity: 1;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.ingredient-caption h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--body-font);
}

.ingredient-caption p {
    font-size: 14px;
    color: #2b2b2b;
    max-width: 260px;
    margin: 0 auto;
}




.testimonial-section {
    background: linear-gradient(180deg, #ffffff 0%, #def1ff 100%);
    padding: 90px 0;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 1;
}

.testimonial-section .subtitle {
    font-size: 16px;
    color: #2b2b2b;
    font-weight: 500;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 60px 32px 32px;
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    margin-top: 80px;
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
}

.quote-icon {
    position: absolute;
    top: -38px;
    left: 25px;
    background: var(--priamry-color);
    color: #fff;
    border-radius: 50%;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
}

.rating {
    font-size: 18px;
    color: #f6b01e;
    margin-bottom: 14px;
}

.rating span {
    color: #000;
    margin-left: 6px;
    font-weight: 600;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.author img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
}

.author strong {
    font-size: 16px;
    display: block;
    font-weight: 600;
}

.author small {
    font-size: 14px;
    color: #2b2b2b;
}


.owl-dots {
    margin-top: 35px;
    display: flex !important;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

.owl-dot span {
    width: 8px;
    height: 8px;
    background: #cfd8e3;
    border-radius: 50%;
    margin: 0 6px;
    display: block;
}

.owl-dot.active span {
    background: var(--priamry-color);
}

.owl-nav {
    margin-top: 15px;
    display: flex !important;
    position: absolute;
    width: 100%;
    justify-content: center;
    gap: 200px;
    align-items: center;
}

.owl-prev,
.owl-next {
    background: var(--priamry-color) !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 18px;
}


.how-it-works {
    position: relative;
    overflow: hidden;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}


.how-it-works .container::after {
    content: "";
    position: absolute;
    top: 27%;
    left: 0;
    width: 100%;
    height: 320px;
    background: url(../assets/img/curve-line.png) center center / contain no-repeat;
    z-index: 1;
    pointer-events: none;
}


.step {
    position: relative;
    padding: 40px 50px;
    font-size: 18px;
    color: #2b2b2b;
    z-index: 3;
}


.step-2,
.step-3 {
    margin-top: 220px;
}

.step-number {
    font-size: 100px;
    font-weight: 700;
    position: absolute;
    top: -15px;
    right: 10px;
    line-height: 1;
    background: linear-gradient(180deg, #BFBFBF 0%, rgba(249, 252, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    z-index: 0;
    pointer-events: none;
}

.step-1 .step-number {
    top: -25px;
    right: 60px;

}

.step-2 .step-number {

    top: -25px;
    right: 35px;
}


.icon-box {
    position: absolute;
    z-index: 4;
}

.icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: 2px solid #1576BA;
    border-radius: 14px;
    padding: 10px;
    background: #fff;
}

.step-1 .icon-box {
    bottom: 90PX;
    left: 40%;
}

.step-2 .icon-box {
    top: -235PX;
    left: 58%;
    transform: translateX(-50%);
}

.step-3 .icon-box {
    top: -115px;
    right: 40%;
}


.step h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--body-font);
    margin-bottom: 10px;
}


/* NEWSLETTER */
.newsletter-bar {
    background: var(--priamry-color);
    padding: 25px 0;
    color: #fff;
}

.newsletter-bar h2 {
    font-weight: 500;
    margin-bottom: 5px;
    font-family: var(--body-font);
}

.newsletter-bar p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    outline: none;
    text-align: center;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    background: #fff;
    color: #2679b8;
    font-weight: 600;
    flex: 1;
}

/* FOOTER */
.main-footer {
    background: #e9f6ff;
    padding: 60px 0 0;
}

.footer-logo {
    max-width: 180px;
}

.main-footer h6 {
    font-weight: 700;
    margin-bottom: 18px;
    font-family: var(--body-font);
}

.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer ul li {
    margin-bottom: 8px;
}

.main-footer ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background: var(--priamry-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 8px;
    text-decoration: none;
}

/* BOTTOM BAR */
.footer-bottom {
    background: var(--priamry-color);
    text-align: center;
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
    margin-top: 50px;
}
.footer-bottom a{
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-bottom a:hover{
    text-decoration: underline;
}
.story-section {
    color: #2b2b2b;
    overflow: hidden;
}

.story-section h2,
.who-we-are h2 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0px;
}

.story-section .subtitle {
    font-size: 18px;
    font-weight: 500;
}



.who-we-are {
    background: linear-gradient(90deg, #fff 0%, #CFEBFF 100%);
    color: #2b2b2b;
    overflow: hidden;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--priamry-color);
}

.stat-text {
    font-size: 15px;
    color: #2b2b2b;
}

.stat-text h3 {
    font-size: 16px;
    font-weight: 900;
    font-family: var(--body-font);
}
.mighty-difference{
    overflow: hidden;
}
.cta-btn {
    border-radius: 50px;
    padding: 10px 26px;
    font-size: 14px;
    background: var(--priamry-color);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--priamry-color);
}

.cta-btn::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 10px;
    height: 8px;
    background: #fff;
    transform: translateY(-50%) scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
    border-radius: 50%
}

.cta-btn:hover span {
    position: relative;
    z-index: 3;
    color: var(--priamry-color);
}

.cta-btn:hover::after {
    transform: translate(-50%) scale(45);

}

.primary-btn.cta-btn::after {
    background: var(--priamry-color);
}

.primary-btn.cta-btn:hover span {
    color: #fff;
}

.primary-btn.cta-btn {
    border-radius: 50px;
    padding: 10px 26px;
    font-size: 14px;
    background: transparent;
    border: 1px solid var(--priamry-color);
    color: var(--priamry-color);
}

.mighty-difference h2 {
    font-size: 52px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 0;
}

.mighty-difference p {
    font-size: 16px;
    line-height: 1.7;
    color: #2b2b2b;
}

.mighty-difference ul li {
    font-size: 16px;
    color: #2b2b2b;
}

.mighty-difference ul li span {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--priamry-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.welnes-section {
    background: url(../assets/img/welness-bg.png) center center/cover no-repeat;
    height: 75vh;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-size: 18px;
}
.welnes-section .container
{
        display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 3;
}

.welnes-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff00 0%, #000 100%);
    z-index: 1;

}

.welnes-section h2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.sale-btn {
    border-radius: 15px;
    border: 1px solid #fff;
    color: #ffff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 24px;
    background: transparent;
}
.sale-btn:hover span{
    color: #000;
}



.promise-quality {
    background: linear-gradient(90deg, #fff 0%, #CFEBFF 100%);
    overflow: hidden;
}
.promise-quality h2 {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 0;
}

.promise-quality p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.promise-quality .sub-title {
  font-size: 18px;
  color: #2b2b2b;
  margin-bottom: 30px;
  font-weight: 500;
}

.promise-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.promise-icon img {
    width: 65px;
    height: 65px;
    min-width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.promise-item h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
  font-family: var(--body-font);
}

.promise-item p {
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 0;
}

.woocommerce-products-header__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.woocommerce-result-count {
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
    color: #666;
}

.woocommerce-ordering {
    text-align: center;
    margin-bottom: 50px;
}

.woocommerce-ordering select {
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:hover {
    border-color: #111;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.single_add_to_cart_button.button.alt {
    background: var(--priamry-color) !important;
}
.woocommerce.columns-4 ul.products,
.woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.woocommerce ul.products li.product {
    list-style: none;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    padding: 20px 10px !important;
    overflow: hidden;
    margin: 0 !important;
}

.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 260px !important;
    object-fit: contain;
    margin-bottom: 20px !important;
    transition: transform 0.4s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
    min-height: 48px;
}

.woocommerce ul.products li.product .price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.woocommerce ul.products li.product .button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 30px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--priamry-color);
    color: #fff;
}

.woocommerce ul.products::before {
    display: none !important;
}


.single-product div.product {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 80px 0;
    flex-wrap: wrap;
}

.single-product div.product>#wpgs-gallery {
    flex: 0 0 50% !important;
    max-width: 45% !important;
}

.single-product div.product>.summary {
    flex: 0 0 50%;
    max-width: 45%;
}

.single-product .product_title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}


.single-product .price {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}


.single-product .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}


.single-product form.cart {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 35px;
}

.single-product .quantity input.qty {
    width: 90px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.single-product .single_add_to_cart_button {
    height: 48px;
    padding: 0 35px;
    border-radius: 30px;
    background: #000;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: none;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--priamry-color);
    color: #000;
}

.single-product .product_meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 14px;
    color: #777;
}

.single-product .product_meta a {
    color: #000;
    text-decoration: none;
}

.single-product .product_meta a:hover {
    text-decoration: underline;
}

.single-product .woocommerce-tabs {
    margin-top: 80px;
    width: 100%;
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    justify-content: start;
    gap: 30px;
    border-bottom: 1px solid #eee;
}

.single-product .woocommerce-tabs ul.tabs li {
    list-style: none;
}

.single-product .woocommerce-tabs ul.tabs li a {
    font-weight: 600;
    padding-bottom: 12px;
    display: inline-block;
    color: #888;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #000;
    border-bottom: 2px solid #000;
}


.single-product #review_form textarea,
.single-product #review_form input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
}

input#wp-comment-cookies-consent {
    width: auto !important;
}

.woocommerce #review_form #respond .form-submit input {
    width: auto;
}

.single-product #review_form .submit {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    border: none;
    transition: 0.3s;
}

.single-product #review_form .submit:hover {
    background: var(--priamry-color);
    color: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    transition: all 0.35s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}


.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


.blog-card .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}


.blog-card .img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 14px;
}


.blog-card:hover .img-wrapper img {
    transform: scale(1.08);
}



.blog-card .date {
    font-size: 14px;
    color: #888;
    margin: 15px 0 10px;
}


.blog-card .blog-content {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button */
.blog-card .white-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}

button#load-more-btn {
    background: var(--priamry-color);
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
}

.blog-card:hover .white-btn {
    background: var(--priamry-color);
}
.wc-block-components-product-name {
    text-decoration: none;
    color: #000;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    text-decoration: none;
    color: #fff;
    background: var(--priamry-color);
}

.breadcrumb-item a{
    text-decoration: none;
    color: #000;
}
@media (min-width: 1399px) {

.testimonial-card p {
    font-size: 16px;
}
}
@media (max-width: 1400.99px) {
    .step-1 .icon-box {
        bottom: 145px;

    }

    .step-2 .icon-box {
        top: -200px;


    }

    .step-3 .icon-box {
        top: -90px;

    }
}

@media (max-width: 1200.99px) {
    .step-1 .icon-box {
        bottom: 160px;
    }

    .step-2 .icon-box {
        top: -180px;
    }

    .step-3 .icon-box {
        top: -80px;
    }
    ul#menu-header-menu{
        gap: 0 !important;
        padding: 0;
    }
    .main-nav a {
    margin-right: 10px;}
}

@media (max-width: 991px) {
    .how-it-works .container::after {
        display: none;
    }

    .step-1 .step-number {
        right: 75px;
    }

    .step,
    .step-2,
    .step-3 {
        margin-top: 0;
        padding: 30px 15px;
        text-align: center;
    }

    .icon-box,
    .step-2 .icon-box,
    .step-3 .icon-box {
        position: absolute;
        left: 80px;
        transform: none;
        margin-bottom: 15px;
        top: 22px;
    }

    .step-2 .step-number {
        top: -25px;
        right: 75px;
    }

    .step-number {
        position: relative;
        top: -25px;
        right: 75px;
        margin-bottom: 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .noptin-form-footer {
        padding: 0px !important;
    }

    button.navbar-toggler.border-0.bg-transparent {
        border: 1px solid #000 !important;
        height: 45px;
        width: 50px;
        border-radius: 10px;
    }

    .ingredient-caption {
        opacity: 1;
    }

    .top-actions {
        justify-content: center;
    }

    .woocommerce.columns-4 ul.products,
    .woocommerce ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .single-product div.product {
        flex-direction: column;
        gap: 40px;
    }

    .single-product div.product>#wpgs-gallery,
    .single-product div.product>.summary {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .single-product .product_title {
        font-size: 28px;
    }
    .woocommerce-page div.product div.summary{
        width: 100%;
        max-width: 100%;
    }
    .single-product .woocommerce-tabs{
        margin: 0px !important;
    }
    .mobile-nav a{
        text-decoration: none;
        color: #000;
        margin-bottom: 12px;
    }
    .menu-item {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}
}

@media(max-width:768px) {
    .hero-section {
        padding: 10px;
    }

    .step-1 .icon-box,
    .step-2 .icon-box,
    .step-3 .icon-box {
        left: 50%;
    }

    .card-indg.active-card .ingredient-img {
        transform: scale(1.05);

    }

    .icon-box {

        height: 60px !important;
        width: 60px !important;
    }

    .section-title {
        font-size: 42px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-products-header__title {
        font-size: 30px;
    }

    .woocommerce ul.products li.product img {
        height: 220px;
    }

    .woocommerce.columns-4 ul.products,
    .woocommerce ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .benefit-card{
        padding: 15px;
    }
}

@media(max-width:560px) {
    .hero-section h1 {
        font-size: 42px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 14px;

    }

    .woocommerce.columns-4 ul.products,
    .woocommerce ul.products.columns-4 {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    a.wc-block-components-product-name {
        text-decoration: none;
        color: #000;
        font-size: 15px;
    }
    .point-lists{
        margin-bottom: 0 !important;
    }
}





.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
  list-style: none;
}


.wc-block-grid__product {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 10px 0px !important;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100% !important;
  width: 100% !important;
}

.wc-block-grid__product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}



.wc-block-grid__product-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wc-block-grid__product-image img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.wc-block-grid__product:hover img {
  transform: scale(1.06);
}



.wc-block-grid__product-title {
  font-size: 20px !important;
  font-weight: 600;
  color: #222 !important;
  margin-bottom: 12px;
  text-decoration: none;
}
.wc-block-grid__product-link{
    text-decoration: none;
}

.wc-block-grid__product-price {
    font-size: 16px;
    color: #000;
    margin-bottom: 18px;
}


.wc-block-grid__product-add-to-cart .wp-block-button__link {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
  background: #444;
  transform: translateY(-2px);
}


@media (max-width: 991px) {
  .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 576px) {
  .wc-block-grid__products {
    grid-template-columns: 1fr;
  }

  .wc-block-grid__product {
    padding: 20px;
  }
}






.woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}


.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}


.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: var(--priamry-color);
    color: #fff;
    transform: translateX(5px);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background: var(--priamry-color);
    color: #fff;
    font-weight: 600;
}


.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--priamry-color);
    font-weight: 500;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

.woocommerce-account .woocommerce-Addresses {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

/* Individual Address Card */
.woocommerce-account .woocommerce-Address {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle hover lift */
.woocommerce-account .woocommerce-Address:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.woocommerce-account .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 10px;
}

.woocommerce-account .woocommerce-Address-title h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Edit Button */
.woocommerce-account .woocommerce-Address-title .edit {
    background: var(--priamry-color);
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.woocommerce-account .woocommerce-Address-title .edit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Address Text */
.woocommerce-account address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}


/* =====================================
   ORDER SUCCESS WRAPPER
===================================== */

.woocommerce-order {
    max-width: 1100px;
    margin: 60px auto;
}

/* SUCCESS MESSAGE */
.woocommerce-order .woocommerce-notice--success {
    background: #e9f9f1;
    border-left: 5px solid #27ae60;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1e824c;
    margin-bottom: 35px;
}

/* =====================================
   ORDER OVERVIEW BOX
===================================== */

.woocommerce-order-overview {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
    flex-wrap: wrap;
}

.woocommerce-order-overview li {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    font-size: 14px;
    color: #777;
}

.woocommerce-order-overview strong {
    display: block;
    font-size: 18px;
    margin-top: 5px;
    color: #222;
}

/* =====================================
   ORDER DETAILS TABLE
===================================== */

.woocommerce-order-details {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.woocommerce-order-details__title {
    font-size: 22px;
    margin-bottom: 25px;
}

/* Table */
.woocommerce-table {
    border: none;
    width: 100%;
}

.woocommerce-table thead {
    background: #f8f9fb;
}

.woocommerce-table th,
.woocommerce-table td {
    padding: 15px;
    border: none;
    font-size: 15px;
}

.woocommerce-table tbody tr {
    border-bottom: 1px solid #eee;
}

.woocommerce-table tbody tr:last-child {
    border-bottom: none;
}

/* Product Name */
.product-name a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.product-name a:hover {
    color: var(--priamry-color);
}

/* TOTAL FOOTER */
.woocommerce-table tfoot tr:last-child {
    background: #fff3e9;
    font-weight: 600;
}

.woocommerce-table tfoot tr:last-child td {
    font-size: 18px;
    color: var(--priamry-color);
}

/* =====================================
   BILLING ADDRESS
===================================== */

.woocommerce-customer-details {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.woocommerce-column__title {
    font-size: 20px;
    margin-bottom: 15px;
}

.woocommerce-customer-details address {
    font-style: normal;
    line-height: 1.7;
    color: #555;
}

.woocommerce-customer-details--email {
    margin-top: 10px;
    font-weight: 500;
    color: var(--priamry-color);
}


.woocommerce ul.order_details li{
    text-align: center;
    padding-left: 10px !important;
}
@media (max-width: 991px) {

    .woocommerce-account .woocommerce {
        flex-direction: column;
    }
    .woocommerce-account .woocommerce-Addresses {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100% !important;
        padding: 10px;
        font-size: 14px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul{
        display: flex;
        align-items: center;
    }
.woocommerce-account .woocommerce-MyAccount-content{
    width: 100% !important;
}
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 25px;
    }
    .page-id-9  .u-column1.col-1,.page-id-9 .u-column2.col-2{
	width:100% !important;
}
.woocommerce-order-overview {
        flex-direction: column;
    }

    .woocommerce-order-details,
    .woocommerce-customer-details {
        padding: 20px;
    }
}
@media (max-width: 768px) {

 .woocommerce-account .woocommerce-MyAccount-navigation ul{
      flex-direction: column;
      gap: 20px;

    }
.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
a.woocommerce-Button.wc-forward.button{
    width: 100%;
    margin-top: 20px;
}}