/* ======================= PRODUKT GRID ======================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid .product {
    background: var(--card);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.product-grid .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    background-color: #f0f9ff;
}

.product-grid .product img {
    max-width: 200px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.product-grid .product h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a3d5c;
}

.product-grid .product .description {
    font-size: 14px;
    color: #444;
    margin: 8px 0;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.product-grid .product .price {
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 8px;
}

.product-grid .product .buy-now {
    text-decoration: none;
    background: #ff8c42;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s;
}

.product-grid .product .buy-now:hover {
    background: #e67635;
}

/* ======================= FEATURED PRODUKT ======================= */
.featured-product {
    margin: 30px auto 50px auto;
    max-width: 1200px;
}

.featured-product .product {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff9f3;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-product .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.featured-product .product img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.featured-product .product h3 {
    font-size: 24px;
    margin-bottom: 12px;
    text-align: center;
    color: #2f5d3b;
}

.featured-product .product .price {
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 12px;
}

.featured-product .product .buy-now {
    text-decoration: none;
    background: #ff6f61;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.featured-product .product .buy-now:hover {
    background: #e85b50;
}
