/*
Theme Name: GMC Foods
Theme URI: https://gmcfoods.com
Author: GMC Foods
Author URI: https://gmcfoods.com
Description: GMC Foods tarım şirketi için profesyonel WordPress teması. Organik, doğal ve güvenilir tarım firması görünümü.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gmc-foods
Tags: agriculture, farming, organic, responsive, custom-menu, custom-logo, theme-options
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: #2d6a2d;
    transition: color 0.3s ease;
}

a:hover {
    color: #4caf50;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 44px;
    text-align: center;
}

.btn-primary {
    background-color: #2d6a2d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #245a24;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #2d6a2d;
}

.btn-outline {
    background-color: transparent;
    color: #2d6a2d;
    border: 2px solid #2d6a2d;
}

.btn-outline:hover {
    background-color: #2d6a2d;
    color: #fff;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #4caf50;
    margin: 12px auto 0;
}

.section-title p {
    color: #666;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: #2d6a2d;
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a svg {
    flex-shrink: 0;
}

.top-bar-left a:hover {
    color: #c8e6c9;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.1);
}

.top-bar-right a:hover {
    background-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-1px);
}

.top-bar-right a svg {
    flex-shrink: 0;
}

/* ===== HEADER ===== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: -1px;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d6a2d;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* ===== NAVIGATION ===== */
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 10px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
    min-height: 44px;
    line-height: 24px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.main-navigation a:hover {
    color: #2d6a2d;
    background-color: #eef5ee;
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #2d6a2d;
    background-color: #eef5ee;
    font-weight: 600;
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 3px solid #4caf50;
    display: none;
    flex-direction: column;
    z-index: 100;
}

.main-navigation li:hover > .sub-menu {
    display: flex;
}

.main-navigation .sub-menu a {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.main-navigation .sub-menu a:hover {
    background-color: #f5f5f0;
}

/* Hamburger */
/* Mobile home link - hidden on desktop */
.mobile-home-link {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
    cursor: grab;
}

.hero-slider:active {
    cursor: grabbing;
}

.hero-slider + .features-band {
    margin-top: 0;
}

.hero-slider-track {
    display: flex;
    will-change: transform;
}

.hero-slider-track.animated {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider-track.dragging {
    transition: none;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    min-height: 80vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
    padding: 120px 0;
}

.hero-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
    min-height: 12px;
}

.hero-dot.active {
    background: #fff;
}

/* ===== FEATURES BAND ===== */
.features-band {
    background-color: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #e8e8e0;
    margin-top: 0;
}

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

.feature-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    background-color: #f5f5f0;
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #2d6a2d;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    padding: 10px;
}

.feature-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #222;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: #f5f5f0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    margin-bottom: 25px;
}

.about-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.about-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background-color: #fff;
}

/* Products grid (for archive/page) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Slider (homepage) */
.product-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 50px 50px;
    margin: 0 -50px;
}

.product-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.product-slider-track:active {
    cursor: grabbing;
}

.product-slider-track.dragging {
    transition: none;
}

.product-slide {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 0 15px;
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.product-card-image {
    height: 220px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-slide:hover .product-card-image img {
    transform: scale(1.06);
}

/* Slider nav buttons */
.product-slider-btn {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6a2d;
    transition: all 0.3s ease;
    z-index: 5;
}

.product-slider-btn:hover {
    background: #2d6a2d;
    color: #fff;
    box-shadow: 0 5px 20px rgba(45,106,45,0.3);
}

.product-slider-prev {
    left: 3px;
}

.product-slider-next {
    right: 3px;
}

/* Slider dots */
.product-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.product-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.product-slider-dot.active {
    background: #2d6a2d;
    width: 28px;
    border-radius: 5px;
}

.product-card-content {
    padding: 20px;
}

.product-card-category {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2d6a2d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-card-content h3 a {
    color: #222;
}

.product-card-content h3 a:hover {
    color: #2d6a2d;
}

.product-card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: #f5f5f0;
}

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

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card-image {
    height: 280px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    padding: 20px;
}

.team-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: #222;
}

.team-card-content .team-title {
    color: #4caf50;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background-color: #eef5ee;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2d6a2d, #4caf50, #2d6a2d);
}

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

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

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: #222;
}

.blog-card-content h3 a:hover {
    color: #2d6a2d;
}

.blog-card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #2d6a2d;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    color: #4caf50;
}

/* ===== CONTACT BAND ===== */
.contact-band {
    background-color: #2d6a2d;
    color: #fff;
    padding: 50px 0;
}

.contact-band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-band-item {
    padding: 20px;
}

.contact-band-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-band-icon svg {
    opacity: 0.9;
}

.contact-band-item h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-band-item p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.contact-band-item a {
    color: rgba(255,255,255,0.85);
}

.contact-band-item a:hover {
    color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #1a3d1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-widget h4,
.footer-widget .widget-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after,
.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #4caf50;
}

.footer-widget p,
.footer-widget li {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-widget ul li {
    padding: 4px 0;
}

.footer-widget a {
    color: #aaa;
}

.footer-widget a:hover {
    color: #4caf50;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #4caf50;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social a svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header-banner {
    background-color: #2d6a2d;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35,90,35,0.97) 0%, rgba(45,106,45,0.9) 50%, rgba(30,70,30,0.95) 100%);
    z-index: 1;
}

.page-header-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    z-index: 1;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 5 C60 5 67 30 60 55 C53 30 60 5 60 5Z' fill='white' opacity='0.8'/%3E%3Cpath d='M45 10 C45 10 58 22 60 55 C48 28 45 10 45 10Z' fill='white' opacity='0.6'/%3E%3Cpath d='M75 10 C75 10 62 22 60 55 C72 28 75 10 75 10Z' fill='white' opacity='0.6'/%3E%3Ccircle cx='15' cy='85' r='6' fill='white' opacity='0.5'/%3E%3Ccircle cx='95' cy='80' r='5' fill='white' opacity='0.4'/%3E%3Ccircle cx='105' cy='100' r='7' fill='white' opacity='0.5'/%3E%3Ccircle cx='8' cy='105' r='4' fill='white' opacity='0.4'/%3E%3Ccircle cx='35' cy='95' r='3' fill='white' opacity='0.3'/%3E%3Ccircle cx='85' cy='105' r='4' fill='white' opacity='0.3'/%3E%3Cpath d='M20 30 C20 30 25 45 22 60' fill='none' stroke='white' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M100 25 C100 25 95 42 98 58' fill='none' stroke='white' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 120px 120px;
    pointer-events: none;
}

.page-header-banner .container {
    position: relative;
    z-index: 2;
}

.page-header-banner h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: #fff;
}

/* ===== ABOUT PAGE ===== */
.about-page-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page-text .entry-content {
    line-height: 1.9;
    color: #444;
}

.about-page-text .entry-content p {
    margin-bottom: 18px;
}

.about-page-text .entry-content h2,
.about-page-text .entry-content h3 {
    color: #2d6a2d;
    margin-top: 25px;
    margin-bottom: 12px;
}

.about-page-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* Stats Band */
.about-stats-band {
    background: linear-gradient(135deg, #2d6a2d 0%, #1a4a1a 100%);
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #4caf50;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Why Us Section */
.about-why-section {
    background-color: #f5f5f0;
}

/* CTA Band */
.about-cta-band {
    background: linear-gradient(135deg, #4caf50 0%, #2d6a2d 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.about-cta-band h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-story img {
    border-radius: 8px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-story-content h2 {
    margin-bottom: 15px;
}

.about-story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.why-us-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.why-us-card .why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2d6a2d;
}

.why-us-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-us-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== PRODUCTS PAGE ===== */
.product-filters {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #2d6a2d;
    background-color: #2d6a2d;
    color: #fff;
}

/* ===== SINGLE PRODUCT ===== */
.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.single-product-image img {
    border-radius: 8px;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.single-product-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.single-product-content .product-category-badge {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2d6a2d;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.single-product-content .product-description {
    color: #555;
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6a2d;
    font-size: 1.2rem;
}

.contact-info-item h4 {
    margin-bottom: 4px;
}

.contact-info-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-map {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Contact Form 7 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    min-height: 44px;
    margin-bottom: 15px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #4caf50;
    outline: none;
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background-color: #2d6a2d;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 44px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #245a24;
}

/* ===== BLOG PAGE ===== */
.blog-content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

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

/* ===== SINGLE POST ===== */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-content .entry-content {
    line-height: 1.9;
    color: #444;
}

.single-post-content .entry-content p {
    margin-bottom: 20px;
}

.single-post-content .entry-content h2,
.single-post-content .entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.single-post-content .entry-content img {
    border-radius: 8px;
    margin: 20px 0;
}

.single-post-content .entry-content ul,
.single-post-content .entry-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.single-post-content .entry-content ul {
    list-style: disc;
}

.single-post-content .entry-content ol {
    list-style: decimal;
}

.post-meta {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== SIDEBAR ===== */
.sidebar .widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.sidebar .widget-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4caf50;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.sidebar .widget ul li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar .widget ul li:last-child {
    border-bottom: none;
}

.sidebar .widget ul li a {
    color: #555;
    font-size: 0.9rem;
}

.sidebar .widget ul li a:hover {
    color: #2d6a2d;
}

/* ===== PAGINATION ===== */
.pagination {
    text-align: center;
    padding: 40px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: #2d6a2d;
    border-color: #2d6a2d;
    color: #fff;
}

/* ===== 404 PAGE ===== */
.error-404-content {
    text-align: center;
    padding: 100px 0;
}

.error-404-content h1 {
    font-size: 6rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.error-404-content h2 {
    margin-bottom: 15px;
}

.error-404-content p {
    color: #666;
    margin-bottom: 30px;
}

/* ===== COMMENTS ===== */
.comments-area {
    margin-top: 50px;
}

.comments-title {
    margin-bottom: 25px;
}

.comment-list {
    list-style: none;
}

.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.comment-content p {
    color: #555;
    line-height: 1.7;
}

.comment-respond {
    margin-top: 30px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 15px;
    min-height: 44px;
}

.comment-form textarea {
    min-height: 120px;
}

.comment-form input[type="submit"] {
    background-color: #2d6a2d;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
}

.comment-form input[type="submit"]:hover {
    background-color: #245a24;
}

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

/* Laptop */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid { gap: 30px; }
    .footer-widgets { gap: 25px; }
}

/* Tablet */
@media (max-width: 768px) {
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        width: 100%;
    }

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-home-link {
        display: list-item;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 15px 0;
    }

    .main-navigation a {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        text-transform: none;
    }

    .main-navigation a:hover,
    .main-navigation .current-menu-item > a,
    .main-navigation .current_page_item > a {
        background-color: #f5f5f0;
        border-radius: 0;
    }

    .main-navigation .sub-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        display: none;
        background: #f9f9f9;
    }

    .main-navigation li:hover > .sub-menu {
        display: flex;
    }

    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }

    .features-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 300px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-slide { flex: 0 0 50%; max-width: 50%; }
    .product-slider-prev { left: 5px; }
    .product-slider-next { right: 5px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-band-grid { grid-template-columns: 1fr; }
    .footer-widgets { grid-template-columns: 1fr; }

    .about-story { grid-template-columns: 1fr; }
    .about-page-story { grid-template-columns: 1fr; gap: 30px; }
    .about-page-image { display: none; }
    .page-header-banner[style*="background-image"] { background-image: none !important; }

    .footer-social {
        gap: 14px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-number { font-size: 2rem; }
    .stat-item { padding: 15px 10px; }
    .about-stats-band { padding: 40px 0; }
    .about-cta-band { padding: 50px 0; }
    .about-cta-band h2 { font-size: 1.6rem; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .single-product-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    .blog-content-area {
        grid-template-columns: 1fr;
    }

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

    .hero-slide { min-height: 60vh; }

    .section { padding: 60px 0; }
    .section-title h2 { font-size: 1.8rem; }
}

/* Phone */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: 0.9rem; }
    .hero-content { padding: 50px 0; }

    .products-grid { grid-template-columns: 1fr; }
    .product-slide { flex: 0 0 85%; max-width: 85%; padding: 0 8px; }
    .product-slider-btn { display: none; }
    .product-slider { padding: 10px 0 40px; margin: 0; }
    .team-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.8rem; letter-spacing: 0.5px; }
    .stat-item { padding: 12px 8px; }
    .about-stats-band { padding: 30px 0; }
    .about-cta-band h2 { font-size: 1.3rem; }
    .about-cta-band { padding: 40px 0; }
    .why-us-card { padding: 20px; }
    .blog-posts-grid,
    .blog-posts-full { grid-template-columns: 1fr; }

    .hero-slide { min-height: 50vh; }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .section { padding: 40px 0; }
    .section-title h2 { font-size: 1.5rem; }

    .btn { padding: 12px 24px; font-size: 0.9rem; }

    .page-header-banner { padding: 50px 0; }
    .page-header-banner h1 { font-size: 1.8rem; }
}
