/* =========================================
   DNH LUXURY THEME
   Premium Cream + Green + Gold System
========================================= */

/* ==============================
   ROOT VARIABLES
============================== */

:root {

    /* Brand Greens */
    --primary-green: #01780F;
    --deep-green: #015a0b;
    --light-green: #0a9e1d;

    /* Luxury Backgrounds */
    --luxury-cream: #f5f1e8;
    --luxury-soft: #f9f6f0;
    --luxury-white: #ffffff;

    /* Accent */
    --luxury-gold: #c6a34d;

    /* Text */
    --text-dark: #2c2c2c;
    --text-muted: #666666;

    /* Shadow */
    --soft-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

}

/* ==============================
   GLOBAL
============================== */

body {
    background-color: var(--luxury-cream);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Smooth transitions everywhere */
* {
    transition: 0.3s ease;
}

/* ==============================
   SECTION SYSTEM
============================== */

.section-white {
    background: var(--luxury-white);
    padding: 80px 0;
}

.section-soft {
    background: var(--luxury-soft);
    padding: 80px 0;
}

.section-cream {
    background: var(--luxury-cream);
    padding: 80px 0;
}

/* ==============================
   HEADER
============================== */

.main-header {
    background: linear-gradient(
        90deg,
        var(--deep-green),
        var(--primary-green)
    );
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ==============================
   HEADINGS
============================== */

.section-heading h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: var(--luxury-gold);
    margin: 10px auto 0;
}

/* ==============================
   CARDS (Products / Testimonials / Info)
============================== */

.product-card,
.testimonial-card,
.info-card {
    background: var(--luxury-white);
    border-radius: 16px;
    box-shadow: var(--soft-shadow);
    padding: 25px;
}

.product-card:hover,
.testimonial-card:hover,
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

/* ==============================
   PRODUCT IMAGE POLISH
============================== */

.product-card img {
    border-radius: 14px;
    object-fit: cover;
}

/* ==============================
   BUTTON SYSTEM
============================== */

.btn,
.btn-cart,
.btn-buynow,
button {
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 500;
    cursor: pointer;
}

/* Primary Green */
.btn-cart {
    background: var(--primary-green);
    color: #fff;
    border: none;
}

.btn-cart:hover {
    background: var(--deep-green);
}

/* Gold Accent */
.btn-buynow {
    background: var(--luxury-gold);
    color: #fff;
    border: none;
}

.btn-buynow:hover {
    opacity: 0.9;
}

/* ==============================
   STAR RATING
============================== */

.stars {
    color: var(--luxury-gold);
    margin-top: 10px;
}

/* ==============================
   TESTIMONIAL SECTION
============================== */

.testimonials-section {
    background: var(--luxury-soft);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* ==============================
   FORMS (Contact Page)
============================== */

input,
textarea,
select {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-green);
    outline: none;
}

/* ==============================
   FOOTER
============================== */

.footer {
    background: var(--deep-green);
    color: #ffffff;
    padding: 60px 0;
}

.footer a {
    color: #dddddd;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

/* ==============================
   MOBILE OPTIMIZATION
============================== */

@media (max-width: 768px) {

    .section-white,
    .section-soft,
    .section-cream {
        padding: 60px 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .product-card,
    .testimonial-card,
    .info-card {
        padding: 20px;
    }

}
