/* ── Reset & Base ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a84c;
    /* champagne gold accent */
    --gold2: #e2c47a;
    /* lighter gold hover */
    --forest: #0d1f0f;
    /* deep forest green dark */
    --darker: #090f0a;
    /* near-black green */
    --mid: #162b18;
    /* forest mid-tone */
    --warm: #1e3b22;
    /* warm green card bg */
    --ivory: #f4f0e6;
    /* warm ivory text */
    --muted: #a8b89a;
    /* muted sage */
    --white: #faf8f2;
    /* warm white */
    --card-bg: #111e12;
    /* card background */
    --radius: 14px;
    --shadow: 0 8px 36px rgba(0, 0, 0, .6);
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--ivory);
    line-height: 1.7;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    color: var(--gold2);
}

img {
    display: block;
    max-width: 100%;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(9, 15, 10, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201, 168, 76, .25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 86px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .5px;
    white-space: nowrap;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--ivory);
    font-size: .92rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
    transition: color .2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: .3s;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, var(--darker) 0%, var(--mid) 50%, #1a3d1e 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201, 168, 76, .08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(201, 168, 76, .05) 0%, transparent 60%);
}

/* Subtle grain overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='rgba(255,255,255,.02)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-logo {
    max-height: 90px;
    width: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, .35));
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--gold);
    text-shadow: 0 0 48px rgba(201, 168, 76, .4);
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-divider {
    width: 80px;
    height: 2px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--muted);
    margin-bottom: 36px;
    letter-spacing: .5px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--forest);
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-body);
    border-radius: 3px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 22px rgba(201, 168, 76, .35);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, .55);
    color: var(--forest);
}

/* ── Section titles ────────────────────────────────────────── */
.section-title {
    text-align: center;
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: var(--gold);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: .95rem;
    letter-spacing: .5px;
    margin-bottom: 48px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ── Features ──────────────────────────────────────────────── */
.features {
    padding: 100px 24px;
    background: var(--forest);
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform .25s, border-color .25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, .5);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-family: var(--font-head);
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.feature-card p {
    color: var(--muted);
    font-size: .93rem;
}

/* ── Products grid ─────────────────────────────────────────── */
.products {
    padding: 100px 24px;
    background: var(--darker);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 168, 76, .45);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--warm);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--ivory);
    margin-bottom: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn {
    display: inline-block;
    padding: 9px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--forest);
    font-size: .85rem;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(201, 168, 76, .45);
    color: var(--forest);
}

/* ── About ─────────────────────────────────────────────────── */
.about {
    padding: 100px 24px;
    background: var(--forest);
}

.about-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-content p+p {
    margin-top: 20px;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials {
    padding: 100px 24px;
    background: var(--darker);
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
}

.testimonial-card::before {

    font-family: var(--font-head);
    font-size: 5rem;
    color: rgba(201, 168, 76, .15);
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    color: var(--muted);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-head);
}

/* ── CTA ───────────────────────────────────────────────────── */
.cta {
    padding: 100px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--mid) 0%, #1a3d1e 100%);
}

.cta h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: var(--gold);
    margin-bottom: 14px;
}

.cta p {
    color: var(--muted);
    margin-bottom: 30px;
}

/* ── Contact page ──────────────────────────────────────────── */
.contact-section {
    padding: 120px 24px 100px;
    background: var(--forest);
    min-height: 80vh;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h3 {
    font-family: var(--font-head);
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 4px;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: .95rem;
    margin-bottom: 14px;
    outline: none;
    transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    padding: 12px 34px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--forest);
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-body);
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 168, 76, .4);
}

/* ── About page ────────────────────────────────────────────── */
.about-page {
    padding: 120px 24px 100px;
    background: var(--forest);
    min-height: 80vh;
}

.about-page .about-content {
    max-width: 860px;
    margin: 0 auto;
}

.about-page p {
    margin-bottom: 20px;
}

/* ── Categories page ───────────────────────────────────────── */
.categories-section {
    padding: 120px 24px 100px;
    background: var(--darker);
}

.cat-group {
    margin-bottom: 70px;
}

.cat-group h2 {
    font-family: var(--font-head);
    color: var(--gold);
    font-size: 1.7rem;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, .25);
}

/* ── Product detail page ───────────────────────────────────── */
.product-detail {
    padding: 110px 24px 80px;
    background: var(--darker);
    min-height: 80vh;
}

.product-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: start;
}

.product-main-img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 168, 76, .2);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--warm);
}

.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs img {
    width: 76px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid rgba(201, 168, 76, .2);
    transition: border-color .2s, transform .2s;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    border-color: var(--gold);
    transform: scale(1.05);
}

.product-meta h1 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.product-price {
    display: none; /* Price removed per business requirement */
}

.product-description {
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.85;
    margin-bottom: 26px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.features-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--ivory);
    font-size: .95rem;
    border-bottom: 1px solid rgba(201, 168, 76, .1);
}

.features-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: .6rem;
    top: 13px;
}

/* ── CTA Buttons on product page ───────────────────────────── */
.product-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--forest);
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-body);
    border-radius: 3px;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(201, 168, 76, .3);
    text-decoration: none;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 26px rgba(201, 168, 76, .5);
    color: var(--forest);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-body);
    border-radius: 3px;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .25);
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 26px rgba(37, 211, 102, .45);
    color: #fff;
    background: #1ebe5d;
}

.btn-whatsapp svg,
.btn-call svg {
    flex-shrink: 0;
}

.back-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 3px;
    font-size: .88rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.back-btn:hover {
    background: var(--gold);
    color: var(--forest);
}

/* ── Products catalogue page ───────────────────────────────── */
.catalogue-section {
    padding: 120px 24px 100px;
    background: var(--darker);
}

.catalogue-header {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.catalogue-header h1 {
    font-family: var(--font-head);
    color: var(--gold);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.search-bar {
    display: flex;
    gap: 10px;
}

.search-bar input {
    padding: 10px 20px;
    border-radius: 3px;
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, .25);
    color: var(--ivory);
    font-size: .93rem;
    outline: none;
    width: 240px;
    font-family: var(--font-body);
}

.search-bar input:focus {
    border-color: var(--gold);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--forest);
    border-top: 1px solid rgba(201, 168, 76, .2);
    padding: 60px 24px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;

    opacity: .85;
}

.footer-section h3 {
    font-family: var(--font-head);
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 8px;
    transition: color .2s;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: var(--muted);
    font-size: .85rem;
    border-top: 1px solid rgba(201, 168, 76, .12);
    margin-top: 40px;
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
    padding: 140px 24px 80px;
    text-align: center;
    background: linear-gradient(160deg, var(--darker) 0%, var(--mid) 60%, #1a3d1e 100%);
}

.page-hero h1 {
    font-family: var(--font-head);
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--muted);
    font-size: 1.05rem;
    letter-spacing: .5px;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto 28px;
    font-size: .88rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 6px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .product-detail-inner {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        background: rgba(9, 15, 10, .99);
        padding: 20px 24px 28px;
        gap: 18px;
        border-bottom: 1px solid rgba(201, 168, 76, .18);
    }

    .nav-menu.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .catalogue-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar input {
        width: 100%;
    }

    .product-cta-btns {
        flex-direction: column;
    }

    .btn-call,
    .btn-whatsapp {
        justify-content: center;
    }
}