html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #000;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.breadcrumb {
    font-size: 16px;
    color: #666;
    margin-top: 40px;
}

.breadcrumb a {
    color: #b91c1c;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #111;
    font-weight: 600;
}

.hero {
    background-color: #ffffff;
    position: relative;
    /* overflow: hidden; */
    color: #000;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
    flex: 1;
    /* padding-left: 2rem; */
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-text .strength {
    font-size: 1.5rem;
    font-weight: 500;
    color: #666;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.hero-text .tagline {
    font-size: 1rem;
    font-weight: 300;
    color: #888;
}

.hero-buttons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.slide-btn {
    display: inline-block;
    background-color: #f4b000 !important;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none !important;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 0;
    cursor: default;
}

.slide-btn:hover {
    background-color: #d99a00 !important;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.button {
    display: inline-block;
    background-color: #f7b400;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.button:hover {
    background-color: #e0a300;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
}

.product-overview {
    padding: 4rem 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.grid-item {
    background-color: #ffffff;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.grid-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.grid-item p {
    font-size: 1rem;
    color: #666;
}

.benefits-and-image {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0;
    align-items: center;
}

.benefits {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--secondary-color);
}

.benefits h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.benefits ul {
    list-style-type: none;
    padding-left: 0;
}

.benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    /* Green checkmark */
    font-weight: 700;
}

.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--secondary-color);
}

.intention {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
    border-top: 1px solid var(--secondary-color);
    font-size: 0.9rem;
    color: #888;
}

#backToTop {
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-size: 20px;
    background-color: #b91c1c;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 14px 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 300ms ease;
}

#backToTop.show {
    opacity: 1;
}

#backToTop:hover {
    background-color: #991b1b;
    transform: scale(1.1);
}

/* Extra mobile-friendly tweaks */
@media (max-width: 480px) {
    #backToTop {
        bottom: 15px;
        right: 15px;
        font-size: 18px;
        padding: 12px 14px;
    }
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
    }

    .hero-image {
        order: 2;
    }

    .hero-text {
        order: 1;
        text-align: left;
    }

    h2 {
        text-align: left;
    }

    .benefits-and-image {
        flex-direction: row;
        align-items: flex-start;
    }

    .benefits {
        flex: 1.5;
    }

    .product-image {
        flex: 1;
    }
}