/*
Theme Name: Plenteous Pearl Theme
Theme URI: http://plenteouspearl.com
Author: Pro Developer
Description: Corporate Agro-Allied Ecommerce Theme.
Version: 2.0
Text Domain: agro-theme
*/



/* =========================================
   HEADER & TOP BAR STYLES
   ========================================= */

/* Variables */
:root {
    --primary-green: #14591D;   /* Deep Corporate Green */
    --accent-gold: #C5A059;     /* Pearl Gold */
    --white: #ffffff;
    --text-dark: #222222;
    --light-bg: #F9F9F9;
}

/* Base Reset for Header */
body { margin: 0; font-family: 'Roboto', sans-serif; background: var(--light-bg); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.flex-row { display: flex; justify-content: space-between; }
.align-center { align-items: center; }
a { text-decoration: none; transition: 0.3s; }

/* 1. Top Bar (Dark Strip) */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    font-weight: 500;
}
.contact-info span { margin-right: 15px; opacity: 0.9; }
.top-links a { color: var(--accent-gold); }
.top-links a:hover { color: var(--white); }

/* 2. Main Header Container */
.site-header {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Subtle corporate shadow */
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

/* 3. Corporate Logo Typography */
.logo-area { flex: 1; }
.text-logo {
    font-family: 'Playfair Display', serif; /* Serif for Authority */
    font-size: 1.6rem;
    line-height: 1.1;
    color: var(--primary-green);
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
}
.group-text {
    font-size: 0.9rem;
    letter-spacing: 3px; /* Spaced out for premium look */
    color: var(--accent-gold);
    display: block;
    margin-top: 2px;
}

/* 4. Navigation Menu */
.main-navigation { flex: 2; }
.nav-links { display: flex; justify-content: flex-end; gap: 30px; list-style: none; }
.nav-links li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.nav-links li a:hover { color: var(--primary-green); border-bottom: 2px solid var(--accent-gold); }

/* 5. Header Actions (Cart & Login) */
.header-actions { display: flex; align-items: center; gap: 20px; margin-left: 30px; }

.cart-btn { position: relative; font-size: 1.2rem; color: var(--text-dark); }
.cart-count {
    position: absolute;
    top: -8px; right: -8px;
    background: var(--primary-green);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
}

.btn-login {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}
.btn-login:hover { background: var(--primary-green); color: var(--white); }

/* ========================================= */




:root {
    --primary-green: #14591D;  /* Deep Corporate Green */
    --secondary-green: #1E824C;
    --accent-gold: #C5A059;    /* Pearl/Gold Accent */
    --light-bg: #F9F9F9;
    --text-dark: #222222;
    --white: #ffffff;
    --border-color: #e5e5e5;
}

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

body {
    font-family: 'Roboto', sans-serif; /* Clean corporate font */
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.flex-row { display: flex; justify-content: space-between; }
.align-center { align-items: center; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* TOP BAR */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}
.contact-info span { margin-right: 15px; }
.top-links a { color: var(--accent-gold); }

/* MAIN HEADER */
.site-header {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* LOGO STYLING */
.logo-area { flex: 1; }
.text-logo {
    font-family: 'Playfair Display', serif; /* Elegant font */
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--primary-green);
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
}
.group-text {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: block;
}
.img-logo { max-height: 60px; width: auto; }

/* NAVIGATION */
.main-navigation { flex: 2; text-align: right; margin-right: 30px; }
.nav-links { display: flex; justify-content: flex-end; gap: 25px; }
.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.nav-links li a:hover { color: var(--primary-green); }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 15px; }

.cart-btn {
    position: relative;
    color: var(--primary-green);
    font-size: 1.2rem;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-login {
    border: 1px solid var(--primary-green);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--primary-green);
}
.btn-login:hover { background: var(--primary-green); color: white; }

/* RE-APPLY GRID & HERO STYLES FROM PREVIOUS STEP HERE */
/* (Keep the previous Hero and Grid CSS below this line...) */
.hero-section {
    background: linear-gradient(rgba(20, 89, 29, 0.8), rgba(20, 89, 29, 0.8)), url('https://source.unsplash.com/1600x900/?farm,agriculture');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 6rem 1rem;
}
/* ... rest of previous CSS ... */