:root {
    --sloth-green: #7CB342;
    --sloth-brown: #8D6E63;
    --sloth-dark: #5D4037;
    --bg: #FFF8E1;
    --card-bg: #FFFFFF;
    --accent: #FFAB00;
}

body {
    font-family: 'Comic Neue', cursive, sans-serif;
    background-color: var(--bg);
    margin: 0;
    padding: 0;
    color: var(--sloth-dark);
    line-height: 1.6;
}

.hero {
    text-align: center;
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg, var(--sloth-green) 0%, var(--bg) 100%);
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.sloth-animation {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    animation: slowSway 4s ease-in-out infinite;
    transform-origin: top center;
    mix-blend-mode: multiply;
}

@keyframes slowSway {

    0%,
    100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

h1 {
    font-size: 3.5rem;
    margin: 1rem 0 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 0 var(--sloth-dark);
}

.tagline {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sloth-dark);
    opacity: 0.9;
    margin-top: 0;
}

.products {
    max-width: 1000px;
    margin: -3rem auto 0;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 10;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--sloth-brown);
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--sloth-dark);
    box-shadow: 0 10px 25px rgba(141, 110, 99, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    border: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(141, 110, 99, 0.2);
    border-color: var(--sloth-green);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
}

.product-card p {
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    background-color: var(--sloth-green);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

.product-card:hover .btn {
    background-color: var(--sloth-brown);
}

.btn-soon {
    background-color: var(--sloth-brown);
    opacity: 0.7;
    cursor: default;
}

.coming-soon {
    cursor: default;
}

.coming-soon:hover {
    transform: none;
    border-color: transparent;
}

footer {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--sloth-dark);
    color: #fff;
    margin-top: auto;
}

.footer-content a {
    color: var(--sloth-green);
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.sub-footer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .product-grid {
        gap: 1.5rem;
    }
}