
:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;
    --bg-light: #fdfbf7;
    --text-dark: #333;
    --text-light: #7f8c8d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero */
.hero-area {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 450px;
}

.btn-explore {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-explore:hover {
    background-color: #34495e;
}

.hero-img-container {
    flex: 1;
}

.hero-img-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Products */
.product-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-details {
    padding: 1.5rem;
}

.card-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Feature Split */
.feature-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
    background-color: #fff;
    margin: 2rem -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.copyright {
    margin-top: 1.5rem;
    color: #bdc3c7;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero-area, .feature-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 2rem;
    }
    .main-header {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-menu a {
        margin: 0 10px;
    }
}
