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

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.subtitle {
    color: #717B87 !important;
    font-size: 16px !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;

}

h1 span {
    font-weight: 200;
}

h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn.primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FC7155 50%, #E55A3B 100%);
    color: white;
    width: 240px;
    min-width: 160px;
    min-height: 56px;
    padding: 18px 0;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(252, 113, 85, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
    border: 2px solid #FF6B35;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn.primary:hover::before {
    left: 100%;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #FF5722 0%, #FF6B35 50%, #FC7155 100%); /* Brighter on hover */
    box-shadow: 0 8px 25px rgba(252, 113, 85, 0.5), 0 4px 12px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    border-color: #FF5722;
}

.btn.secondary {
    background-color: #eaeaea;
    color: #666;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


header {
    background-color: #1c2a46;
    color: white;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    max-width: 120px; /* Ограничение ширины логотипа */
    max-height: 48px; /* Ограничение высоты логотипа */
    width: auto;
    height: auto;
    display: block;
}

.logo-subtext {
    font-size: 12px;
    color: #9CACBF;
    font-weight: 400;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FC7155;
}

.contact-btn {
    background-color: #FC7155;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #d86c4f;
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: none;
}


.hero {
    background-color: #1c2a46;
    color: white;
    padding: 40px 0 40px; /* Reduced bottom padding from 80px to 30px */
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        background-color: #1c2a46;
        color: white;
        padding: 20px 0 10px; /* Reduced bottom padding from 80px to 30px */
        text-align: center;
    }

  
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 8px; /* Reduced from 20px */
    font-weight: 700;
}

.hero p {
    max-width: 860px;
    margin: 0 auto;
    color: #9CACBF;
    font-size: 16px;
    line-height: 1.7;
}


.supplements {
    padding: 30px 0; /* Reduced from 60px 0 */
    margin-top: 0px;
}

.supplement-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 10px;
    margin-bottom: 16px; /* Reduced from 20px */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-wrap: wrap;
}

.supplement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.supplement-card.featured {
    border-left: 4px solid #f8c055;
}

.rank {
    position: absolute;
    top: 1px;
    left: 1px;
    background: #f8c055;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.supplement-card.featured .rank {
    position: absolute;
    top: -15px;
    left: -21px;
    background: #f0f0f0;
    width: 85px;
    height: 87px;
    border-radius: 5px;
    display: flex;
    padding-top: 8px;
    padding-left: 8px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 0;
    background: url('../img/trophy.png') center no-repeat;
    background-size: contain;
    z-index: 1;
}


.product-info {
    display: flex;
    align-items: center;
    width: 57%;
    padding-left: 15px; /* Reduced from 20px */
}

.flex {
    display: flex;
    align-items: flex-start;
}

.brand-logo {
    max-width: 140px;
    margin-right: 40px; /* Reduced from 60px */
}

.brand-logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .brand-logo {
        max-width: 200px;
        margin-right: 0;
    }
}
.key-ingredients {
    margin-right: 30px; /* Reduced from 55px */
}

.effective p {
    font-size: 14px;
    color: #323A40;
    max-width: 200px;
    width: 100%;
    margin-bottom: 6px; /* Add margin-bottom for tighter spacing */
}

.effective p span {
    color: #22A4B1;
}

.key-ingredients h4, .effective h4 {
    text-transform: uppercase;
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}

.key-ingredients ul li, .effective ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.key-ingredients ul li i, .effective ul li i {
    color: #666;
    margin-right: 10px;
    font-size: 16px;
}

.reviews {
    font-size: 17px;
    color: #6E7A81;
    margin-bottom: 5px;
}

.rating {
    text-align: center;
}

.rating .score {
    font-size: 36px;
    font-weight: 600;
    display: block;
    color: #333;
    line-height: 36px;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 16px;
}

.stars i {
    margin: 0 1px;
}

.action-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 20px;
    gap: 4px; /* Minimal gap for visual separation */
}

.btn.primary {
    background-color: #FC7155;
    color: white;
    width: 140px; /* Increased from 110px */
    min-height: 48px; /* Added minimum height for mobile tap targets */
    padding: 14px 0; /* Increased padding from 12px */
    font-size: 16px; /* Increased from 14px */
    font-weight: 700; /* Made bolder */
    box-shadow: 0 4px 12px rgba(252, 113, 85, 0.3); /* Added shadow for prominence */
}

.btn.secondary {
    background-color: #EAEFF3;
    color: #909AA4;
    width: 110px;
    padding: 12px 0;
    font-size: 14px;
}

.inform {
    background: #F0F4F8;
    padding: 28px 32px;
    box-sizing: border-box;
    border-radius: 12px;
    margin-top: 18px;
    margin-bottom: 18px;
    border: 1.5px solid #e3e8ee;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
    transition: box-shadow 0.2s;
}

.inform h3 {
    font-size: 25px;
    color: #2E3646;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inform-title-icon {
    font-size: 1.3em;
    margin-right: 6px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.inform ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.inform ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 0 0;
    padding: 0;
}

.inform-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-size: 1.15em;
    color: #3a4a5d;
    background: #eaf0f7;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
}

.inform ul li p {
    display: inline;
    color: #2F435B;
    margin-bottom: 0;
    margin-top: 0;
}

.inform ul li span {
    margin-right: 5px;
}


.read-reviews {
    margin-top: 0;
    margin-left: 4px; /* Small space between buttons */
    color: #666; /* Changed from #999 for better visibility */
    font-size: 13px; /* Reduced from 14px */
    transition: color 0.3s ease;
    text-decoration: underline; /* Added underline to make it more link-like */
}

.read-reviews:hover {
    color: #FC7155;
}

.terms {
    display: block;
    background: #F0F4F8;
    text-align: center;
    font-size: 13px;
    width: 100%;
    padding: 10px 0 6px 0;
    color: #757C83;
    margin-bottom: 0;

    border-radius: 0 0 10px 10px;
}


.main-content {
    padding: 60px 0;
    text-align: center;
    background: #E1F4F4 url('../img/mockup.png?v=2') center bottom no-repeat;
    height: 800px;
}

@media (max-width: 768px) {
    .main-content {
        padding: 60px 0;
        text-align: center;
        background: #E1F4F4 ;
        height: 800px;
    }
    
}

.main-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.main-content .subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 16px;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.product-image {
    margin-bottom: 50px;
}

.product-image img {
    max-height: 350px;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 150px;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50%;
    padding-right: 260px;
    margin: 40px 0;
}

.badge:nth-child(1) {
    padding-right: 200px;
}

.badge:nth-child(2) {
    padding: 0 0 0 200px;
}

.badge:nth-child(4) {
    padding: 0 0 0 260px;
}


.badge:nth-child(2), .badge:nth-child(4) {
    justify-content: flex-start;
}

.badge:nth-child(2) .icon, .badge:nth-child(4) .icon {
    order: 1;
}

.badge:nth-child(2) span, .badge:nth-child(4) span {
    order: 2;
    text-align: left;
    margin: 0 0 0 20px;
}


.badge .icon {
    background: #70909F;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.badge span {
    order: 1;
    font-size: 22px;
    color: #1D2428;
    margin-right: 20px;
    line-height: 1.4;
    text-align: right;
    line-height: 26px;
}


.top-choice {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.top-choice h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2E3646;
}

.products-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.product-card {
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border-top: 4px solid #f8c055;
}

.feature-badge {
    position: absolute;
    top: -15px;
    left: -15px;

}

.product-card .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin-bottom: 16px;
}
.product-card .product-image img {
    width: 200px;
    height: 400px;
    object-fit: contain;
    display: block;
}

.product-card .stars {
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #133954;
    text-align: left;
}

.product-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #133954;
    text-align: left;
}

.product-card ul {
    margin-bottom: 20px;
    text-align: left;
}

.product-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #566672;
    vertical-align: middle;
}

.product-card ul li span {
    color: #FC7155;
    font-size: 26px;
    margin-right: 5px;
    line-height: 26px;
    vertical-align: middle;
}

.product-card .btn {
    width: 100%;
}


.faq-section {
    padding: 60px 0;
    background-color: #f5f8fa;
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.faq-question .icon {
    background: #FC7155;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question .icon {
    background: #CAD2D8;
    color: #222;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #666;
    display: none;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}


.testimonial-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-content {
    display: flex;
    align-items: center;

}

.testimonial-image {
    flex: 0 0 50%;
    padding-right: 40px;
}

.testimonial-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {

    padding-left: 20px;
}

.testimonial-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-text .btn {
    margin-top: 20px;
}


footer {
    background-color: #1c2a46;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    font-weight: 700;
    font-size: 20px;
}

.footer-nav ul {
    display: flex;
}

.footer-nav ul li {
    margin-left: 30px;
}

.footer-nav ul li a {
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #FC7155;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-disclosure {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.footer-disclosure .disclosure-link {
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    font-size: 13px;
}

.footer-disclosure .disclosure-tooltip {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -420px;
    background: #fff;
    color: #222;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    border-radius: 8px;
    padding: 18px 22px;
    width: 420px;
    max-width: 90vw;
    font-size: 14px;
    text-align: left;
    z-index: 1001;
    line-height: 1.6;
}

.footer-disclosure .disclosure-link:hover .disclosure-tooltip,
.footer-disclosure .disclosure-link:focus .disclosure-tooltip {
    display: block;
}


.single .flex {
    align-items: flex-start;
    justify-content: space-between;
}

.single {
    padding: 40px 0;
}

.single-product {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.single-product h1 {
    font-size: 22px;
    color: #133954;
    margin-bottom: 2px;
    font-weight: 600;
}

.single-product p {
    color: #133954;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.single-product-img {
    box-shadow: 0 5px 10px rgb(8, 130, 167, 10%);
    height: 180px;
    min-width: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.single-product-img img {
    max-height: 120px;
    height: auto;
}

.block2 {
    max-width: 600px;
    width: 100%;
    margin-left: 50px;
}

.single-rating {
    display: flex;
    align-items: center;
}

.single-rating i {
    font-size: 13px;
    color: #ffc107;
}

.single-rating p {
    margin-bottom: 0;
    margin-left: 5px;
    font-size: 12px;
    color: #8B99A1;
}

.single-rating h4 {
    margin-bottom: 0;
    color: #282D31;
    margin-left: 5px;
}

.block1 .btn {
    width: 100%;
    max-width: 360px;
}


.table {
    box-shadow: 0 5px 10px rgb(8, 130, 167, 10%);
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.table thead {
    background: #F0F5F9;
    height: 45px;

}

.table thead td {
    font-size: 17px;
    color: #414B62;
    padding: 0 25px;
    box-sizing: border-box;
    font-weight: 600;
}

.table tbody tr td {
    padding: 20px 25px;
    box-sizing: border-box;
}

.table tbody tr td p {
    display: inline-block;
    font-size: 13px;
    color: #5B6774;
}

.table tbody tr td i {
    color: green;
    margin: 4px 8px 0 0;
}

.table tbody tr td .fa-circle-xmark {
    color: red;
}


.table tbody tr td li {
    display: flex;
    align-items: flex-start;
}


.prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.prices-item {
    box-shadow: 0 5px 10px rgb(8, 130, 167, 10%);
    border-radius: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    box-sizing: border-box;
}

.prices-item b {
    font-size: 17px;
    color: #414B62;
    font-weight: 600;
}

.prices-item strike {
    font-size: 13px;
    color: #ACB4C6;
    margin-right: 5px;
}


.prices-score {
    box-shadow: 0 5px 10px rgb(8, 130, 167, 10%);
    border-radius: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
    margin-left: 20px;
    max-width: 400px;
    width: 100%;
}

.prices-score span {
    font-size: 15px;
    color: #414B62;
    font-weight: 600;
}

.line {
    height: 8px;
    border-radius: 5px;
    background-color: #DFE6ED;
    margin: 0 15px;
    max-width: 200px;
    overflow: hidden;
    width: 100%;
}

.line span {
    width: 82%;
    background-color: #43C09A;
    height: 8px;
    display: block;
}


.hr {
    height: 1px;
    width: 100%;
    display: block;
    margin: 40px 0;
    background: #E5E7EB;
}

.content h2 {
    font-size: 28px;
    color: #2E3646;
    font-weight: 600;
    margin-bottom: 20px;
}

.mt-4 {
    margin-top: 40px;
}

.content {
    justify-content: space-between;
    align-items: flex-start;
}


.sidebar {
    max-width: 330px;
    width: 100%;
    position: sticky;
    top: 20px;
}

.simple {
    border-radius: 10px;
    border: 1px solid #E5E7EB;
}

.simple-head {
    background-color: #F0F4F8;
    padding: 15px 20px;
    box-sizing: border-box;
}

.simple-head h4 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 17px;
}

.simple-text {
    padding: 20px 25px 20px 40px;
    box-sizing: border-box;
}

.simple-text ul li {
    color: #43C09A;
    list-style: disc;
}

.simple-text ul li a {
    color: #414B62;
    font-size: 14px;
    margin-bottom: 8px;
}

.simple-text ul li ul li {
    list-style: none;
}

.simple-text ul li ul {
    padding-left: 12px;
}

.simple-text ul li b {
    font-weight: 600;
}


.content-main {
    max-width: 770px;
    width: 100%;
}

.content-main.full-width {
    max-width: 100%;
}

.content p {
    font-size: 16px;
    color: #293C54;
    line-height: 26px;
}

.content .btn.primary {
    width: auto;
    padding: 14px 20px;
    box-sizing: border-box;
    margin-top: 15px;
}

.content .table {
    width: 100%;
    color: #414B62;

}

.content .table td {
    border: 1px solid #E5E7EB;
    padding: 15px 25px;
}


.content .table tbody tr td:first-child {
    font-weight: 500;
}

.list li {
    display: flex;
    align-items: flex-start;
}

.list li b {
    font-weight: 600;
}

.list li p {
    margin-left: 15px;
}

.block3 {
    margin-top: 50px;
    margin-bottom: 50px;
    justify-content: space-between;
}

.block3 h2 {
    margin-top: 20px;
}

.block3-item {
    padding: 30px;
    box-sizing: border-box;
    background-color: #F0F4F8;
    border-radius: 10px;
}

.block3-item p {
    font-size: 14px;
}

.block3-item span {
    font-weight: 600;
    font-size: 16px;
}

.block3-item ul li {
    position: relative;
    padding-left: 34px;
}

.block3-item ul li:before {
    font-family: "Font Awesome 6 Free";
    content: '\f00c';
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
}

.block4 {
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #F0F4F8;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.block4-item {
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #E5E7EB;
    width: 49%;
    padding: 20px 30px;
    box-sizing: border-box;
}

.block4 h3 {
    font-size: 17px;
    color: #414B62;
    font-weight: 600;
    margin-bottom: 25px;
}

.block4 ul li {
    display: flex;
    align-items: flex-start;
}

.block4 ul li i {
    margin: 3px 8px 0 0;
    color: green;
}

.block4 ul li .fa-circle-xmark {
    color: red;
}

.block4 ul li p {
    font-size: 15px;
    color: #313D4B;
    line-height: 22px;
}

.block4 ul li b {
    font-weight: 600;
}

.content .table a {
    color: #3970B2;
    text-decoration: underline;
}

.link {
    color: #3970B2;
    text-decoration: underline;
    font-size: 16px;
}

.h3 {
    font-weight: bold;
    color: #192240;
    margin-bottom: 8px;
}

.h3 .label {
    color: #fff;
    border-radius: 8px;
    background-color: #23B223;
    padding: 3px 5px;
}

.table.cust thead {
    background-color: #223770;

}

.table.cust thead td {
    color: #fff;
    font-weight: 600;
}

.table.cust tbody tr:nth-child(2n) {
    background-color: #F4F9FC;
}

.table.cust tbody tr td {
    color: #58637A;
}


@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .products-grid {
        justify-content: center;
    }

    .product-card {
        width: calc(50% - 30px);
    }

    .content-main {
        max-width: 630px;
    }

    .sidebar {
        max-width: 300px;
    }

    .single-product {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .single-product-img {
        height: 120px;
        margin-bottom: 25px;
        margin-right: 0;
        min-width: 300px;
    }

    .single-product-text h1 {
        font-size: 26px;
    }

    .single-product-text .tp {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .product-card .rating {
        position: static;
    }

    .hero h1 {
        font-size: 30px;
    }

    .product-info {
        flex-direction: column;
        align-items: flex-start;

    }

    .brand-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .certification-badges {
        flex-wrap: wrap;
    }

    .badge {
        width: 48%;
        margin-bottom: 30px;
        padding-right: 160px;
    }

    .badge:nth-child(4) {
        padding-left: 160px;
    }

    .testimonial-content {
        flex-direction: column;
    }

    .testimonial-image {
        width: 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .testimonial-text {
        width: 100%;
        padding-left: 0;
    }

    .supplement-card {
        align-items: flex-end;
    }

    nav ul li a {
        font-size: 14px;
    }

    nav ul li {
        margin-left: 20px;
    }

    .contact-btn {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .content-main {
        max-width: 100%;
    }

    .block2 {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        position: absolute;
        transition: all 0.3s ease;
    }

    .mobile-nav-toggle span:nth-child(1) {
        top: 0;
    }

    .mobile-nav-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-nav-toggle span:nth-child(3) {
        bottom: 0;
    }

    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 11px;
    }

    .product-card .rating {
        text-align: left;
    }

    .supplement-card {
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
        padding-right: 0;
    }

    .read-reviews {
        margin-left: 0;
        margin-top: 8px;
    }

    .flex {
        width: 100%;
        flex-direction: column;
    }

    .key-ingredients {
        margin-right: 0;
        margin-bottom: 30px;
        margin-top: 20px !important;
    }

    .key-ingredients {
        text-align: left !important;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 92px;
        left: 0;
        width: 100%;
        background-color: #1c2a46;
        padding-left: 30px;
        box-sizing: border-box;
        z-index: 99;
    }

    nav ul {
        flex-direction: column;
        margin: 20px 0;
    }

    nav ul li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .contact-btn {
        display: none;
    }

    .hero h1 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .hero p {
        display: none;
    }

    .supplement-card {
        flex-direction: column;


    }

    .product-info {
        width: 100%;
        margin-bottom: 30px;
        align-items: flex-start;
        padding-top: 36px;
        padding-left: 20px;
        box-sizing: border-box;
    }

    .key-ingredients {
        text-align: center;
    }

    .key-ingredients ul li {
        font-size: 15px;
        margin-top: 20px;
        font-family: 'Roboto', Arial, sans-serif;
    }

    .brand-logo {
        margin-bottom: 40px;
    }

    .action-buttons {
        width: 100%;
    }

    .action-buttons .btn.primary, .action-buttons .btn.secondary {
        max-width: 220px;
        width: 100%;
        min-height: 48px; /* Ensure minimum tap target on mobile */
    }

    .action-buttons .btn.primary {
        font-size: 16px; /* Keep primary CTA prominent on mobile */
        font-weight: 700;
        padding: 14px 0;
        background: linear-gradient(135deg, #FF6B35 0%, #FC7155 50%, #E55A3B 100%); /* Maintain gradient on mobile */
        box-shadow: 0 6px 20px rgba(252, 113, 85, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
        border: 2px solid #FF6B35;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .action-buttons .btn.secondary {
        font-size: 14px; /* Keep secondary smaller */
        padding: 12px 0;
    }

    .rating {
        margin-bottom: 0px;
        position: absolute;
        top: 36px;
        right: 30px;
    }

    .product-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-nav {
        margin-bottom: 20px;
    }

    .footer-nav ul {
        flex-direction: column;
    }

    .footer-nav ul li {
        margin: 10px 0;
    }


    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature {
        text-align: center;
    }

    .feature .icon {
        width: 60px;
        height: 60px;
    }

    .feature span {
        font-size: 14px;
    }

    .badge {
        padding: 0 !important;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .badge .icon {
        order: 1;
        margin-bottom: 14px;
        margin-left: 0;
        margin-right: 0;
    }

    .badge span {
        order: 2;
        font-size: 17px;
        text-align: center !important;
        margin: 0 !important;
    }

    .certification-badges {
        margin-top: 0;
    }

    .main-content {
        background-size: 800px;
    }

    .block1 {
        width: 100%;
    }

    .single-product {
        flex-direction: row;
        align-items: center;
        margin-bottom: 30px;
    }

    .single-product-img {
        margin-bottom: 0;
        margin-right: 40px;
    }

    .block2 {
        margin: 30px 0 0 0;
        max-width: 100%;
    }

    .content .table td {
        font-size: 16px;
        padding: 12px 15px;
    }

    .single-product-img {
        min-width: 220px;
    }

    .single-product-img img {
        max-width: 140px;
    }

    .single-rating h4 {
        display: none;
    }

    .single-rating p {
        display: none;
    }

    .table-scroll {
        overflow-x: scroll;
    }

    .table.cust {
        width: 700px;
    }

    .block4 {
        padding: 8px;
        flex-direction: column;
    }

    .block4-item {
        width: 100%;
    }

    .block4-item:first-child {
        margin-bottom: 10px;
    }

    .container {
        padding: 0 15px;
    }

    .hr {
        margin: 35px 0 25px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 24px;
    }

    .badge {
        width: 50%;
    }

    .badge span {
        font-size: 16px;
        line-height: 20px;
    }

    .main-content {
        padding-bottom: 220px;
        background-size: 600px;
        height: auto;
    }

    .main-content .subtitle {
        margin-bottom: 20px;
    }


    .faq-question h3 {
        font-size: 16px;
    }

    .action-buttons .btn.primary, .action-buttons .btn.secondary {
        max-width: 90%;
        min-height: 48px; /* Ensure minimum tap target on small mobile */
    }

    .action-buttons .btn.primary {
        font-size: 16px; /* Keep primary CTA prominent on small mobile */
        font-weight: 700;
        padding: 14px 0;
        background: linear-gradient(135deg, #FF6B35 0%, #FC7155 50%, #E55A3B 100%); /* Maintain gradient on small mobile */
        box-shadow: 0 6px 20px rgba(252, 113, 85, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
        border: 2px solid #FF6B35;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .action-buttons .btn.secondary {
        font-size: 13px; /* Keep secondary smaller on small mobile */
        padding: 12px 0;
    }

    .terms {
        display: none;
    }

    .supplement-card {
        padding-block: 15px;
    }

    .key-ingredients {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .effective p {
        max-width: 90%;
        margin-bottom: 0;
    }

   

    header .container {
        padding: 0 15px;
    }

    .logo-container {
        align-items: center;
    }

    .logo {
        font-size: 18px;
        margin-bottom: 1px;
    }

    .logo-subtext {
        font-size: 11px;
    }

    .rating .score {
        font-size: 30px;
        margin-bottom: 4px;
    }

    .reviews {
        font-size: 14px;
        margin-bottom: 0;
    }

    .stars i {
        font-size: 14px;
    }

    .rating {
        right: 14px;
    }

    .inform {
        padding: 20px;
    }

    .inform h3 {
        font-size: 24px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question {
        align-items: flex-start;
    }

    .faq-question h3 {
        padding-right: 20px;
        box-sizing: border-box;
    }

    .single-product-img {
        min-width: 150px;
        height: 95px;
        margin-right: 30px;
    }

    .single-product-img img {
        max-width: 100px;
    }

    .single-product-text h1 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .single-product-text .tp {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .table tbody tr td {
        padding: 20px 15px;
    }

    .prices-item {
        padding: 0 20px;
    }

    .content .table td {
        font-size: 14px;
    }

    .block3-item {
        padding: 25px 20px 15px 20px;
    }

    .block4-item {
        padding: 20px;
    }

    .content h2 {
        font-size: 26px;
    }
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
    /* Добавляем стили для центрирования */
    align-items: center;
    justify-content: center;
}

.popup-content {
    position: relative;
    background-color: #fff;
    padding: 25px;
    max-width: 850px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.popup-flex {
    display: flex;
    gap: 20px;
}

.popup-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-right {
    flex: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-product-image {
    max-width: 150px;
    height: auto;
}

.popup-content a.btn.primary {
    width: 100%;
    display: block;
}

.popup-content {
    font-size: 14px;
}

.popup-product-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}


@media (max-width: 768px) {
    .popup-flex {
        flex-direction: column;
    }

    .popup-content {
        width: 90%;
        /* Убираем margin-top, так как центрирование через flex */
        margin: 0;
    }
}

.disclosure-header {
  background: #f5f5f5;
  color: #666;
  font-size: 12px;
  padding: 4px 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  z-index: 10;
  line-height: 1.3;
}
.disclosure-link {
  color: #888;
  text-decoration: underline;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  font-size: 11px;
}
.disclosure-link:focus {
  outline: 2px solid #FC7155;
}
.disclosure-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 28px;
  background: #fff;
  color: #222;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  border-radius: 8px;
  padding: 18px 22px;
  width: 420px;
  max-width: 90vw;
  font-size: 14px;
  text-align: left;
  z-index: 1001;
  line-height: 1.6;
}
.rating-info {
  display: inline-block;
  margin-left: 6px;
  color: #909AA4;
  cursor: pointer;
  font-size: 18px;
  vertical-align: middle;
}
.rating-info:focus {
  outline: 2px solid #FC7155;
}

@media (max-width: 768px) {
    .supplements {
        padding: 15px 0 ;
    }
    .supplement-card {
        padding: 24px 0 0 0;
    }
}

.effective h4 {
    margin-bottom: 4px !important; /* Reduce space below headline */
}
.effective p {
    margin-top: 10px !important; /* Remove extra space above text */
    margin-bottom: 8px !important; /* Tighter spacing below */
}
.key-ingredients ul {
    margin-top: 20px !important;
    margin-bottom: 8px !important; /* Reduce space below bullet list */
}
.action-buttons {
    margin-top: 10px !important; /* Reduce space above buttons */
}
.highlight {
    font-weight: bold;
    color: #FC7155;
    background: #fff6f2;
    padding: 2px 6px;
    border-radius: 4px;
}
.free-shipping {
    color: #22A4B1;
    font-weight: bold;
    margin-left: 2px;
}

/* --- INFORM CARD REFINEMENTS --- */
.inform {
    background: #F0F4F8;
    padding: 28px 32px;
    box-sizing: border-box;
    border-radius: 12px;
    margin-top: 18px;
    margin-bottom: 18px;
    border: 1.5px solid #e3e8ee;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
    transition: box-shadow 0.2s;
}

.inform h3 {
    font-size: 25px;
    color: #2E3646;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inform-title-icon {
    font-size: 1.3em;
    margin-right: 6px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.inform ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.inform ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 0 0;
    padding: 0;
}

.inform-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-size: 1.15em;
    color: #3a4a5d;
    background: #eaf0f7;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
}

.inform ul li p {
    display: inline;
    color: #2F435B;
    margin-bottom: 0;
    margin-top: 0;
}

@media (max-width: 600px) {
  .inform {
    padding: 14px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    border-radius: 9px;
  }
  .inform h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }
  .inform-bullet {
    min-width: 22px;
    height: 22px;
    font-size: 1em;
    margin-right: 4px;
  }
  .inform ul li {
    gap: 7px;
    margin: 5px 0 0 0;
  }
}
/* --- END INFORM CARD REFINEMENTS --- */

@media (max-width: 767px) {
  .testimonial-text .btn.primary {
    width: 100%;
    max-width: 320px;
    min-height: 54px;
    font-size: 18px;
    padding: 16px 0;
    margin: 24px auto 0 auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(252, 113, 85, 0.25);
  }
}

@media (max-width: 720px) {
  
  .badge .icon {
    margin-bottom: 6px;
  }
}

@media (max-width: 767px) {
  .effective {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .effective p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .action-buttons .read-reviews {
    display: block;
    width: 100%;
    max-width: 340px;
    min-height: 62px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 0;
    margin: 14px auto 0 auto;
    text-align: center;
    border-radius: 14px;
    color: #333;
    text-decoration: underline;
  }
}

@media (max-width: 480px) {
  .action-buttons .read-reviews {
    max-width: 98%;
    min-height: 58px;
    font-size: 20px;
    padding: 18px 0;
    margin: 12px auto 0 auto;
  }
}

@media (max-width: 767px) {
  .action-buttons .btn.primary {
    display: block;
    width: 100%;
    max-width: 320px;
    min-height: 56px;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 0;
    margin: 0 auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(252, 113, 85, 0.25);
  }
}

@media (max-width: 480px) {
  .action-buttons .btn.primary {
    max-width: 95%;
    min-height: 54px;
    font-size: 18px;
    padding: 16px 0;
  }
}

.action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.action-buttons .btn.primary,
.action-buttons .read-reviews {
  margin: 0;
}

@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .action-buttons .read-reviews {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
}

.products-grid {
    align-items: stretch;
}

.product-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 15px;
    padding: 24px 16px;
}

.product-card .stars {
    text-align: left;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #133954;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #133954;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card ul {
    margin-bottom: 12px;
    text-align: left;
}

.product-card ul li {
    font-size: 12px;
    margin-bottom: 6px;
}

.product-card .btn {
    width: 100%;
    padding: 18px 0;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FC7155 50%, #E55A3B 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(252, 113, 85, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
    border: 2px solid #FF6B35;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 12px;
    text-align: center;
    display: block;
}

.product-card .btn:hover {
    background: linear-gradient(135deg, #FF5722 0%, #FF6B35 50%, #FC7155 100%);
    box-shadow: 0 8px 25px rgba(252, 113, 85, 0.5), 0 4px 12px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    border-color: #FF5722;
}

@media (max-width: 1200px) {
    .product-card {
        min-height: 540px;
    }
}

@media (max-width: 991px) {
    .products-grid {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
    }
    .product-card {
        width: 100%;
        margin: 0 0 24px 0;
        min-height: 0;
        padding: 18px 10px;
    }
    .product-card .product-image {
        height: 120px;
        margin-bottom: 12px;
        justify-content: flex-start;
    }
    .product-card .stars {
        text-align: left;
        margin-bottom: 8px;
    }
    .product-card h3, .product-card h4 {
        font-size: 17px;
        white-space: normal;
        margin-bottom: 6px;
    }
    .product-card ul {
        margin-bottom: 10px;
    }
    .product-card .btn {
        font-size: 17px;
        padding: 14px 0;
        min-width: 0;
        min-height: 48px;
    }
    .feature-badge {
        position: static;
        margin-bottom: 8px;
        display: flex;
        justify-content: flex-start;
    }
    .feature-badge img {
        max-width: 40px;
        height: auto;
    }
}

@media (max-width: 600px) {
    .product-card {
        padding: 12px 4px;
    }
    .product-card .product-image {
        height: 80px;
        margin-bottom: 8px;
    }
    .product-card h3, .product-card h4 {
        font-size: 15px;
    }
    .product-card ul li {
        font-size: 13px;
    }
    .product-card .btn {
        font-size: 15px;
        padding: 10px 0;
    }
    .feature-badge img {
        max-width: 28px;
    }
}

@media (max-width: 767px) {
  .footer-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
  }
  .footer-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
  }
  .footer-nav ul li {
    margin: 4px 0 !important;
  }
  .footer-nav ul li a {
    font-size: 18px !important;
    padding: 10px 0 8px 0 !important;
    line-height: 1.2;
  }
}

.contact-form button[type="submit"] {
    align-self: center;
}

@media (min-width: 1024px) {
  #scroll-to-top-choice.btn.primary {
    min-width: 320px;
    width: auto;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 1.1em;
  }
}

@media (max-width: 767px) {
  .product-card .product-image {
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
  }
  .product-card .product-image img {
    width: 180px !important;
    height: 100px !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .top-choice {
    padding: 30px 0;
  }
  .top-choice h2 {
    margin-bottom: 14px;
  }
  .main-content .certification-badges {
    margin-top: 14px;
  }
}

