/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-size: cover;
    background-position: top center;
    background-blend-mode: overlay;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#hero-banner-rggl {
    background-image: url('images/slider/top-product-slider-gano.jpg');
}

#hero-banner-coffee {
    background-image: url('images/slider/top-product-slider-coffee.jpg');
}

#hero-banner-spirulina {
    background-image: url('images/slider/top-product-slider-spirulina.jpg');
}

#hero-banner-cocozhi {
    background-image: url('images/slider/top-product-slider-cocozhi.jpg');
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-overlay::before {
    content: '';
    flex: 1;
}

.hero-overlay::after {
    content: '';
    flex: 2;
}

.hero-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
    color: #1e244f;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Layout helpers */
.tp-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Intro section */
.tp-intro {
    background: #ffffff;
    padding: 80px 0;
}

.tp-intro-grid {
    display: grid;
    grid-template-columns: 2fr 4fr;
    gap: 4rem;
    align-items: center;
}

.tp-intro-image img {
    width: 100%;
    border-radius: 0 50px;
    box-shadow: 0 18px 32px rgba(122, 64, 40, 0.26), 0 8px 20px rgba(215, 165, 120, 0.3);
    display: block;
}

.tp-intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #333;
}

.tp-intro-content h2 span {
    color: #2c4048;
}

.tp-intro-list {
    margin: 0;
    color: #333;
}

.tp-intro-item {
    position: relative;
    padding-left: 34px;
    margin: 0 0 14px;
    line-height: 1.6;
    color: #505a8d;
    background-image: linear-gradient(rgba(80, 90, 141, 0.5), rgba(80, 90, 141, 0.5));
    background-repeat: no-repeat;
    background-position: 7px 13px;
    background-size: 1px;
    font-size: 1.2rem;
    text-align: justify;
}

.tp-intro-item::before,
.tp-intro-item::after {
    content: '';
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(90deg, #5c5391 0%, #5a96ab 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(92, 83, 145, 0.22), 0 0 6px rgba(90, 150, 171, 0.25);
    z-index: 1;
}

.tp-intro-item::before {
    top: 6px;
}

.tp-intro-item::after {
    top: calc(100% - 6px);
    box-shadow: none;
}

.tp-intro-item b {
    color: #333;
}

/* Benefits slider */
.tp-benefits {
    background-color: #e8eef8;
    padding: 80px 0;
}

.tp-section-title {
    text-align: center;
    color: #1e244f;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.tp-slider {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 16px;
}

.tp-slider-viewport {
    overflow: hidden;
    padding: 40px 16px 26px;
}

.tp-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
    margin: 0 -24px;
}

.tp-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    padding: 0 24px;
}

.tp-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 26px 28px;
    border: 1px solid rgba(31, 41, 55, 0.12);
    box-shadow: 0 10px 16px rgba(31, 41, 55, 0.18);
}

.tp-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 14px;
    font-weight: 700;
    padding-left: 16px;
}

.tp-card-divider {
    border: 1px solid #e5e7eb;
    margin: 1rem 0;
}

.tp-card ul {
    margin: 0;
    padding-left: 16px;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.tp-card ul li {
    margin-bottom: 10px;
}

.tp-card ul li::marker {
    color: #333;
}

.tp-card .fa-info-circle {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, rgba(44, 64, 72, 1) 0%, rgba(44, 64, 72, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 4rem;
    line-height: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-slider-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.tp-slider-btn:hover {
    color: #1e244f;
}

.tp-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Inspiration banner */
.tp-cta {
    position: relative;
    padding: 160px 0;
    background: #e8e0da;
    background-size: cover;
    background-position: center;
}

#rggl-cta {
    background-image: url('images/background/top-product-below-gano.jpg');
}

#coffee-cta {
    background-image: url('images/background/top-product-below-coffee.jpg');
}

#spirulina-cta {
    background-image: url('images/background/top-product-below-spirulina.jpg');
}

#cocozhi-cta {
    background-image: url('images/background/top-product-below-cocozhi.jpg');
}

.tp-cta-content {
    position: relative;
    text-align: center;
    max-width: 1000px;
}

.tp-cta h2 {
    margin-bottom: 2rem;
    font-size: 2.25rem;
    color: #2c4048;
}

.tp-cta p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 1.2rem;
}

/* Suggested products */
.tp-products {
    padding: 80px 0;
    background: #fff;
}

.tp-products-title {
    text-align: center;
    font-size: 2.25rem;
    color: #2c4048;
    margin-bottom: 2rem;
}

.tp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tp-product-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 12px rgba(31, 41, 55, 0.08);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.tp-product-card:hover {
    background: #f3f4f6;
    box-shadow: 0 8px 16px rgba(31, 41, 55, 0.12);
}

.tp-product-card img {
    width: 100%;
    height: auto;
    display: block;
    margin: 6px auto 2px;
}

.tp-product-card h3 {
    font-size: 1.2rem;
    margin: 2px 0 0;
    color: #333;
}

.tp-product-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    background: #f3f4f6;
}

.tp-badge {
    position: absolute;
    top: -12px;
    left: 6px;
    width: 80px;
    height: 80px;
    background: url('images/Best-Sellers-Big-icon.png') center/contain no-repeat;
    color: transparent;
    font-size: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-indent: -9999px;
}

.tp-product-featured .tp-badge {
    width: 100px;
    height: 100px;
    top: -15px;
}

.tp-buy-btn {
    position: absolute;
    right: 22px;
    bottom: 24px;
    background: #ea580c;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.tp-buy-btn:hover {
    background: #c44030;
}

/* Responsive Design */

/* Large Desktop - 1200px and below */
@media (max-width: 1200px) {
    .tp-intro {
        padding: 70px 0;
    }

    .tp-benefits,
    .tp-products {
        padding: 70px 0;
    }

    .tp-intro-grid {
        gap: 3rem;
    }

    .tp-section-title,
    .tp-products-title,
    .tp-cta h2 {
        font-size: 2rem;
    }
}

/* Desktop - 992px and below */
@media (max-width: 992px) {
    .tp-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .tp-intro {
        padding: 60px 0;
    }

    .tp-intro-content h2 {
        font-size: 2rem;
    }

    .tp-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp-cta {
        padding: 120px 0;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .tp-container {
        padding: 0 18px;
    }

    .hero-banner {
        height: 70vh;
    }

    .tp-intro {
        padding: 50px 0;
    }

    .tp-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .tp-intro-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .tp-slide {
        grid-template-columns: 1fr;
    }

    .tp-cta {
        padding: 100px 0;
    }

    .tp-cta p {
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .tp-intro-content h2 {
        font-size: 1.8rem;
    }

    .tp-section-title,
    .tp-products-title,
    .tp-cta h2 {
        font-size: 1.8rem;
    }

    .tp-intro-item {
        font-size: 1.05rem;
    }

    .tp-products-grid {
        gap: 16px;
    }
}

/* Mobile Large - 576px and below */
@media (max-width: 576px) {
    .tp-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .tp-slider {
        grid-template-columns: 32px 1fr 32px;
    }

    .tp-cta {
        padding: 90px 0;
    }

    .tp-buy-btn {
        position: static;
        margin: 14px auto 0;
        display: inline-block;
    }
}

/* Mobile Small - 480px and below */
@media (max-width: 480px) {
    .tp-container {
        padding: 0 12px;
    }

    .hero-banner {
        height: 60vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .tp-intro {
        padding: 40px 0;
    }

    .tp-intro-content h2 {
        font-size: 1.6rem;
    }

    .tp-intro-item {
        font-size: 1rem;
        padding-left: 28px;
    }

    .tp-intro-item::before,
    .tp-intro-item::after {
        width: 12px;
        height: 12px;
    }

    .tp-section-title,
    .tp-products-title,
    .tp-cta h2 {
        font-size: 1.6rem;
    }

    .tp-cta {
        padding: 80px 0;
    }

    .tp-cta p {
        font-size: 1rem;
    }

    .tp-product-card {
        padding: 18px 16px;
    }
}