* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #2d9596;
    --coral: #ff8c69;
    --yellow: #ffd93d;
    --cream: #fef9f3;
    --brown: #5c4a3a;
    --light-teal: #e8f4f4;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--cream);
    color: var(--brown);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: var(--cream);
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paw {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--light-teal) 0%, var(--cream) 100%);
}

.hero-content {
    max-width: 450px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--brown);
}

.hero p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--coral);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #ff7a52;
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.pet-circle {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--teal), #1d8586);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px rgba(45, 149, 150, 0.3);
}

.paw-print {
    font-size: 8rem;
    color: rgba(255,255,255,0.3);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 5%;
    background-color: var(--teal);
    color: white;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.icon {
    font-weight: bold;
}

/* Products Section */
.products-section {
    padding: 6rem 5%;
}

.products-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.product-image {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.treats { background: linear-gradient(135deg, var(--coral), #ff7a52); }
.shampoo { background: linear-gradient(135deg, var(--teal), #1d8586); }
.toy { background: linear-gradient(135deg, var(--yellow), #ffc933); }
.bed { background: linear-gradient(135deg, #9b8b7d, #7b6b5d); }

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.price {
    font-weight: 700;
    color: var(--teal);
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--light-teal);
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #666;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 15px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--coral);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.email-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.email-form button {
    padding: 1rem 2rem;
    background-color: var(--teal);
    color: white;
    border: none;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #1d8586;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--cream);
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
        border-radius: 15px;
    }
}
