/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:       #1a4a2e;
    --green-mid:   #25643d;
    --green-light: #e8f0eb;
    --gold:        #c9a050;
    --gold-light:  #e8c97a;
    --gold-pale:   #f7f0de;
    --dark:        #141414;
    --gray:        #5a5a5a;
    --light:       #f8f6f1;
    --white:       #ffffff;
    --border:      #ddd8cc;
    --shadow:      0 4px 24px rgba(0,0,0,.10);
    --radius:      12px;
    --transition:  .3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    font-size: 15px;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 80px 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover  { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,74,46,.3); }
.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover  { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-light     { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-light:hover    { background: var(--gold-pale); color: var(--green); transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .02em;
}

.navbar-menu { display: flex; gap: 36px; }
.navbar-menu a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gray);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}
.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--green); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { width: 100%; }

.navbar-icons { display: flex; gap: 18px; }
.icon-link {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}
.icon-link:hover { background: var(--green-light); color: var(--green); }
.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--green) 0%, #0f3320 100%);
    padding: 110px 0 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,160,80,.15) 0%, transparent 65%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(201,160,80,.10) 0%, transparent 65%);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-title {
    font-size: clamp(38px, 5vw, 66px);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.15;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
}
.hero-divider {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 20px auto;
    opacity: .7;
}
.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--dark);
    margin-bottom: 12px;
    text-align: center;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px; height: 2px;
    background: var(--gold);
    margin: 14px auto 0;
}
.section-subtitle {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
    margin-bottom: 48px;
}

/* ===== FEATURED COLLECTIONS ===== */
.featured-collections { background: var(--white); }
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.collection-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.collection-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .5s ease;
}
.collection-card:hover .collection-image { transform: scale(1.04); }
.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,35,18,.75) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
}
.collection-overlay h3 { font-size: 21px; margin-bottom: 4px; }
.collection-overlay p  { font-size: 13px; color: var(--gold-light); }

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--light); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-content .section-title { text-align: left; }
.about-content .section-title::after { margin-left: 0; }
.about-content > p { color: var(--gray); margin-bottom: 24px; line-height: 1.85; }
.feature-list { margin-bottom: 32px; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    color: var(--dark);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i { color: var(--gold); font-size: 15px; }
.about-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--green); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title::after { background: var(--gold); }
.testimonials .section-subtitle { color: rgba(255,255,255,.65); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(201,160,80,.25);
    transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.testimonial-content i { font-size: 22px; color: var(--gold); margin-bottom: 14px; display: block; }
.testimonial-content p { color: rgba(255,255,255,.85); font-style: italic; line-height: 1.85; margin-bottom: 20px; }
.testimonial-author h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-author span { font-size: 12px; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gold-pale);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid var(--gold);
}
.cta-content h2 { font-size: clamp(28px, 3.5vw, 40px); color: var(--green); margin-bottom: 16px; }
.cta-content p  { color: var(--gray); font-size: 16px; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #0e2c1c; color: #a8b8ad; padding: 64px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201,160,80,.2);
}
.footer-column h3 { font-size: 20px; color: var(--gold); margin-bottom: 16px; }
.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
}
.footer-column p  { font-size: 14px; line-height: 1.85; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a { font-size: 14px; color: #a8b8ad; transition: color var(--transition); }
.footer-column ul a:hover { color: var(--gold); }
.footer-column .fas, .footer-column .fa { margin-right: 8px; color: var(--gold); }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.newsletter-form input {
    padding: 11px 16px;
    border-radius: 4px;
    border: 1px solid rgba(201,160,80,.3);
    background: rgba(255,255,255,.06);
    color: var(--white);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: #6a7a6f; }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
    padding: 11px 20px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); color: var(--dark); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #5a6a5f;
}

/* ===== SHOP PAGE ===== */
.shop-header { background: var(--green); padding: 60px 0 50px; }
.shop-header .section-title { color: var(--white); }
.shop-header .section-title::after { background: var(--gold); }
.shop-header .section-subtitle { color: rgba(255,255,255,.65); margin-bottom: 0; }

.shop-filters { padding: 0 0 10px; }
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.filter-categories { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.sort-select {
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.products-section { padding-top: 40px; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 52px;
}
.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.07); }
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,35,18,.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 18px; }
.product-title { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 6px; color: var(--dark); }
.product-description { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.price { font-size: 17px; font-weight: 600; color: var(--green); }
.original-price { font-size: 13px; color: #bbb; text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 3px; font-size: 12px; color: #ddd; }
.product-rating .filled { color: var(--gold); }
.product-rating span { color: var(--gray); margin-left: 5px; }

.pagination { display: flex; justify-content: center; gap: 8px; }
.page-link {
    min-width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--gray);
    transition: var(--transition);
    padding: 0 14px;
}
.page-link:hover, .page-link.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.features-section { background: var(--light); border-top: 1px solid var(--border); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}
.feature-item i { font-size: 34px; color: var(--gold); margin-bottom: 14px; display: block; }
.feature-item h3 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 6px; }
.feature-item p  { font-size: 13px; color: var(--gray); }

/* ===== ABOUT PAGE ===== */
.about-header { background: var(--green); padding: 60px 0 50px; }
.about-header .section-title { color: var(--white); }
.about-header .section-title::after { background: var(--gold); }
.about-header .section-subtitle { color: rgba(255,255,255,.65); margin-bottom: 0; }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.story-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-content h2 { font-size: 32px; margin-bottom: 20px; color: var(--green); }
.story-content p  { color: var(--gray); line-height: 1.9; margin-bottom: 16px; }

.values-section { background: var(--light); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card i    { font-size: 34px; color: var(--gold); margin-bottom: 16px; display: block; }
.value-card h3   { font-size: 20px; color: var(--green); margin-bottom: 10px; }
.value-card p    { font-size: 14px; color: var(--gray); line-height: 1.75; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}
.team-member { text-align: center; }
.team-member img {
    width: 160px; height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
    transition: border-color var(--transition);
}
.team-member:hover img { border-color: var(--green); }
.team-member h3 { font-size: 18px; color: var(--dark); margin-bottom: 4px; }
.team-member p  { font-size: 13px; color: var(--gold); letter-spacing: .03em; }

/* ===== CONTACT PAGE ===== */
.contact-header { background: var(--green); padding: 60px 0 50px; }
.contact-header .section-title { color: var(--white); }
.contact-header .section-title::after { background: var(--gold); }
.contact-header .section-subtitle { color: rgba(255,255,255,.65); margin-bottom: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
}
.contact-info h2, .contact-form h2 { font-size: 28px; color: var(--green); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item > i {
    width: 44px; height: 44px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-item h3  { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-item p   { font-size: 13px; color: var(--gray); line-height: 1.75; }

.social-links h3   { font-size: 16px; color: var(--green); margin-bottom: 14px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 40px; height: 40px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }

.message-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--gray); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,74,46,.08); }
.form-group textarea { resize: vertical; min-height: 130px; }

.map-section { background: var(--light); }
.map-placeholder {
    height: 280px;
    background: linear-gradient(135deg, var(--green-light) 0%, var(--gold-pale) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gold);
}
.map-content { text-align: center; }
.map-content i    { font-size: 48px; color: var(--green); margin-bottom: 16px; display: block; }
.map-content h3   { font-size: 22px; color: var(--green); margin-bottom: 10px; }
.map-content p    { font-size: 14px; color: var(--gray); margin-bottom: 20px; }

/* ===== SEARCH BAR ===== */
.search-bar {
    border-top: 1px solid var(--border);
    padding: 14px 0;
    background: var(--white);
    animation: slideDown .2s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}
.search-form input {
    flex: 1;
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}
.search-form input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,74,46,.08); }
.search-form button {
    width: 42px; height: 42px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.search-form button[type=submit] { background: var(--green); color: #fff; }
.search-form button[type=submit]:hover { background: var(--green-mid); }
.search-form button#searchClose { background: var(--light); color: var(--gray); border: 1px solid var(--border); }
.search-form button#searchClose:hover { background: var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .navbar-menu { gap: 22px; }
}

@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .collections-grid { grid-template-columns: 1fr 1fr; }
    .hero-section { padding: 72px 0 88px; }
    .filter-bar { flex-direction: column; align-items: flex-start; }

    /* Mobile menu */
    .hamburger { display: flex !important; }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 74px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        z-index: 99;
        gap: 0;
    }
    .navbar-menu.open { display: flex; }
    .navbar-menu a {
        padding: 13px 0;
        font-size: 15px;
        border-bottom: 1px solid var(--border);
    }
    .navbar-menu a:last-child { border-bottom: none; }
    .navbar { position: sticky; top: 0; z-index: 100; }
}
