:root {
    --pastel-yellow: #fdf5c9;
    --pastel-orange: #ffdab9;
    --pastel-green: #dcedc1;
    --soft-white: #faf9f6;
    --text-dark: #5c4d42;
    --text-light: #8a796c;
    --accent-orange: #ffb38a;
    --accent-yellow: #fce270;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

body {
    background-color: var(--soft-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header & Nav */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--pastel-yellow);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-orange);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: var(--accent-orange);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--pastel-orange) 100%);
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-orange);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 179, 138, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 179, 138, 0.6);
}

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

.circle-bg {
    width: 350px;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.drink-mockup {
    font-size: 150px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Products Section */
.products {
    padding: 80px 10%;
    text-align: center;
    background-color: var(--soft-white);
}

.products h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--accent-orange);
}

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

.product-card {
    background-color: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--pastel-yellow);
}

.card-img {
    font-size: 80px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.add-to-cart {
    background-color: var(--pastel-green);
    color: var(--text-dark);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #c5e39d;
}

/* About Section */
.about {
    background-color: var(--pastel-green);
    padding: 80px 10%;
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about p {
    font-size: 18px;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    margin: 10px 0;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    .hero-image {
        margin-top: 50px;
    }
}
