﻿
body {
    overflow-x: hidden;
}

.shop-hero-section {
    background: #fff;
/*    min-height: 100vh;*/
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.shop-hero-header {
    background: #1a2536;
    color: #fff;
    text-align: center;
    padding: 2.5rem 0 1.2rem 0;
}

.shop-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.shop-hero-subtitle {
    font-size: 1rem;
    color: #d9dbe1;
    font-weight: 400;
}

.shop-hero-container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
}

.shop-main-content {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 2.5rem 0;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    background: radial-gradient(circle at 70% 20%, #ffecd3 0%, #ffe4c2 100%);
    justify-content: center;
    align-items: flex-start;
}

.shop-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .shop-product-image img {
        width: 320px;
        max-width: 100%;
        height: auto;
        border-radius: 0;
        background: transparent !important;
        box-shadow: 0 18px 40px 0 rgba(40,30,7,0.09);
        margin: 0 auto;
    }

.shop-product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 350px;
}

.shop-product-details-row {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
}

.shop-product-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    width: 100%;
}

.shop-badge {
    display: inline-block;
    background: #ff8800;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    padding: 0.33rem 1.15rem;
    margin-bottom: 0.3rem;
    margin-right: 1rem;
    letter-spacing: 0.02em;
}

.shop-level-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 0.45rem;
    color: #161722;
}

.shop-mobile-title-row {
    display: none;
}

.shop-mobile-title, .shop-mobile-badge {
    display: inline-block;
}

.shop-mobile-title {
    font-size: 1.1rem;
    color: #161722;
    font-weight: 700;
    line-height: 1.18;
}

.shop-mobile-badge {
    background: #ff8800;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 30px;
    padding: 0.22rem 1rem;
    margin-left: 0.7rem;
}

.shop-product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
    justify-content: center;
}

    .shop-product-thumbs img {
        width: 45px;
        height: 45px;
        background: #fff;
        border-radius: 8px;
        object-fit: cover;
        border: 2px solid transparent;
        box-shadow: 0 2px 12px rgba(66,44,12,0.08);
        cursor: pointer;
        opacity: 0.88;
        transition: border 0.2s, opacity 0.2s;
    }

        .shop-product-thumbs img.active,
        .shop-product-thumbs img:hover {
            border-color: #ff8800;
            opacity: 1;
        }

.shop-level-description {
    font-size: 1.18rem;
    color: #1a2330;
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.shop-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.shop-stars {
    color: #ff8800;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.rating-text {
    font-size: 1rem;
    color: #585f65;
    font-weight: 400;
}

.shop-price-row {
    margin: 0.6rem 0;
}

.shop-price {
    display: inline-flex;
    align-items: center;
    font-size: 1.15rem;
    background: none;
    color: #ff8800;
    font-weight: 600;
    padding: 0.45rem 1.22rem;
    border: 1.5px solid #ff8800;
    border-radius: 6px;
    gap: 0.4rem;
}

.unit-tag {
    color: #888;
    font-size: 0.93rem;
    font-weight: 400;
    margin-left: 0.4rem;
}

.shop-action-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.6rem;
    margin-bottom: 1.2rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop-action-buttons {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.shop-buy-btn, .shop-quiz-btn {
    padding: 0.83rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    background: #ff8800;
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    margin: 0;
    transition: background 0.2s;
    white-space: nowrap;
}

    .shop-buy-btn:hover, .shop-quiz-btn:hover {
        background: #ed7300;
    }

.shop-quiz-btn {
    background: #ff8800;
}

.shop-choose-help {
    font-size: 0.88rem;
    color: #c49c6d;
    font-weight: 500;
    align-self: center;
    min-width: 0;
    margin: 0;
    flex: 1 1 120px;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 900px) {
    .shop-hero-section {
        min-height: unset;
    }

    .shop-product-content {
        width: 100%;
        align-items: center;
        text-align: center;
        min-width: 0;
    }

    .shop-main-content {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.6rem 0;
        align-items: center;
    }

    .shop-product-image {
        width: 100%;
        justify-content: center;
    }

        .shop-product-image img {
            width: 85vw;
            max-width: 320px;
            margin: 0 auto;
        }

    .shop-product-details-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .shop-product-details {
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
    }
    /* Desktop title + badge hidden, mobile combo row shown */
    .shop-badge,
    .shop-level-title {
        display: none !important;
    }

    .shop-mobile-title-row {
        display: flex !important;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
        margin: 0.12rem 0 0.2rem 0;
    }

    .shop-mobile-title {
        font-size: 1.13rem;
        font-weight: 700;
        color: #161722;
        white-space: nowrap;
    }

    .shop-mobile-badge {
        font-size: 0.93rem;
        padding: 0.28rem 0.95rem;
        white-space: nowrap;
        color: #fff;
        background: #ff8800;
        border-radius: 30px;
    }

    .shop-product-thumbs {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 18px 0 10px 0;
        gap: 0.6rem;
        order: -1;
    }

        .shop-product-thumbs img {
            width: 28px;
            height: 28px;
        }

    .shop-level-description,
    .shop-price-row,
    .shop-action-row,
    .shop-choose-help {
        width: 100%;
        text-align: center !important;
    }

    .shop-level-description {
        font-size: 0.99rem;
        margin-bottom: 0.2rem;
    }

    .shop-rating-row {
        width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin: 0 0 0.7rem 0;
    }

    .shop-stars {
        font-size: 1.18rem;
    }

    .rating-text {
        font-size: 0.87rem;
    }

    .shop-price {
        font-size: 1rem;
        padding: 0.28rem 0.95rem;
        margin: 0.1rem 0 0.23rem 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

    .unit-tag {
        font-size: 0.87rem;
        margin-left: 0.2rem;
        color: #888;
    }

    .shop-action-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        gap: 0.7rem;
        margin-top: 0.32rem;
        margin-bottom: 0.7rem;
    }

    .shop-action-buttons {
        display: flex;
        gap: 0.7rem;
        flex-shrink: 0;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .shop-buy-btn, .shop-quiz-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.05rem;
        border-radius: 7px;
        margin: 0;
        min-width: 0;
        white-space: nowrap;
    }

    .shop-choose-help {
        font-size: 0.78rem;
        margin-left: 0;
        margin-top: 0.42rem;
        min-width: 90px;
        width: auto;
        max-width: 100vw;
        color: #c49c6d;
        font-weight: 500;
        align-self: center;
        text-align: center !important;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .shop-main-content {
        padding: 1.2rem 0;
    }

    .shop-product-thumbs img {
        width: 24px;
        height: 24px;
    }

    .shop-mobile-title {
        font-size: 0.93rem;
    }
}
.shop-hero-container, .potential-container {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}


/*your next level awaits*/


.potential-section {
    background: #171c28;
    padding: 3vw 0 2vw 0;
    width: 100vw;
    /*    min-height: 100vh;*/
    margin-left: calc(50% - 50vw);
    margin-top: 0; /* Remove any margin above */
    padding-top: 0; /* Adjust if needed */
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
    overflow: hidden;
}
.potential-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 4vw;
  padding: 3vw 2vw 2vw 3vw;
  align-items: flex-start;
}
.potential-left {
  flex: 1.35;
  color: #fff;
  min-width: 370px;
  max-width: 670px;
}
.potential-heading-sub { color: #ffac36; font-size: 1.10rem; margin-bottom: 1.2rem; font-weight: 500; }
.potential-heading { font-size: 2.47rem; margin: 0 0 0.51rem 0; font-weight: 800; line-height: 1.13; letter-spacing: -0.7px; }
.potential-highlight { color: #ffac36; }
.potential-desc { font-size: 1.16rem; color: #e6e6e7; margin: 0 0 1.7rem 0; font-weight: 400; line-height: 1.7; }
.potential-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2.1rem; }
.potential-steps li { display: flex; align-items: flex-start; gap: 1.15rem; min-width: 0; }
.step-num { background: #ffac36; color: #181a23; font-size: 1.14rem; font-weight: 700; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top:2px;}
.step-info { display: flex; flex-direction: column; }
.step-title { font-size: 1.15rem; font-weight: 700; color: #fff;}
.step-desc { font-size: 1.09rem; color: #b2b9ca; font-weight: 400; margin-top: 2px;}
.potential-right { flex: 1; display: flex; justify-content: flex-end; align-items: flex-start; min-width: 340px; max-width: 600px; }
.price-card {
    background: #232733;
    border-radius: 28px;
    border: 1.5px solid #ded8e6;
    color: #fff;
    padding: 2rem 3rem 1rem 3rem;
    box-shadow: 0 12px 36px rgba(20,21,46,0.13);
    max-width: 600px;
    min-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.price-top {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 2.8rem;
    margin-bottom: 0.11rem;
}

.price-row {
    display: flex;
    align-items: flex-start;
    gap: 1.02rem;
    width: 100%;
    justify-content: center;
}

.price-currency {
    color: #ffac36;
    font-size: 2.13rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.16em;
    margin-right: -0.2em;
}

.price-current {
    color: #ffac36;
    font-weight: 800;
    font-size: 2.7rem;
    line-height: 1;
    letter-spacing: -0.8px;
}

.price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    margin-left: 1.2rem;
    gap: 0.18rem;
    min-width: 120px;
}

.price-old {
    color: #b5bad1;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.12em;
}

.price-off {
    background: #ffac36;
    color: #232733;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.17rem 1.2rem;
    display: inline-flex;
    align-items: center;
    height: 1rem;
    letter-spacing: 0.03em;
    box-shadow: 0 1px 2px #eebb78;
    margin-top: 0.09rem;
}

.price-supply {
    color: #bec3ce;
    font-size: 1.13rem;
    margin-bottom: 0.60rem;
    width: 100%;
    text-align: center;
}

.price-limited {
    color: #ffac36;
    font-size: 1.16rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    width: 100%;
    letter-spacing: 0.01em;
    text-align: center;
}

.price-qty {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    margin: 0.5rem 0 0.55rem 0;
}

    .price-qty button {
        font-size: 1.25rem;
        background: #232733;
        color: #ffac36;
        border: 2px solid #ffac36;
        border-radius: 8px;
        width: 36px;
        height: 32px;
        cursor: pointer;
        font-family: inherit;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .price-qty span {
        font-size: 1.23rem;
        font-weight: 700;
        width: 30px;
        text-align: center;
        color: #fff;
        letter-spacing: 1px;
    }

.price-total {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffac36;
    margin: 0.23rem 0 0.71rem 0;
    text-align: center;
    width: 100%;
}

.price-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffac36;
    color: #232733;
    font-size: 1.17rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 0;
    width: 100%;
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: background 0.16s;
    letter-spacing: .01em;
}

.price-btn-icon {
    margin-right: 0.69rem;
    font-size: 1.22rem;
}

.price-btn-main:hover {
    background: #e69a1b;
}

.price-btn-subscribe {
    background: #fff;
    border: none;
    color: #ffac36;
    font-size: 1.14rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.8rem 0;
    width: 100%;
    margin-bottom: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
}

.price-btn-subscribe-icon {
    margin-right: 0.7rem;
    font-size: 1.18em;
    vertical-align: middle;
}

.price-btn-subscribe:hover {
    background: #fff7e8;
    color: #d6870c;
}

.price-features {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    gap: 2.35rem;
    font-size: 1.14rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding-top: 0.12rem;
    flex-wrap: nowrap;
}

.price-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    gap: 0.26rem;
    flex: 1 1 0;
}

.price-feature-icon {
    font-size: 1.41rem;
    color: #ffac36;
    margin-bottom: 0.11rem;
    vertical-align: middle;
    display: block;
}

.price-feature-label {
    color: #cdd1de;
    font-size: 1.04rem;
    font-weight: 700;
    margin: 0;
    vertical-align: middle;
    display: block;
    white-space: nowrap;
}

@media (max-width: 1200px) {
  .potential-container { gap:2vw; }
  .potential-left {font-size:1rem;}
  .price-card {max-width:340px; min-width:0;}
}
@media (max-width: 500px) {
    html, body {
        width: 100vw !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #171c28 !important;
    }

    .potential-section {
        padding: 0 !important;
        min-height: unset !important;
        height: auto !important;
        margin-bottom: 0 !important;
        overflow: visible !important;
    }

    .potential-container {
        display: block !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .potential-left,
    .potential-right,
    .price-card {
        width: 90vw !important;
        max-width: 90vw !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .potential-left {
        display: block !important;
        padding: 0.8rem 0.1rem 0.13rem 0.1rem !important;
        text-align: center !important;
        align-items: center !important;
    }

    .potential-heading-sub,
    .potential-heading,
    .potential-desc {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    .potential-heading-sub {
        font-size: 1.5rem !important;
        margin-bottom: 0.44rem !important;
    }

    .potential-heading {
        font-size: 2rem !important;
        margin-bottom: 0.04rem !important;
    }

    .potential-desc {
        font-size: 1rem !important;
        margin: 0.18rem 0 0.14rem 0 !important;
        line-height: 1.5 !important;
    }

    .potential-steps {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 0 !important;
        padding: 0.01rem 0.01rem !important;
        margin-bottom: 0.28rem !important;
    }

        .potential-steps li {
            flex: 1 !important;
            gap: 0.01rem !important;
            font-size: 0.69rem !important;
            align-items: center !important;
            min-width: 0 !important;
            display: flex !important;
            flex-direction: column !important;
        }

    .step-num {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
    }

    .step-title {
        font-size: 0.9rem !important;
        text-align: center !important;
    }

    .step-desc {
        font-size: 0.9rem !important;
        text-align: center !important;
    }

    .price-card {
        background: #232733 !important;
        border-radius: 13px !important;
        box-shadow: 0 2px 8px #12162415 !important;
        border: 1px solid #ded8e6 !important;
        padding: 0.57rem 0.1rem 0.25rem 0.1rem !important;
        margin: 0 auto 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 20px !important;
    }

    .price-top {
        width: 100%;
        min-height: 0 !important;
    }

    .price-row {
        gap: 0.18rem !important;
        justify-content: center !important;
        align-items: flex-end !important;
    }

    .price-currency {
        font-size: 0.82rem !important;
    }

    .price-current {
        font-size: 1.08rem !important;
    }

    .price-side {
        gap: 0.01rem !important;
        margin-left: 0.04rem !important;
        min-width: 0 !important;
    }

    .price-old {
        font-size: 0.41rem !important;
    }

    .price-off {
        font-size: 0.33rem !important;
        padding: 0.01rem 0.06rem !important;
        height: 0.38rem !important;
    }

    .price-supply, .price-limited {
        font-size: 0.7rem !important;
        margin-bottom: 0.02rem !important;
    }

    .price-limited {
        font-weight: 800 !important;
    }

    .price-qty {
        gap: 0.04rem !important;
    }

        .price-qty button {
            font-size: 0.44rem !important;
            width: 13px !important;
            height: 13px !important;
        }

        .price-qty span {
            font-size: 0.53rem !important;
            width: 15px !important;
        }

    .price-total {
        font-size: 0.69rem !important;
    }

    .price-btn-main, .price-btn-subscribe {
        padding: 0.2rem 0 !important;
        font-size: 0.72rem !important;
        border-radius: 6px !important;
        margin-bottom: 0.14rem !important;
        width: 75% !important;
    }

    .price-features {
        font-size: 0.74rem !important;
        gap: 0rem !important;
        margin-top: 0.23rem !important;
        padding-top: 0 !important;
        width: 98vw !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .price-feature {
        gap: 0 !important;
    }

    .price-feature-icon {
        font-size: 0.8rem !important;
        margin-bottom: 0.02rem !important;
    }

    .price-feature-label {
        font-size: 0.5rem !important;
    }
}


/*benefits section*/
.benefits-section {
    width: 100vw;
    max-width: 100vw;
    background: #fff;
    text-align: center;
    padding: 3.5rem 0 3.5rem 0;
}

.benefits-title {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 2.3rem;
    color: #191a1d;
    letter-spacing: -0.5px;
}

    .benefits-title .highlight {
        color: #ff8800;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
    gap: 2.2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.benefit-card {
    background: #fff;
    border: 1.5px solid #ededed;
    border-radius: 18px;
    box-shadow: none;
    padding: 2.4rem 1.1rem 1.7rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

    .benefit-card:hover {
        box-shadow: 0 4px 24px rgba(118,118,118,0.10);
    }

.benefit-icon {
    font-size: 2.1rem;
    color: #ff8800;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.06rem;
    font-weight: 700;
    color: #191a1d;
    margin-bottom: 0.2rem;
    text-align: center;
}

.benefit-desc {
    font-size: 0.94rem;
    color: #757575;
    text-align: center;
    margin-top: 0.35rem;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 900px) {

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .benefit-card {
        padding: 1rem 0.4rem 0.8rem 0.4rem;
        min-height: 120px; /* set as needed, or remove for auto */
    }

    .benefit-title {
        font-size: 1rem;
        margin-bottom: 0.08rem;
    }

    .benefit-desc {
        font-size: 0.9rem;
        margin-top: 0.13rem;
    }

    .benefit-icon {
        font-size: 1.5rem;
    }
}

/*premium incredients*/
.ingredients-section {
    width: 100vw;
    max-width: 100vw;
    background: #f6f6f7;
    text-align: center;
    padding: 3.5rem 0 3.5rem 0;
}

.ingredients-title {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #191a1d;
    letter-spacing: -0.5px;
}

    .ingredients-title .highlight {
        color: #ff8800;
    }

.ingredients-flexgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-card {
    background: #fff;
    border: 1.5px solid #ededed;
    border-radius: 18px;
    box-shadow: none;
    padding: 1.1rem 0.8rem 1.3rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}

    .ingredient-card:hover {
        box-shadow: 0 4px 24px rgba(118,118,118,0.10);
        border-color: #ff880020;
    }

.ingredient-img img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.ingredient-title {
    font-size: 1.07rem;
    font-weight: 700;
    color: #191a1d;
    margin-bottom: 0.25rem;
}

.ingredient-desc {
    font-size: 0.96rem;
    color: #757575;
    text-align: center;
    margin-top: 0.03rem;
    font-weight: 400;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .ingredients-section {
        padding: 2.1rem 0 2.1rem 0;
    }

    .ingredients-title {
        font-size: 1.4rem;
        margin-bottom: 1.3rem;
    }

    .ingredients-flexgrid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }

    .ingredient-card {
        padding: 0.6rem 0.3rem 0.9rem 0.3rem;
    }

    .ingredient-img img {
        width: 110px;
        height: 100px;
        margin-bottom: 0.75rem;
    }

    .ingredient-title {
        font-size: 1.01rem;
        margin-bottom: 0.14rem;
    }

    .ingredient-desc {
        font-size: 0.91rem;
    }
}

/*who this datalist for*/

.who-section {
    width: 100vw;
    max-width: 100vw;
    background: #fff;
    padding: 3.5rem 0 3.5rem 0;
    text-align: center;
}

.who-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.3rem;
    color: #191a1d;
    letter-spacing: -0.5px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1100px;
}

.who-card {
    background: #fff;
    border: 1.5px solid #ededed;
    border-radius: 18px;
    padding: 2.1rem 1.3rem 1.45rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.who-icon {
    font-size: 2.15rem;
    margin-bottom: 1rem;
    color: #ff8800;
}

.who-head {
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 0.36rem;
    color: #191a1d;
}

.who-desc {
    color: #737373;
    font-size: 0.98rem;
    line-height: 1.۴;
}

/* Responsive: Mobile (2 cards top, 1 centered under) */
@media (max-width: 800px) {
    .who-title {
        font-size: 1.4rem;
        margin-bottom: 1.1rem;
    }

    .who-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.1rem;
        padding: 0 1rem;
        max-width: 500px;
    }

    .who-card {
        padding: 1.2rem 0.4rem 1rem 0.4rem;
    }

        .who-card:last-child {
            grid-column: 1 / span 2;
            max-width: 300px;
            margin: 0 auto;
        }
}

/*testimonial section*/
/* Base (desktop) ------------------- */
/*.testimonials-section {
    width: 100vw;
    background: #fff;
    text-align: center;
    padding: 3.5rem 0 2.5rem 0;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: #191a1d;
}

.testimonials-rating-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.4rem;
    font-size: 1.45rem;
}

.stars {
    color: #ff8800;
    font-size: 1.66rem;
    font-family: inherit;
    letter-spacing: 2px;
    font-weight: 700;
}

.testimonials-meta {
    font-size: 1.04rem;
    color: #353535;
    margin-bottom: 2.1rem;
}

.score {
    color: #191a1d;
    font-size: 1.05rem;
    font-weight: 500;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.9rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-card {
    background: #ededed;
    border-radius: 18px;
    padding: 1.7rem 1.2rem 1.35rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    transition: box-shadow 0.2s;
    box-shadow: none;
}

    .testimonials-card.neutral {
        background: #ededed;
    }

    .testimonials-card.blue {
        background: #dbf0ef;
    }

    .testimonials-card.purple {
        background: #dfd7eb;
    }

    .testimonials-card.pink {
        background: #efd5db;
    }

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.22rem;
}

.avatar {
    background: #c9c9c9;
    color: #38425a;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 50%;
    width: 2.14rem;
    height: 2.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.08rem;
    text-align: left;
}

.verified {
    font-size: 0.97rem;
    color: #444;
    text-align: left;
}

    .verified .date {
        color: #838383;
        font-size: 0.85rem;
        margin-left: 0.3em;
    }

.testimonials-card .stars {
    font-size: 1.14rem;
    margin-bottom: 0.38rem;
    margin-top: 0.17rem;
}

.text {
    color: #222;
    font-size: 1.07rem;
    margin-top: 0.2rem;
    text-align: left;
    line-height: 1.38;
    font-style: italic;
}*/
/* Mobile: horizontal scrollable carousel */
/*@media (max-width: 900px) {
    .testimonials-carousel {
        display: flex !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 !important;
    }

        .testimonials-carousel::-webkit-scrollbar {
            display: none !important;
        }

    .testimonials-card {
        flex: 0 0 88vw !important;
        min-width: 88vw !important;
        max-width: 88vw !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }
}

@media (max-width: 600px) {
    .testimonials-title {
        font-size: 1.02rem;
        margin-bottom: 0.4rem;
    }

    .testimonials-rating-row {
        font-size: 1.2rem;
    }

    .testimonials-card {
        padding: 0.7rem 0.3rem 0.7rem 0.3rem;
        font-size: 0.87rem;
    }
}*/
/* Shop Testimonials Section */
.shop-testimonials-section {
    width: 100vw;
    background: #fff;
    text-align: center;
    padding: 3.5rem 0 2.5rem 0;
    position: relative;
}

.shop-testimonials-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: #191a1d;
}

.shop-testimonials-rating-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.4rem;
    font-size: 1.45rem;
}

.shop-stars {
    color: #ff8800;
    font-size: 1.66rem;
    font-family: inherit;
    letter-spacing: 2px;
    font-weight: 700;
}

.shop-testimonials-meta {
    font-size: 1.04rem;
    color: #353535;
    margin-bottom: 2.1rem;
}

.shop-score {
    color: #191a1d;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Carousel Wrapper */
.shop-testimonials-wrapper {
    position: relative;
    margin-left:10px;
}

/* Carousel cards */
.shop-testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1.9rem;
    padding: 0 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

    .shop-testimonials-carousel::-webkit-scrollbar {
        display: none;
    }

.shop-testimonials-card {
    flex: 0 0 25rem;
    scroll-snap-align: start;
    background: #ededed;
    border-radius: 18px;
    padding: 1.7rem 1.2rem 1.35rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

    .shop-testimonials-card:nth-child(4n+1) {
        background: #ededed;
    }

    .shop-testimonials-card:nth-child(4n+2) {
        background: #dbf0ef;
    }

    .shop-testimonials-card:nth-child(4n+3) {
        background: #dfd7eb;
    }

    .shop-testimonials-card:nth-child(4n+4) {
        background: #efd5db;
    }

.shop-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.22rem;
}

.shop-avatar {
    background: #c9c9c9;
    color: #38425a;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 50%;
    width: 2.14rem;
    height: 2.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.shop-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.08rem;
    text-align: left;
}

.shop-verified {
    font-size: 0.97rem;
    color: #444;
    text-align: left;
}

    .shop-verified .shop-date {
        color: #838383;
        font-size: 0.85rem;
        margin-left: 0.3em;
    }

.shop-testimonials-card .shop-stars {
    font-size: 1.14rem;
    margin-bottom: 0.38rem;
    margin-top: 0.17rem;
}

.shop-text {
    color: #222;
    font-size: 1.07rem;
    margin-top: 0.2rem;
    text-align: left;
    line-height: 1.38;
    font-style: italic;
}

/* Navigation Arrows */
.shop-testimonials-prev,
.shop-testimonials-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 0.2rem 0.6rem;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.shop-testimonials-prev {
    left: 0.5rem;
}

.shop-testimonials-next {
    right: 0.5rem;
}

/* Mobile: horizontal scrollable */
@media (max-width: 900px) {
    .shop-testimonials-card {
        flex: 0 0 88vw !important;
        min-width: 88vw !important;
        max-width: 88vw !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }
}

@media (max-width: 600px) {
    .shop-testimonials-title {
        font-size: 1.02rem;
        margin-bottom: 0.4rem;
    }

    .shop-testimonials-rating-row {
        font-size: 1.2rem;
    }

    .shop-testimonials-card {
        padding: 0.7rem 0.3rem 0.7rem 0.3rem;
        font-size: 0.87rem;
    }
}
