@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ===========================
   Global Styles & Variables
   =========================== */

:root {
    --primary-color: #145a32;
    --secondary-color: #1f7a4d;
    --accent-color: #f9a825;
    --text-dark: #102a14;
    --text-muted: #546a59;
    --bg-light: #eff8f2;
    --bg-white: #ffffff;
    --surface: #f7fcf6;
    --border-color: rgba(20, 90, 50, 0.12);
    --shadow: 0 22px 60px rgba(17, 54, 30, 0.08);
    --soft-shadow: 0 12px 30px rgba(17, 54, 30, 0.08);
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
}

body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .navbar,
body.dark-mode .footer {
    background-color: #222;
}

body.dark-mode .card,
body.dark-mode .product-card {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navigation Bar
   =========================== */

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    display: block;
}

.header-contact .logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.header-contact .logo-phone {
    font-size: 0.95rem;
    color: #1b3f1e;
    margin-top: 0.15rem;
}

.header-contact {
    gap: 0.55rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icon {
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.nav-icon:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    color: white;
    padding: 100px 20px;
    background: radial-gradient(circle at top left, rgba(105, 215, 120, 0.24), transparent 28%), linear-gradient(135deg, #145a32, #1f7a4d);
    position: relative;
    overflow: hidden;
    animation: slideIn 0.8s ease-out;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.18rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 720px;
    color: rgba(255,255,255,0.95);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-with-image {
    background-image: linear-gradient(135deg, rgba(18, 79, 38, 0.92), rgba(35, 129, 58, 0.75)), url('https://images.unsplash.com/photo-1560185127-6d9c8ab5d7ad?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    position: relative;
}

.hero-with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 40, 19, 0.55);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    min-height: 60vh;
    position: relative;
    z-index: 1;
}

.hero-with-image .hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    text-align: left;
}

.hero-visual {
    min-height: 540px;
}

.hero-visual img {
    transition: transform 0.4s ease;
}

.hero-visual:hover img {
    transform: scale(1.03);
}

.hero-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.hero-visual img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.hero-visual-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #1f4f26;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
}

.hero-contact-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.94);
    padding: 1rem 1.2rem;
    border-radius: 20px;
    text-align: right;
    box-shadow: 0 18px 36px rgba(17, 54, 30, 0.14);
    border: 1px solid rgba(20, 90, 50, 0.12);
}

.hero-contact-badge p {
    margin: 0;
    line-height: 1.4;
    color: #154c2d;
    font-weight: 600;
}

.hero-contact-badge p:first-child {
    font-size: 1rem;
}

.hero-contact-badge p:last-child {
    font-size: 0.95rem;
    color: #0f3b22;
    margin-top: 0.25rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.18);
    padding: 1rem 1.3rem;
    border-radius: 16px;
    min-width: 150px;
    font-weight: 700;
    color: #104017;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.about-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 2.6rem;
    color: #1f4f26;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content ul li {
    margin-bottom: 0.9rem;
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-dark);
}

.about-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-cards {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-cards h2 {
    text-align: center;
    color: #1f5d2d;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.products-section {
    padding: 70px 20px;
    background-color: #eff8f2;
}

.products-header {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.products-header h1 {
    font-size: 2.9rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.products-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.products-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
    letter-spacing: 0.02em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.testimonial-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.testimonial-section h2 {
    text-align: center;
    color: #1f4f26;
    font-size: 2.6rem;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #f4f9f3;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.testimonial-card span {
    font-weight: 700;
    color: #1f4f26;
}

@media (max-width: 960px) {
    .hero-grid,
    .about-grid,
    .service-grid,
    .products-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 420px;
    }

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d7f3d4;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-with-image h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
}

.hero-with-image p {
    font-size: 1.1rem;
    max-width: 660px;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.btn-whatsapp,
.btn-call {
    padding: 14px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-call {
    background-color: #0747a6;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1ca851;
}

.btn-call:hover {
    background-color: #053c86;
}

.service-cards {
    padding: 60px 20px;
    background-color: #f7fbf6;
}

.service-cards h2 {
    text-align: center;
    color: #1f5d2d;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background-color: #e7f4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f5d2d;
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 0.9rem;
    color: #1f4f27;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

.btn-whatsapp:hover {
    background-color: #1ca851;
}

.btn-call:hover {
    background-color: #053c86;
}

.top-banner {
    background: linear-gradient(120deg, rgba(31, 137, 82, 0.12), rgba(242, 200, 51, 0.17));
    color: #185a25;
    text-align: center;
    padding: 1rem 20px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(20, 90, 50, 0.08);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(20, 90, 50, 0.08);
}

.nav-wrapper {
    padding: 1.2rem 0;
}

.logo {
    color: var(--primary-color);
    letter-spacing: 0.01em;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.btn-whatsapp,
.btn-call {
    padding: 14px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #20c855, #00a952);
    color: white;
    border: 1px solid #16a34a;
}

.btn-call {
    background: linear-gradient(135deg, #0d6efd, #3b82f6);
    color: white;
    border: 1px solid #1d4ed8;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(32, 200, 85, 0.35);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(59, 130, 246, 0.35);
}

.plant-highlights {
    padding: 50px 20px;
    background-color: #eef7ed;
}

.plant-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f5d2d;
    margin-bottom: 1.8rem;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.highlight-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), #f7fcf7);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--soft-shadow);
    text-align: center;
    border: 1px solid rgba(20, 90, 50, 0.1);
}

.highlight-card span {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #1f4f26;
    margin-top: 0.5rem;
}

.product-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

.products-section .image-note {
    margin-top: 1rem;
    background: #eef6fd;
    color: #0d4f9d;
    border-left: 4px solid #0d6efd;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

.gallery-item.gallery-item-admin {
    position: relative;
}

.gallery-item.gallery-item-admin button.btn-delete {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #d32f2f;
    border: 1px solid #d32f2f;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
}

.gallery-item.gallery-item-admin button.btn-delete:hover {
    background-color: #d32f2f;
    color: white;
}

.products-wrapper {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 2rem;
}

.sidebar {
    background: #f9fafb;
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
}

.sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1f4f26;
}

.sidebar label,
.sidebar select {
    display: block;
    width: 100%;
    margin-bottom: 0.9rem;
    color: #333;
}

.sidebar input[type="checkbox"] {
    margin-right: 0.6rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}

.product-card {
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff, #f8fdf6);
    box-shadow: 0 18px 45px rgba(20, 90, 50, 0.12);
    border: 1px solid rgba(20, 90, 50, 0.08);
}

.product-info {
    padding: 1.4rem;
}

.product-category {
    color: #38a169;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #1f4f26;
}

.product-description {
    line-height: 1.7;
    color: #555;
    min-height: 3.4rem;
}

.product-price {
    margin-top: 1rem;
    font-size: 1.35rem;
    color: #1f7a33;
    font-weight: 800;
}

.product-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.product-actions button {
    flex: 1;
}

.btn-add-cart,
.btn-view-details {
    border-radius: 999px;
    padding: 0.95rem 1rem;
}

.btn-add-cart {
    background-color: #2ecc71;
    color: white;
}

.btn-view-details {
    background-color: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.btn-add-cart:hover {
    background-color: #22c55e;
}

.btn-view-details:hover {
    background-color: #1f2937;
    color: white;
}

@media (max-width: 960px) {
    .products-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-grid,
    .about-grid,
    .service-grid,
    .products-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        min-height: 420px;
    }
}

.plant-cards {
    padding: 80px 20px;
    background-color: #f3f7f1;
}

.plant-cards h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1e4f28;
    font-size: 2.6rem;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.plant-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.plant-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.plant-card-body {
    padding: 1.6rem;
}

.plant-card-body h3 {
    margin-bottom: 0.75rem;
    color: #204723;
}

.plant-card-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.plant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1e4f28;
}

.offer-banner {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin: 0 auto;
}

.offer-banner p {
    font-size: 1.2rem;
    font-weight: 700;
}

.gallery-section,
.gallery-info,
.admin-panel {
    padding: 50px 20px;
    background-color: #f2faf2;
}

.gallery-section h2,
.gallery-info h2,
.admin-panel h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #1f4f26;
    margin-bottom: 1rem;
}

.gallery-grid,
#galleryPreview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    background-color: white;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-note {
    text-align: center;
    margin-top: 1rem;
    color: #2d5f2d;
    font-weight: 600;
}

.upload-form {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: grid;
    gap: 1rem;
}

.upload-form label {
    font-weight: 700;
    color: #1f4f26;
}

.upload-form input[type="file"],
.upload-form input[type="password"] {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    background-color: white;
    width: 100%;
}

.upload-message {
    text-align: center;
    font-weight: 600;
    color: #1f4f26;
    margin-top: 0.5rem;
}

.admin-panel .gallery-preview h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-info p,
.gallery-info li,
.gallery-info ol {
    max-width: 900px;
    margin: 0.75rem auto;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.gallery-info ol {
    padding-left: 1.25rem;
}

.gallery-info ol li {
    margin-bottom: 0.75rem;
}

.map-section {
    padding: 50px 20px;
    background-color: #f2faf2;
}

.gallery-info h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #1f4f26;
    margin-bottom: 1rem;
}

.gallery-info p {
    max-width: 900px;
    margin: 0.75rem auto;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-note {
    text-align: center;
    margin-top: 2rem;
}

.contact-note p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-note .btn {
    margin: 0.4rem;
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.75;
}

.map-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.map-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2rem;
    align-items: center;
}

.map-frame {
    width: 100%;
    min-height: 420px;
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.map-info h2 {
    font-size: 2.4rem;
    color: #1f4f26;
    margin-bottom: 0.5rem;
}

.map-info p {
    color: var(--text-dark);
    line-height: 1.8;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.map-actions .btn {
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    border-radius: 999px;
}

@media (max-width: 960px) {
    .map-grid {
        grid-template-columns: 1fr;
    }

    .hero-with-image {
        padding: 100px 20px;
    }

    .hero-with-image h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .map-grid,
    .plant-grid {
        grid-template-columns: 1fr;
    }

    .hero-with-image h1 {
        font-size: 2.4rem;
    }

    .hero-with-image p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1rem;
    }

    .hero-with-image h1 {
        font-size: 2rem;
    }

    .top-banner {
        font-size: 0.95rem;
    }
}

/* ===========================
   Buttons
   =========================== */

.btn {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background-color: var(--text-light);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--text-dark);
}

.btn-full {
    width: 100%;
    display: block;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* ===========================
   Featured Products Section
   =========================== */

.featured,
.categories,
.why-us {
    padding: 80px 20px;
}

.featured h2,
.categories h2,
.why-us h2,
.products-section h1,
.about-section h1,
.contact-section h1,
.cart-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

/* ===========================
   Product Card
   =========================== */

.product-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-rating {
    color: #f39c12;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions button {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-add-cart {
    background-color: var(--primary-color);
    color: white;
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
}

.btn-view-details {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-view-details:hover {
    background-color: var(--text-dark);
    color: white;
}

/* ===========================
   Categories Section
   =========================== */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    transform: translateY(-10px);
}

.category-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===========================
   Features Grid
   =========================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background-color: var(--primary-color);
    color: white;
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card:hover i {
    color: white;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

/* ===========================
   Newsletter Section
   =========================== */

.newsletter {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: #333;
    color: #ddd;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(46, 204, 113, 0.2);
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* ===========================
   Products Page
   =========================== */

.products-section {
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.products-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.sidebar {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

.filter-group input[type="checkbox"],
.filter-group select {
    margin-right: 0.5rem;
}

.filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
}

.products-main {
    display: flex;
    flex-direction: column;
}

/* ===========================
   Cart Page
   =========================== */

.cart-section {
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-details h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cart-item-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-control button {
    width: 25px;
    height: 25px;
    border: 1px solid var(--border-color);
    background-color: white;
    cursor: pointer;
    border-radius: 3px;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 3px;
    border-radius: 3px;
}

.cart-item-price {
    text-align: right;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.remove-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
}

.remove-btn:hover {
    background-color: #c0392b;
}

.cart-summary {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.summary-row.total {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.promo-code {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.promo-code input {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
}

.promo-code button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.free-shipping-notice {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    border-left: 4px solid #28a745;
}

.free-shipping-notice i {
    margin-right: 0.5rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-cart h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===========================
   About Page
   =========================== */

.about-section {
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.8rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.values-list li::before {
    content: '\f05d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-features .feature-card {
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.team-section {
    margin-top: 3rem;
}

.team-section h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.member-image {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-member h3 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.team-member p {
    color: var(--text-light);
}

.member-bio {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===========================
   Contact Page
   =========================== */

.contact-section {
    padding: 40px 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   Modal
   =========================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.close:hover {
    color: var(--text-dark);
}

.modal-body h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu,
    .nav-icons {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .featured h2,
    .categories h2,
    .why-us h2 {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .products-main {
        order: 1;
    }

    .cart-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-item-price {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 0.5rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured h2,
    .categories h2,
    .why-us h2 {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .category-card,
    .feature-card {
        padding: 1rem;
    }
}
