/*
Theme Name: Plants Melb Pro
Author: AI Assistant
Description: Bản clone chuẩn màu sắc và bố cục plantsmelb.com
Version: 2.1
*/

:root {
    --primary-color: #2d3e2f; /* Màu xanh lá đậm chuẩn Plants Melb */
    --accent-color: #5d7a5d;
    --text-dark: #333333;
    --bg-light: #f9fbf9;
    --white: #ffffff;
}

body {
    font-family: 'Assistant', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin: 0;
}

/* Header & Nav */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}
.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1470058869958-2a77ead4459c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-main {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-main:hover {
    background-color: #1a261b;
    color: var(--white);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: none;
    transition: transform 0.3s;
    margin-bottom: 30px;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-title {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.price {
    color: var(--accent-color);
    font-weight: bold;
}