:root {
    --bg-color: #FAFAFA;
    /* Clean white/off-white */
    --card-bg: #FFFFFF;
    --text-main: #2D2D2D;
    --text-sub: #666666;
    --accent-pink: #FFD1DC;
    /* Soft pink */
    --accent-green: #B8D8BE;
    /* Matcha green */
    --primary-btn: #2D2D2D;
    /* High contrast black for buttons */
    --btn-text: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 480px;
    /* Keep it mobile-width constrained even on desktop */
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #fff0f3 0%, #e8f5e9 100%);
    /* Pink to Green gradient */
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

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

.tag {
    display: inline-block;
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #88B04B;
    /* Darker matcha for text */
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-main);
}

.hero p {
    font-size: 1rem;
    color: var(--text-sub);
    max-width: 90%;
    margin: 0 auto;
}

.hero-avatar {
    margin-top: 25px;
}

.hero-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(136, 176, 75, 0.2);
    object-fit: cover;
}

/* Product List */
.product-list {
    padding: 40px 0;
}

.product-list h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-card:active {
    transform: scale(0.98);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #F5F5F7;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-content {
    flex-grow: 1;
    margin-right: 10px;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.card-content p {
    font-size: 0.85rem;
    color: var(--text-sub);
}

.cta-button {
    display: inline-block;
    /* Added for <a> tags */
    text-decoration: none;
    /* Added for <a> tags */
    background: #88B04B;
    /* Matcha Green */
    color: var(--btn-text);
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    /* white-space: nowrap;  <-- Removed to allow wrapping */
    text-align: center;
    /* Center text if it wraps */
    transition: opacity 0.2s;
    animation: gentlePulse 2s infinite ease-in-out;
    max-width: 40%;
    /* Prevent it from taking over the whole card if text is huge */
}

.cta-button:hover {
    opacity: 0.9;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(136, 176, 75, 0.4);
    }

    100% {
        transform: scale(1);
    }
}

/* Matching specific accents per card essentially */
.product-card:nth-child(2) .icon-box {
    background: #FFF0F0;
}

/* Red tint */
.product-card:nth-child(3) .icon-box {
    background: #F0F7FF;
}

/* Blue tint */
.product-card:nth-child(4) .icon-box {
    background: #F2FFF4;
}

/* Green tint */
.product-card:nth-child(5) .icon-box {
    background: #FFF9F0;
}

/* Orange tint */

/* Footer */
footer {
    padding: 30px 0 60px;
    text-align: center;
    background: #F9F9F9;
    border-top: 1px solid #eee;
}

.trust-text {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.legal-links {
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-bottom: 10px;
}

.legal-links a {
    color: var(--text-sub);
    text-decoration: none;
}

.copyright {
    font-size: 0.75rem;
    color: #999;
}