:root {
    --cream: #fffaf0;
    --ivory: #f6efe3;
    --green: #1f5c35;
    --dark-green: #17472a;
    --gold: #c8a24a;
    --text: #333333;
    --soft-text: #555555;
    --white: #ffffff;
}

/* GLOBAL */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--ivory);
    color: var(--text);
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 70px;
    background-color: var(--cream);

    position: sticky;
    top: 0;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 90px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--green);
    font-weight: bold;
}

nav a.active {
    color: var(--gold);
}

/* HERO */

.hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 60px 70px;
    background-color: var(--ivory);
}

.hero h2 {
    font-size: 48px;
    color: var(--green);
    max-width: 650px;
}

.hero p {
    font-size: 18px;
    max-width: 620px;
    line-height: 1.7;
    color: var(--text);
}

/* GENERAL SECTION */

.section {
    padding: 70px;
    background-color: var(--cream);
}

.section h2 {
    color: var(--green);
    font-size: 34px;
}

/* PAGE HERO */

.page-hero {
    padding: 90px 70px;
    background-color: var(--ivory);
    text-align: center;
}

.page-hero h2 {
    color: var(--green);
    font-size: 46px;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

/* PRODUCT GRID */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-card h3 {
    color: var(--green);
}

.product-card p {
    line-height: 1.7;
    color: var(--soft-text);
}

.subtitle {
    font-size: 18px;
    color: var(--gold);
    font-weight: bold;
}

/* STEPS */

.steps {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.step {
    background: white;
    padding: 25px;
    border-left: 5px solid var(--gold);
    border-radius: 10px;
    flex: 1;
}

/* CONTENT */

.content-block {
    max-width: 850px;
    margin-bottom: 50px;
}

.content-block h2 {
    color: var(--green);
    font-size: 34px;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--soft-text);
}

/* VALUES */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    color: var(--green);
}

/* SHOP GRID */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.shop-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.shop-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--ivory);
}

.shop-content {
    padding: 24px;
}

.shop-content h2 {
    color: var(--green);
    font-size: 28px;
    margin-bottom: 8px;
}

.shop-content p {
    line-height: 1.7;
    color: var(--soft-text);
}

.product-step {
    color: var(--gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-subtitle {
    font-weight: bold;
    color: var(--text);
}

/* USE PAGE */

.use-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.use-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 28px;
    border-radius: 18px;
    border-left: 6px solid var(--gold);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.use-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
}

.system-note {
    margin-top: 45px;
    background-color: var(--ivory);
    padding: 35px;
    border-radius: 18px;
    text-align: center;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

/* BUTTONS */

button,
.whatsapp-button {
    transition: all 0.3s ease;
}

button {
    padding: 12px 18px;
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

button:hover,
.whatsapp-button:hover {
    transform: translateY(-2px);
    background-color: var(--dark-green);
}

.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    background-color: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

/* FOOTER */

.footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 70px;
    background-color: var(--green);
    color: var(--cream);
}

.footer h2 {
    color: var(--cream);
}

/* LOGIN */

.login-container {
    max-width: 420px;
    margin: 100px auto;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.login-container input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/* ADMIN */

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.form-section {
    background: var(--cream);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(200, 162, 74, 0.25);
}

.form-section h2 {
    color: var(--green);
}

.form-section label {
    display: block;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.form-section input,
.form-section textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
}

.form-section textarea {
    min-height: 120px;
    resize: vertical;
}

.save-product-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

.admin-product-card {
    list-style: none;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 850px) {

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
        font-size: 14px;
    }

    .logo-image {
        height: 70px;
    }

    .hero,
    .section,
    .page-hero {
        padding: 45px 25px;
        text-align: center;
    }

    .product-grid,
    .values-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .use-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

}

@media (max-width: 600px) {

    .shop-grid {
        grid-template-columns: 1fr;
    }

}
.secondary-link {
    display: inline-block;
    margin-top: 14px;
    margin-left: 12px;
    color: var(--green);
    font-weight: bold;
    text-decoration: none;
}

.secondary-link:hover {
    color: var(--gold);
}

.shop-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.shop-content {
    padding: 18px;
}

.product-price {
    margin-top: 10px;
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-actions a {
    flex: 1;
    text-align: center;
}

.product-actions .secondary-link {
    margin-top: 20px;
    margin-left: 0;
}
.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 22px;
    background-color: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}
.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 24px;
    background-color: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}
/* ==========================================
   PREMIUM PRODUCT DETAIL PAGE
========================================== */

.product-detail-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 80px auto;
    padding: 40px;
}

.gallery-column {
    width: 100%;
}

.main-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    background-color: var(--ivory);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.thumbnail-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.thumb-image {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: var(--ivory);
}

.thumb-image:hover {
    border-color: var(--green);
}

.product-info-column h1 {
    color: var(--green);
    font-size: 46px;
    margin-bottom: 10px;
}

.product-size {
    font-weight: bold;
    color: var(--soft-text);
}

.product-detail-price {
    color: var(--gold);
    font-size: 30px;
}

.product-description {
    line-height: 1.8;
    color: var(--soft-text);
    font-size: 17px;
}

.benefits-box {
    margin-top: 28px;
    padding: 24px;
    background-color: var(--cream);
    border-left: 5px solid var(--gold);
    border-radius: 14px;
}

.benefits-box h2 {
    color: var(--green);
    margin-top: 0;
}

.benefits-box ul {
    padding-left: 20px;
}

.benefits-box li {
    margin-bottom: 10px;
    color: var(--soft-text);
}

.product-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 100px;
    padding: 40px;
}

.product-extra div {
    background-color: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.product-extra h2 {
    color: var(--green);
}

.product-extra p {
    line-height: 1.8;
    color: var(--soft-text);
}


/* ==========================================
   PRODUCT DETAIL RESPONSIVE
========================================== */

@media (max-width: 900px) {
    .product-detail-page {
        grid-template-columns: 1fr;
        padding: 25px;
        margin: 40px auto;
    }

    .product-info-column h1 {
        font-size: 36px;
    }

    .product-extra {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}

/* ==========================================
   PRODUCT BADGES
========================================== */

.shop-image-wrap {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--green);
    color: var(--cream);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}


/* ==========================================
   RELATED PRODUCTS
========================================== */

.related-section {
    background-color: var(--ivory);
}

.related-section .product-card {
    text-align: left;
}


/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials-section {
    background-color: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.testimonial-card p {
    line-height: 1.8;
    color: var(--soft-text);
}

.testimonial-card h3 {
    color: var(--green);
    margin-bottom: 0;
}


/* ==========================================
   ADMIN IMAGE PREVIEW FOUNDATION
========================================== */

.image-preview {
    max-width: 160px;
    display: none;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid rgba(200, 162, 74, 0.4);
}


/* ==========================================
   RESPONSIVE TESTIMONIALS
========================================== */

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}