/* ============================================
   HOMEPAGE STYLES - Premium Boxed
   ============================================ */

/* --- Hero (Product Showcase) --- */
.hero {
    position: relative;
    overflow: hidden;
    background: #f2f5f2;
    min-height: 500px;
    margin-bottom: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(45,122,79,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero .splide {
    position: relative;
    z-index: 2;
}

/* Hide default Splide arrows (we use custom) */
.hero .splide__arrows {
    display: none;
}

.hero__slide {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 56px;
}

/* --- Content (left) --- */
.hero__content {
    max-width: 480px;
}

/* Content items - always visible (no animation) */

/* Tag pill */
.hero__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2d7a4f;
    background: rgba(45,122,79,0.08);
    border: 0.5px solid rgba(45,122,79,0.2);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

/* Title */
.hero__title {
    font-size: 32px;
    font-weight: 300;
    color: #1a2a1e;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.hero__title strong {
    font-weight: 500;
    color: #2d7a4f;
}

/* Subtitle */
.hero__text {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 28px;
}

/* Buttons */
.hero__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.hero__btn--primary {
    background: #2d7a4f;
    color: #fff;
}

.hero__btn--primary:hover {
    background: #235f3d;
    color: #fff;
    transform: translateY(-1px);
}

.hero__btn--outline {
    background: transparent;
    color: #2d7a4f;
    border: 1px solid #2d7a4f;
}

.hero__btn--outline:hover {
    background: #2d7a4f;
    color: #fff;
    border-color: #2d7a4f;
}

/* Trust mini row */
.hero__trust {
    display: flex;
    gap: 16px;
    align-items: center;
    border-top: 0.5px solid rgba(0,0,0,0.06);
    padding-top: 20px;
    margin-top: 24px;
}

.hero__trust-item {
    font-size: 10px;
    font-weight: 300;
    color: #999;
    white-space: nowrap;
}

.hero__trust-item i {
    color: #2d7a4f;
    font-weight: 900;
    font-size: 9px;
    margin-right: 3px;
}

/* --- Product image (right) --- */
.hero__product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.hero__product-link {
    display: block;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.hero__product-link:hover {
    opacity: 0.9;
}

.hero__product-img {
    max-height: 460px;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.1));
}

/* Price badge */
@keyframes badge-enter {
    0% { transform: scale(0) rotate(-15deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-4px) rotate(2deg); }
    66% { transform: translateY(-2px) rotate(-1deg); }
}

.hero__price-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #1a2a1e;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border: 2px dashed rgba(255,255,255,0.25);
    opacity: 0;
    transform: scale(0) rotate(-15deg);
}

.hero__price-badge.is-active-badge {
    animation: badge-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               badge-float 4s ease-in-out 0.6s infinite;
}

.hero__price-num {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 12px rgba(255,255,255,0.3);
}

/* --- Progress bar --- */
.hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(45,122,79,0.1);
    z-index: 20;
}

.hero__progress-bar {
    height: 100%;
    width: 0;
    background: #2d7a4f;
    transition: none;
}

.hero__progress-bar.is-running {
    width: 100%;
    transition: width 6000ms linear;
}

/* --- Dots (bottom-left) --- */
.hero__dots {
    position: absolute;
    bottom: 24px;
    left: 56px;
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 20;
}

.hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(45,122,79,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__dot.is-active {
    width: 24px;
    background: #2d7a4f;
}

.hero__dot:hover {
    background: rgba(45,122,79,0.5);
}

/* --- Arrows (bottom-right) --- */
.hero__arrows {
    position: absolute;
    bottom: 16px;
    right: 56px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0.5px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    font-size: 14px;
    padding: 0;
}

.hero__arrow:hover {
    border-color: #2d7a4f;
    color: #2d7a4f;
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--bg-white);
    padding: 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    padding: 24px 16px;
    border-right: 0.5px solid rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease;
}

.trust-bar__item:last-child {
    border-right: none;
}

.trust-bar__item:hover {
    background: #f8fbf9;
}

.trust-bar__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #edf7f1;
    color: #2d7a4f;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-bar__text {
    display: flex;
    flex-direction: column;
}

.trust-bar__text strong {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.trust-bar__text span {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.4;
}

/* --- Category Cards --- */
.category-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    text-decoration: none;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45, 122, 79, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.category-card__image {
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faf9 0%, #eef3f0 100%);
    position: relative;
}

.category-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-card__image img {
    transform: scale(1.06);
}

.category-card__content {
    padding: 22px 24px;
}

.category-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(108, 208, 78, 0.12) 0%, rgba(6, 101, 39, 0.08) 100%);
    color: var(--primary-medium);
    font-size: 16px;
    margin-bottom: 10px;
}

.category-card__title {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 4px;
    color: #242424;
}

.category-card__count {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 14px;
}

.category-card__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-medium);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-card__link-text {
    transition: text-decoration-color 0.2s ease;
    text-decoration: underline transparent;
    text-underline-offset: 3px;
}

.category-card:hover .category-card__link-text {
    text-decoration-color: var(--primary-medium);
}

.category-card__link-arrow {
    font-size: 11px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.category-card:hover .category-card__link-arrow {
    transform: translateX(4px);
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.product-card:hover {
    border-color: rgba(6, 101, 39, 0.1);
}

.product-card__image {
    display: block;
    height: 240px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(135deg, #f8faf9 0%, #f0f4f1 100%);
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-card__info {
    padding: 18px 20px 20px;
    text-align: center;
}

.product-card__title-link {
    text-decoration: none;
}

.product-card__title {
    font-size: 14px;
    font-weight: 400;
    color: #242424;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    hyphens: none;
    word-break: normal;
}

.product-card__price {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-medium);
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__price {
    transform: translateY(-2px);
}

.product-card__price del {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
}

.product-card__price ins {
    text-decoration: none;
}

.product-card__cart {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 11px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary) 100%);
    box-shadow: 0 3px 10px rgba(6, 101, 39, 0.2);
}

.product-card__cart:hover {
    box-shadow: 0 5px 15px rgba(6, 101, 39, 0.35);
}

.product-grid__cta {
    text-align: center;
    margin-top: 45px;
}

/* --- Featured Slider Arrows --- */
.featured-slider-section .container {
    position: relative;
}

.featured-slider-section .splide {
    position: relative;
}

.featured-slider-section .splide__arrows {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.featured-slider-section .splide__arrow {
    position: static !important;
    transform: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border, #e0e0e0);
    background: var(--bg-white, #fff);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    padding: 0;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-slider-section .splide__arrow:hover {
    border-color: var(--primary-medium);
    background: var(--primary-medium);
}

.featured-slider-section .splide__arrow svg {
    display: none;
}

.featured-slider-section .splide__arrow::after {
    font-family: "Font Awesome 7 Pro";
    font-weight: 900;
    font-size: 13px;
    color: #555;
    transition: color 0.25s ease;
}

.featured-slider-section .splide__arrow:hover::after {
    color: #fff;
}

.featured-slider-section .splide__arrow--prev::after {
    content: "\f053";
}

.featured-slider-section .splide__arrow--next::after {
    content: "\f054";
}

/* --- USP Section --- */
.usp-section {
    background: var(--bg-light);
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.usp-image {
    position: relative;
}

.usp-image img {
    border-radius: 20px;
    max-width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.usp-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent), var(--primary-medium));
    opacity: 0.15;
    z-index: -1;
}

.usp-content__title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #242424;
    letter-spacing: -0.02em;
}

.usp-content__subtitle {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.7;
}

.usp-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.usp-feature:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(6, 101, 39, 0.08);
}

.usp-feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(108, 208, 78, 0.15) 0%, rgba(6, 101, 39, 0.08) 100%);
    color: var(--primary-medium);
    font-size: 20px;
    flex-shrink: 0;
}

.usp-feature__text h4 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #242424;
}

.usp-feature__text p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* --- Certifications Banner --- */
.certs-banner {
    position: relative;
    overflow: hidden;
}

.certs-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.certs-banner__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.certs-banner__title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 14px;
}

.certs-banner__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.certs-banner__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 35px;
}

.certs-banner__logos img {
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity var(--transition);
}

.certs-banner__logos img:hover {
    opacity: 1;
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card__image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 22px 24px;
}

.blog-card__date {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 500;
}

.blog-card__title {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card__title a {
    color: #242424;
    transition: color 0.25s ease;
}

.blog-card__title a:hover {
    color: var(--primary-medium);
}

.blog-card__excerpt {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.65;
}

.blog-card__link {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-medium);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card__link i {
    font-size: 12px;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card__link i {
    transform: translateX(5px);
}

/* --- SEO Heading (visually hidden, SEO only) --- */
.seo-heading {
    padding: 0;
    margin: 0;
}

/* --- Why Buy Section --- */
.why-buy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-buy__image {
    text-align: center;
}

.why-buy__image img {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.why-buy__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-buy__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 14px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-buy__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(6, 101, 39, 0.08);
}

.why-buy__num {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-medium);
    line-height: 1;
    min-width: 40px;
    opacity: 0.3;
    font-variant-numeric: tabular-nums;
}

.why-buy__text h4 {
    font-size: 15px;
    font-weight: 400;
    color: #242424;
    margin-bottom: 3px;
}

.why-buy__text p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* --- CTA Choose Section --- */
.cta-choose {
    background: linear-gradient(135deg, #f5faf7 0%, #eef5f1 100%);
}

.cta-choose__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-choose__icon {
    display: none;
}

.cta-choose__title {
    font-size: 26px;
    font-weight: 300;
    color: #242424;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.cta-choose__text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 28px;
}

.cta-choose__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-choose__actions .btn {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 13px;
    border-radius: 8px;
    box-shadow: none;
    padding: 13px 28px;
}

.cta-choose__actions .btn--primary {
    background: #2d7a4f;
}

.cta-choose__actions .btn--primary:hover {
    background: #235f3d;
    transform: none;
    box-shadow: none;
}

.cta-choose__actions .btn--outline {
    border-width: 1px;
}

.cta-choose__actions .btn--outline:hover {
    background: #2d7a4f;
    border-color: #2d7a4f;
    transform: none;
}

.cta-choose__image {
    text-align: center;
}

.cta-choose__image img {
    max-width: 360px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* --- FAQ Section --- */
.faq-section__subtitle {
    text-align: center;
    color: var(--text);
    max-width: 600px;
    margin: -30px auto 40px;
    font-size: 15px;
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
    transition: border-color 0.3s ease;
}

.faq-item.is-open {
    border-color: rgba(6, 101, 39, 0.12);
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 400;
    color: #242424;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    transition: color 0.2s ease;
    gap: 16px;
}

.faq-item__question:hover {
    color: var(--primary-medium);
}

.faq-item__icon {
    font-size: 13px;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
    color: var(--primary-medium);
}

.faq-item__answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background: linear-gradient(135deg, #002a10 0%, var(--primary-dark) 50%, var(--primary) 100%);
    padding: 60px 0;
}

.newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 10px;
}

.newsletter__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.newsletter__input-group {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 24px;
}

.newsletter__input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    font-family: var(--font);
    transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter__input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter__btn {
    border-radius: 0 10px 10px 0;
    padding: 14px 28px;
    background: #ffffff;
    color: var(--primary);
    box-shadow: none;
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: var(--accent, #6CD04E);
    color: #ffffff;
}

.newsletter__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.newsletter__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.25s ease;
}

.newsletter__social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* --- Starting Price Banner (new) --- */
.price-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #4fb83a 100%);
    padding: 40px 0;
    text-align: center;
}

.price-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-banner__text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
}

.price-banner__price {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.price-banner__price small {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
    display: block;
}

/* --- Homepage Responsive --- */
@media (max-width: 991px) {
    .hero__inner {
        padding: 40px;
        gap: 30px;
    }
    .hero__slide {
        min-height: 440px;
    }
    .hero__title {
        font-size: 26px;
    }
    .hero__product-img {
        max-height: 380px;
    }
    .hero__product {
        min-height: 380px;
    }
    .hero__dots {
        left: 40px;
    }
    .hero__arrows {
        right: 40px;
    }
    .why-buy__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .why-buy__image {
        order: -1;
    }
    .why-buy__image img {
        max-width: 300px;
        margin: 0 auto;
    }
    .cta-choose__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-choose__image {
        order: -1;
    }
    .cta-choose__image img {
        max-width: 260px;
        margin: 0 auto;
    }
    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-bar__item {
        border-right: none;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
        padding: 18px 16px;
    }
    .trust-bar__item:nth-child(2n) {
        border-right: none;
    }
    .trust-bar__item:nth-child(odd) {
        border-right: 0.5px solid rgba(0, 0, 0, 0.08);
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .usp-image {
        text-align: center;
    }
    .usp-image img {
        max-width: 420px;
    }
    .usp-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 32px 24px;
        align-items: center;
    }
    .hero__slide {
        min-height: auto;
    }
    .hero__content {
        max-width: none;
    }
    .hero__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .hero__text {
        font-size: 12px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .hero__btn {
        padding: 10px 18px;
        font-size: 11px;
    }
    .hero__actions {
        gap: 8px;
    }
    .hero__trust {
        gap: 10px;
        flex-wrap: wrap;
    }
    .hero__trust-item {
        font-size: 9px;
    }
    .hero__product {
        min-height: 200px;
    }
    .hero__product-img {
        max-height: 240px;
    }
    .hero__price-badge {
        width: 72px;
        height: 72px;
        bottom: 10px;
        left: -5px;
    }
    .hero__price-num {
        font-size: 20px;
    }
    .hero__dots {
        left: 24px;
        bottom: 16px;
    }
    .hero__arrows {
        right: 24px;
        bottom: 10px;
    }
    .hero__arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .category-cards__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .category-card__image {
        height: 200px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .certs-banner__logos {
        flex-wrap: wrap;
        gap: 20px;
    }
    .certs-banner__logos img {
        max-height: 50px;
    }
    .price-banner__inner {
        flex-direction: column;
        gap: 16px;
    }
    .featured-slider-section .splide__arrows {
        position: static;
        justify-content: center;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    /* Mobile hero: TAG -> TITLE -> IMAGE -> SUBTITLE -> BUTTONS -> TRUST */
    .hero__inner {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 16px 40px;
    }
    .hero__content {
        display: contents;
    }
    .hero__tag {
        order: 1;
        font-size: 9px;
        margin-bottom: 4px;
    }
    .hero__title {
        order: 2;
        font-size: 20px;
        margin-bottom: 4px;
    }
    .hero__product {
        order: 3;
        min-height: auto;
        margin: 4px 0;
    }
    .hero__product-img {
        max-height: 280px;
    }
    .hero__text {
        order: 4;
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.45;
    }
    .hero__actions {
        order: 5;
        flex-direction: column;
        gap: 8px;
    }
    .hero__actions .hero__btn {
        width: 100%;
        justify-content: center;
    }
    .hero__trust {
        order: 6;
        gap: 8px;
    }
    .hero__price-badge {
        width: 64px;
        height: 64px;
        bottom: 5px;
        left: 0;
    }
    .hero__price-num {
        font-size: 18px;
    }
    .hero__arrows {
        display: none;
    }
    .hero__dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px;
    }
    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-bar__item {
        justify-content: flex-start;
        padding: 14px 12px;
        gap: 10px;
    }
    .trust-bar__icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 8px;
    }
    .trust-bar__text strong {
        font-size: 11px;
    }
    .trust-bar__text span {
        font-size: 10px;
    }
    .trust-bar__item:nth-child(n+3) {
        border-bottom: none;
    }
    .trust-bar__item:nth-child(odd) {
        border-right: 0.5px solid rgba(0, 0, 0, 0.08);
    }
    .product-grid {
        gap: 12px;
    }
}
