/*
Theme Name: Osmangazi Besi Ciftligi
Author: Ozgun Graphic
Description: Özel WooCommerce Temasý
Version: 1.0.0
Text Domain: osmangazi
*/

/* Temel Stiller */
:root {
    --primary-green: #518c2d;
    /* GÃ¶rselden alÄ±nan ortalama yeÅŸil tonu */
    --text-dark: #333333;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header (Ãœst MenÃ¼) */
.main-header {
    background-color: var(--text-white);
    padding: 15px 0;
    /* Hafif bir alt gÃ¶lge, menÃ¼yÃ¼ arka plandan koparmak iÃ§in */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 50;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(81, 140, 45, 0.2);
}

.btn-login:hover {
    background-color: #3f7021;
}

/* Hero Section (Banner) */
.hero-section {
    position: relative;
    width: 100%;
    /* Boyutu gÃ¶rsele ve ekran geniÅŸliÄŸine gÃ¶re uyumlu yapÄ±yoruz */
    min-height: 550px;
    max-height: 700px;
    /* Ã‡ok geniÅŸ ekranlarda devasa olmasÄ±nÄ± engeller */
    background-image: url('images/anasayfa/herogorsel.png');
    background-size: cover;
    /* Resmi ekrana sÄ±ÄŸdÄ±rÄ±rken oranÄ±nÄ± korur, kenarlardan kesebilir */
    /* Ä°nek ve koyunlar saÄŸda olduÄŸu iÃ§in, resmi saÄŸ-alta hizalÄ±yoruz ki hayvanlar hep odakta kalsÄ±n */
    background-position: right bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    /* Ä°Ã§eriÄŸi dikeyde ortala */
    padding-top: 40px;
}

.hero-section .container {
    width: 100%;
    /* TasarÄ±mdaki gibi inek saÄŸda, yazÄ±lar solda kalmasÄ± iÃ§in flex layout kullanÄ±yoruz */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hero Ä°Ã§erik (Sola DayalÄ±) */
.hero-content {
    max-width: 600px;
    margin-right: auto;
    /* Kalan boÅŸluÄŸu saÄŸa iterek iÃ§eriÄŸi solda tutar */
    /* Resmin kÄ±r kÄ±smÄ±nÄ±n Ã¼zerine gelmesi iÃ§in margin ayarÄ± (gÃ¶rsele gÃ¶re ayarlanabilir) */
    margin-top: 20px;
}

.sub-title {
    font-size: 38px;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    /* Arka plandan ayrÄ±ÅŸtÄ±rmak iÃ§in ince gÃ¶lge */
}

.main-title {
    font-size: 38px;
    color: var(--primary-green);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.main-title span {
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    text-shadow: none;
}

.price-box {
    display: flex;
    align-items: flex-start;
    color: var(--primary-green);
}

.price-value {
    font-size: 110px;
    /* Fiyat boyutunu tasarÄ±mdaki gibi bÃ¼yÃ¼ktÃ¼k */
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -3px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.price-currency {
    font-size: 30px;
    font-weight: 800;
    margin-left: 8px;
    margin-top: 8px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.price-suffix {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-left: 20px;
    margin-top: 15px;
    /* FiyatÄ±n yanÄ±nda dik duran yazÄ± iÃ§in */
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Hero Ã–zellik Rozetleri (Yuvarlaklar) */
.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    max-width: 500px;
    /* Rozetleri kÃ¼Ã§Ã¼lttÃ¼k ve sola topladÄ±k */
    margin-right: auto;
}

.badge-item {
    flex: 1;
}

.badge-item img {
    width: 100%;
    /* BulunduÄŸu kutuyu doldursun */
    max-width: 150px;
    /* Maksimum geniÅŸlik vererek devasa olmasÄ±nÄ± engelledik */
    height: auto;
    display: block;
    margin: 0 auto;
    /* kendi iÃ§inde ortala */
    /* KÃ¼Ã§Ã¼k bir gÃ¶lge verelim ki resimler biraz havaya kalksÄ±n */
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.badge-item img:hover {
    transform: translateY(-5px);
    /* Ãœzerine gelince hafif yukarÄ± kalkma efekti */
}

/* -----------------------------------
   Kategori SeÃ§im AlanÄ± (BÃ¼yÃ¼kbaÅŸ / KÃ¼Ã§Ã¼kbaÅŸ)
----------------------------------- */
.category-selection {
    padding: 60px 0;
    background-color: #ffffff;
    /* Hero section ile arasÄ±na hafif bir soluk gÃ¶lge veya Ã§izgi koyabiliriz */
    border-top: 1px solid #f0f0f0;
}

/* BÃ¶lÃ¼m BaÅŸlÄ±ÄŸÄ± */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header h2 {
    font-size: 24px;
    color: #999999;
    /* TasarÄ±mdaki soluk gri baÅŸlÄ±k rengi */
    letter-spacing: 2px;
    font-weight: 500;
}

.arrow-down {
    color: #999999;
    font-size: 20px;
    margin-top: 10px;
}

/* SeÃ§enek KutularÄ±nÄ± Tutan Alan */
.category-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* AyÄ±rÄ±cÄ± Ã‡izgi (AralarÄ±ndaki Dikey Ã‡izgi) */
.cat-divider {
    width: 2px;
    height: 80px;
    background-color: #e0e0e0;
}

/* Her Bir Hayvan Kutusu */
.cat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
}

/* Hayvan Resimleri Yeri */
.cat-image {
    width: 100%;
    height: 180px;
    /* GÃ¶rseller iÃ§in yÃ¼ksekliÄŸi biraz artÄ±rdÄ±k */
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    /* Resimler kutunun altÄ±na (zemine) hizalansÄ±n */
    justify-content: center;
    position: relative;
}

.cat-image .animal-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* Hafif bir gÃ¶lge ile hayvanlarÄ± arka plandan (beyazlÄ±ktan) ayÄ±ralÄ±m */
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

/* Kutuya (hayvana veya incele butonuna) fare ile gelindiÄŸinde resim hafif bÃ¼yÃ¼sÃ¼n */
.cat-box:hover .animal-img {
    transform: scale(1.08) translateY(-5px);
}

.cat-content h3 {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Genel Koyu YeÅŸil Buton (Ä°ncele butonu vs.) */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(81, 140, 45, 0.2);
}

/* -----------------------------------
   Bilgi Banner (Kurbanda YorulmayÄ±n)
----------------------------------- */
.info-banner {
    position: relative;
    /* Ä°neÄŸi konumlandÄ±rmak iÃ§in */
    background-color: #e6ece5;
    /* GÃ¶rseldeki hafif grimsi yeÅŸil arka plan */
    padding: 30px 0;
    margin: 40px 0;
    overflow: hidden;
    /* DÄ±ÅŸarÄ± taÅŸan inek poposunu gizlemek iÃ§in */
}

/* Sol taraftan dekoratif olarak giren inek */
.banner-cow {
    position: absolute;
    bottom: -10px;
    /* Biraz aÅŸaÄŸÄ±dan baÅŸlasÄ±n */
    left: 0;
    height: 120%;
    /* Kutudan biraz daha bÃ¼yÃ¼k olsun */
    max-height: 350px;
    z-index: 1;
    /* YazÄ±larÄ±n arkasÄ±nda kalsÄ±n */
    /* Ä°neÄŸin Ã¼zerine gelince hafifÃ§e kÄ±mÄ±ldamasÄ± iÃ§in animasyon */
    transition: transform 0.4s ease;
}

.banner-cow:hover {
    transform: rotate(2deg) scale(1.02);
}

.info-banner .container {
    position: relative;
    z-index: 2;
    /* Ä°neÄŸin Ã¼zerinde kalacak olan iÃ§erik */
}

.info-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Ä°Ã§eriÄŸi saÄŸa yaslayarak ineÄŸe yer aÃ§Ä±yoruz */
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    /* YazÄ± ile koli arasÄ±na boÅŸluk */
}

.banner-text {
    flex: 1;
    text-align: left;
    padding-left: 250px;
    /* Ä°neÄŸin Ã¼stÃ¼ne yazÄ± gelmemesi iÃ§in soldan boÅŸluk verdik */
}

@media (max-width: 992px) {
    .banner-text {
        padding-left: 180px;
        /* Orta ekranlarda boÅŸluÄŸu azalt */
    }
}

.banner-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.banner-text h2 .highlight {
    color: var(--text-white);
    background-color: var(--primary-green);
    padding: 2px 10px;
    border-radius: 4px;
}

.banner-text p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin: 5px 0;
}

.banner-text h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
}

.banner-text h3 strong {
    color: var(--text-dark);
}

.banner-image img {
    max-width: 280px;
    height: auto;
    display: block;
    /* Koliye hafif bir drop shadow (gÃ¶lge) ve hover animasyonu ekledik */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.banner-image img:hover {
    transform: scale(1.05);
}

/* -----------------------------------
   Neden Biz (Ã–zellikler Grid)
----------------------------------- */
.why-us {
    position: relative;
    padding: 60px 0 80px 0;
    overflow: hidden;
}

.relative-container {
    position: relative;
}

.why-us .section-title {
    margin-bottom: 40px;
}

.why-us .section-title h2 {
    font-size: 32px;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 1;
}

.why-us .section-title p {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 500;
}

.features-grid {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Standart Yuvarlak Kutu (Eski YapÄ±) */
.feature-item {
    text-align: center;
    width: 150px;
}

.feature-icon.placeholder-green {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

/* Yeni Kare Kutu TasarÄ±mÄ± (kucukbas.html iÃ§in) */
.custom-box-features {
    gap: 50px;
}

.feature-item-box {
    text-align: center;
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box-green {
    width: 130px;
    height: 120px;
    background-color: #588e38; /* TasarÄ±mdaki Ã¶zel pastel yeÅŸil rengi */
    border-radius: 6px; /* Ä°steÄŸe gÃ¶re hafif oval yapabiliriz, %50 deÄŸil kare */
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0, 0.1);
}

.feature-item h4,
.feature-item-box h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.1;
}

.feature-item-box h3 span {
    font-weight: 500;
    color: #888;
}

/* Arka plandaki dev soru iÅŸareti */
.decoration-questionmark {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 400px;
    /* Ä°Ã§i boÅŸ, yeÅŸil bir Ã§izgi gÃ¶rÃ¼nÃ¼mÃ¼ vermek iÃ§in transparent ve stroke kullanÄ±yoruz */
    color: transparent;
    -webkit-text-stroke: 4px rgba(81, 140, 45, 0.4);
    /* YarÄ± saydam yeÅŸil kalÄ±n Ã§erÃ§eve Ã§izgisi */
    font-weight: 900;
    z-index: 1;
    line-height: 1;
}

/* -----------------------------------
   Ã‡iftliÄŸimiz (Galeri)
----------------------------------- */
.our-farm {
    padding: 0 0 80px 0;
}

.our-farm .section-title {
    margin-bottom: 30px;
}

.our-farm .section-title h2 {
    font-size: 32px;
    color: var(--primary-green);
    font-weight: 800;
}

.farm-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 0;
    /* Arada boÅŸluk yok tasarÄ±mda */
    width: 100%;
}

.gallery-item {
    width: 100%;
    height: 100%;
}

/* -----------------------------------
   Ä°letiÅŸim Form AlanÄ±
----------------------------------- */
.contact-form-area {
    position: relative;
    background-color: var(--primary-green);
    padding: 80px 0 60px 0;
    margin-top: 250px;
    /* Ä°nek resmi iÃ§in Ã¼stten Ã§ok fazla boÅŸluk bÄ±raktÄ±k */
}

/* Formun Ã¼stÃ¼nde (dÄ±ÅŸarÄ±da) duran dev Ä°nek */
.contact-cow {
    position: absolute;
    top: -240px;
    /* Boyutu kÃ¼Ã§Ã¼ldÃ¼ÄŸÃ¼ iÃ§in yukarÄ±ya Ã§ok taÅŸmasÄ±n diye biraz aÅŸaÄŸÄ± Ã§ektik */
    left: 8%;
    /* En sola biraz daha yaklaÅŸtÄ±rarak formdan uzaklaÅŸtÄ±rdÄ±k */
    max-height: 380px;
    /* 500px'den 380px'e dÃ¼ÅŸÃ¼rdÃ¼k, daha kibar duracak */
    z-index: 10;
    /* Resme hafif bir gÃ¶lge */
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.3));
    pointer-events: none;
    /* ÃœstÃ¼ne tÄ±klamayÄ± engeller, altÄ±ndaki yazÄ±lar tÄ±klanabilir kalÄ±r */
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Form elemanlarÄ±yla baÅŸlÄ±ÄŸÄ± alt Ã§izgide hizalar */
    gap: 50px;
    position: relative;
    z-index: 11;
    /* Ä°neÄŸin arkasÄ±nda kalmamasÄ± iÃ§in */
}

.contact-text {
    flex: 1;
    padding-left: 5%;
    /* Ä°nek sola yaslÄ± olduÄŸu iÃ§in yazÄ± inekle Ã§akÄ±ÅŸmasÄ±n diye pay veriyoruz */
}

.contact-text h2 {
    font-size: 38px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.2;
}

.contact-text h2 strong {
    font-size: 44px;
    font-weight: 800;
    display: block;
}

.text-line {
    width: 60px;
    height: 4px;
    background-color: var(--text-white);
    margin-top: 20px;
}

/* SaÄŸdaki form alanÄ± */
.contact-form {
    flex: 1;
    max-width: 450px;
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 15px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--text-white);
}

.btn-submit {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 12px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    /* Butonu sola dayalÄ± yapmak iÃ§in */
    width: 120px;
}

.btn-submit:hover {
    background-color: var(--text-white);
    color: var(--primary-green);
}

/* -----------------------------------
   Ana Footer (Altbilgi)
----------------------------------- */
.main-footer {
    background-color: #3b3b3b;
    /* TasarÄ±mdaki koyu gri/siyah tonu */
    color: #cccccc;
    /* Soluk beyaz/gri metin rengi */
    padding: 60px 0 20px 0;
}

.footer-top-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

/* Footer iÃ§indeki her bir sÃ¼tun (widget) */
.footer-widget h3 {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 15px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    /* Ä°kon ile metni Ã¼stten hizala */
    gap: 10px;
    line-height: 1.5;
}

.footer-widget ul li i {
    margin-top: 3px;
    /* Ä°konu biraz aÅŸaÄŸÄ± indirip metin hizasÄ±na getirir */
}

.footer-widget ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--text-white);
}

/* Logoyu beyaza Ã§evirme hilesi (GerÃ§ek beyaz logo olana kadar) */
.filter-white {
    filter: brightness(0) invert(1);
    max-width: 180px;
}

/* Sosyal Medya Ä°konlarÄ± */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--text-white);
    color: #3b3b3b;
    border-color: var(--text-white);
}

.footer-bottom-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

/* ==========================================================================
   KURUMSAL (HAKKIMIZDA) SAYFASI Ã–ZEL STÄ°LLERÄ°
   ========================================================================== */

/* -----------------------------------
   HakkÄ±mÄ±zda Hero BÃ¶lÃ¼mÃ¼
----------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    height: 750px; /* BÃ¼yÃ¼k inek resmi ve orman iÃ§in yÃ¼ksekliÄŸi artÄ±rdÄ±k */
    background-image: url('images/anasayfa/hakkimizdahero.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; /* YazÄ±yÄ± ortaya hizalamak iÃ§in */
    overflow: hidden;
    margin-top: -100px; /* Header'Ä± Ã¼zerine bindirmek iÃ§in yukarÄ± Ã§ekiyoruz */
    padding-top: 100px; /* Ä°Ã§erik ezilmesin diye header kadar pay bÄ±rakÄ±yoruz */
}

/* Flex yÃ¼zÃ¼nden container'Ä±n ortaya bÃ¼zÃ¼ÅŸmesini engelliyoruz */
.about-hero .container {
    width: 100%;
}

/* Soldaki yazÄ±nÄ±n okunmasÄ± ve attÄ±ÄŸÄ±nÄ±z resimdeki efekti vermek iÃ§in gradyan */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* TasarÄ±mda olduÄŸu gibi; sol taraf tamamen beyazÄ±mtÄ±rak, saÄŸa doÄŸu inekte yok oluyor, ayriyeten resmin alt sÄ±nÄ±rÄ±nda bir yok olma gradyanÄ± da var */
    background: 
        linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 40%, transparent 60%),
        linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 15%);
    z-index: 1;
}

.about-hero-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
    /* Metnin sadece kendi iÃ§inde ortalanmasÄ± ve sol beyazlÄ±ÄŸÄ±n ortalarÄ±na doÄŸru durmasÄ± iÃ§in margin ayarÄ± yapÄ±yoruz */
    padding-left: 0;
    width: 100%;
}

.about-hero-content .main-title {
    font-size: 50px; /* Font boyutunu eski haline dÃ¶ndÃ¼rdÃ¼k */
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.1;
    /* text-transform: uppercase; kaldÄ±rÄ±ldÄ± */
}

.about-hero-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

/* -----------------------------------
   Biz Kimiz BÃ¶lÃ¼mÃ¼
----------------------------------- */
.who-we-are {
    padding: 80px 0;
    background-color: #fff;
}

/* (DevamÄ±...) */

/* ==========================================================================
   HÄ°ZMETLER SAYFASI Ã–ZEL STÄ°LLERÄ°
   ========================================================================== */

/* Tepe BaÅŸlÄ±k AlanÄ± */
.services-header-box {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #fff;
}

.services-main-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.services-title-line {
    width: 60%;
    margin: 15px auto 0;
    height: 1px;
    background-color: var(--primary-green);
    position: relative;
}

/* Zikzak Hizmet Listesi */
.services-list-area {
    padding: 40px 0 80px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-row:last-child {
    margin-bottom: 0;
}

/* Mobilde gÃ¶rseller ve yazÄ±lar alt alta dÃ¼ÅŸsÃ¼n (Ä°leride @media iÃ§in) */

.service-image-box {
    flex: 1;
}

.service-image-box .placeholder-service,
.service-image-box img {
    width: 100%;
    height: 350px;
    border-radius: 8px; /* TasarÄ±mdaki gibi hafif yuvarlak olabilir */
    object-fit: cover;
    display: block;
}

/* Ä°Ã§erik Kutusu */
.service-content-box {
    flex: 1;
}

.service-content-box h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-content-box h2 span {
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.service-content-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.service-content-box p strong {
    color: var(--text-dark);
}

/* Hizalama SÄ±nÄ±flarÄ± */
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ==========================================================================
   KÃœÃ‡ÃœKBAÅž / BÃœYÃœKBAÅž LÄ°STELEME (ÃœRÃœN) SAYFASI STÄ°LLERÄ°
   ========================================================================== */

/* Kategori TablarÄ± (BÃ¼yÃ¼kbaÅŸ - KÃ¼Ã§Ã¼kbaÅŸ GeÃ§iÅŸi) */
.category-tabs-area {
    padding: 60px 0 20px;
    background-color: #fff;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tab-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tab-btn.inactive {
    opacity: 0.6;
}

.tab-btn.inactive:hover {
    opacity: 0.9;
}

.tab-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.tab-btn.inactive .tab-text {
    color: #777; /* SÃ¶nÃ¼k gri ton */
}

/* Tab Ä°Ã§indeki 'Ä°ncele' Butonu */
.tab-action {
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 8px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin: 0 15px;
}

.tab-btn.inactive .tab-action {
    background-color: #777;
}

/* ÃœrÃ¼n Listesi (Izgara) */
.product-list-area {
    padding: 20px 0 80px;
    background-color: #fff;
}

.product-grid {
    display: grid;
    /* KÃ¼Ã§Ã¼kbaÅŸ veya BÃ¼yÃ¼kbaÅŸ (Ä°ki sÃ¼tun arasÄ± boÅŸluk ve iki eÅŸit kart) */
    grid-template-columns: repeat(auto-fit, minmax(300px, 450px)); 
    gap: 60px;
    justify-content: center;
}

.product-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.animal-number {
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: -5px;
}

.number-badge {
    background-color: #777;
    color: var(--text-white);
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Fiyat AlanÄ± */
.product-price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.price-label {
    font-weight: 800;
    color: #777;
    font-size: 16px;
    margin-right: 10px;
}

.price-value {
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: flex-end; /* TL yazÄ±sÄ± altta hizalÄ± kalsÄ±n diye */
}

.price-value small {
    font-size: 16px;
    font-weight: 700;
    margin-left: 2px;
    margin-bottom: 4px; /* TL'yi hafif yukarÄ± kaldÄ±rmak iÃ§in ufak ayar */
}

/* ÃœrÃ¼n Ã–zellikleri (Liste) */
.product-features {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 25px auto;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Listedeki kelimeler sola dayalÄ± */
}

.product-features li {
    font-size: 12px;
    color: #555;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Ã–zellik Ä°konu ve SaÄŸ Taraf (DeÄŸer) */
.icon-color {
    color: #999;
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.product-features li span {
    margin-left: auto; /* DeÄŸerleri (1, KOÃ‡, 55KG vb.) en saÄŸa yaslar */
    color: var(--text-dark);
}

/* SatÄ±n Al Butonu */
.btn-buy {
    background-color: #407322; /* Koyu yeÅŸil ton */
    color: var(--text-white);
    padding: 12px 60px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.btn-buy:hover {
    background-color: var(--primary-green);
}

/* Ä°nek resmi, saÄŸ alttan yÃ¼kselecek */
.placeholder-about-cow,
.about-hero-cow {
    position: absolute;
    right: 5%;
    bottom: -30px;
    height: 110%;
    /* Kutudan azÄ±cÄ±k taÅŸsÄ±n tasarÄ±m gibi */
    max-height: 650px;
    z-index: 1;
    object-fit: contain;
}

/* -----------------------------------
   Biz Kimiz BÃ¶lÃ¼mÃ¼
----------------------------------- */
.who-we-are {
    padding: 80px 0;
    background-color: #fff;
}

.who-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.who-image {
    flex: 1;
    position: relative;
    /* GÃ¶rselin Ã¼stÃ¼ne yeÅŸilimsi hafif Ã§erÃ§eveler/kutular geldiÄŸi iÃ§in relative */
}

.who-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-text {
    flex: 1;
}

.who-text h2 {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 30px;
}

.who-text h2 strong {
    font-weight: 800;
}

.who-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.who-text p strong {
    color: var(--text-dark);
}

.who-text p em {
    display: block;
    margin-top: 15px;
    color: #888;
}

/* ==========================================================================
   BÃœYÃœKBAÅž DETAY VE LÄ°STELEME SAYFASI STÄ°LLERÄ°
   ========================================================================== */

/* Hisseler (BÃ¼yÃ¼kbaÅŸ) Tekil Ä°nceleme AlanÄ± */
.cow-detail-area {
    padding: 0 0 60px 0;
    background-color: #fff;
}

.detail-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Sol Taraf (Resim ve Numaralar) */
.detail-gallery {
    flex: 1;
    text-align: left;
}

.animal-number-large {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: -10px;
}

.number-badge-large {
    background-color: #777;
    color: var(--text-white);
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.main-image-box {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.main-image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumbnail-list img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-list img.active-thumb {
    border-color: var(--primary-green);
}

/* SaÄŸ Taraf: Fiyat ve Tablo */
.detail-info-area {
    flex: 1;
    padding-top: 110px; /* Soldaki logo izasÄ±na inmesi iÃ§in ayarlandÄ± */
}

.detail-price-box {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* FiyatÄ± saÄŸa yaslayalÄ±m */
    margin-bottom: 20px;
}

.detail-price-label {
    font-weight: 800;
    color: #777;
    font-size: 20px;
    margin-right: 15px;
}

.detail-price-value {
    background-color: #407322; /* Koyu yeÅŸil */
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: flex-end;
}

.detail-price-value small {
    font-size: 18px;
    margin-left: 3px;
    margin-bottom: 4px;
}

/* Gri/Beyaz Ã‡izgili Hisse Tablosu */
.detail-features-table {
    width: 100%;
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
}

.feature-row.bg-gray {
    background-color: #f1f2f4; /* Tablodaki gri ÅŸerit rengi */
}

.f-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-icon i {
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.f-value {
    color: var(--text-dark);
}

.btn-buy-large {
    display: block;
    background-color: #4b8529;
    color: var(--text-white);
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-buy-large:hover {
    background-color: var(--primary-green);
}

/* -----------------------------------
   DiÄŸer KurbanlÄ±klarÄ±mÄ±z AlanÄ±
----------------------------------- */
.other-products-area {
    padding: 60px 0 80px 0;
    background-color: #fff;
}

.other-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.line-left, .line-right {
    height: 1px;
    width: 120px;
    background-color: var(--primary-green);
}

.other-title {
    margin: 0 20px;
    font-size: 28px;
    color: var(--primary-green);
    font-weight: 800;
}

/* Slider DÃ¼zeni */
.other-products-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.slider-arrow {
    background-color: #ddd;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-green);
}

.slider-track {
    display: flex;
    gap: 25px;
    flex: 1;
    overflow: hidden; /* SÄ±ÄŸmayanlar gÃ¶zÃ¼kmesin (GerÃ§ek slider iÃ§in) */
}

/* KÃ¼Ã§Ã¼k ÃœrÃ¼n KartÄ± (DiÄŸerleri iÃ§in) */
.product-card-small {
    flex: 1;
    min-width: 0; 
    text-align: center;
}

.animal-number-small {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: -5px;
}

.number-badge-small {
    background-color: #777;
    color: var(--text-white);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.p-image-small {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.p-image-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.p-price-row-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.p-price-row-small span {
    font-weight: 700;
    color: #777;
    font-size: 12px;
}

.green-bg {
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 800;
}

.green-bg small {
    font-size: 12px;
}

.p-features-small {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
}

.p-features-small li {
    font-size: 11px;
    color: #555;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.icon-color-sm {
    color: #ccc;
    width: 16px;
    font-size: 10px;
    margin-right: 5px;
}

.p-features-small li span {
    margin-left: auto;
    color: var(--text-dark);
}

.btn-buy-small {
    display: block;
    background-color: #4b8529;
    color: var(--text-white);
    padding: 10px 0;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-buy-small:hover {
    background-color: var(--primary-green);
}

/* Slider NoktalarÄ± */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-green);
}
/* ==========================================================================
   GÄ°RÄ°Åž YAP / ÃœYE OL SAYFASI STÄ°LLERÄ°
   ========================================================================== */

.auth-tabs-area {
    padding: 60px 0 20px;
    background-color: #fff;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.auth-btn {
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.auth-btn.active {
    background-color: var(--primary-green);
    color: var(--text-white);
}

.auth-btn.inactive {
    background-color: #777;
    color: var(--text-white);
}

.auth-btn.inactive:hover {
    background-color: #555;
}

.auth-form-area {
    padding: 40px 0 80px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border: 1px solid rgba(81, 140, 45, 0.2); /* Ã‡ok Ã§ok hafif yeÅŸilimsi Ã§erÃ§eve */
    border-radius: 8px;
    padding: 60px 40px 40px 40px;
    position: relative;
    /* Hafif bir kutu gÃ¶lgesi de eklenebilir tasarÄ±ma derinlik katmak iÃ§in */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.user-icon-circle {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border: 2px dashed var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px; /* Ã‡erÃ§evenin yarÄ±sÄ± dÄ±ÅŸarÄ±da kalacak ÅŸekilde negatif top */
    left: 50%;
    transform: translateX(-50%);
}

.user-icon-circle i {
    font-size: 30px;
    color: var(--primary-green);
}

.custom-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-auth-submit {
    background-color: #407322; /* Koyu yeÅŸil */
    color: var(--text-white);
    border: none;
    padding: 18px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-auth-submit:hover {
    background-color: var(--primary-green);
}

/* Ä°letiÅŸim inekli footer alanÄ± form sayfasÄ± iÃ§in Ã¼st boÅŸluÄŸu (Opsiyonel) */
.auth-contact-margin {
    margin-top: 150px;
}

/* ÃœYE OL SAYFASI EKLERÄ° */
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-checkbox-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 5px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 10px; /* TasarÄ±mdaki gibi Ã§ok kÃ¼Ã§Ã¼k metinler */
    color: #666;
    line-height: 1.4;
    padding-left: 25px; /* Kutu payÄ± */
}

.mt-10 {
    margin-top: 10px;
}

/* VarsayÄ±lan checkbox gizle */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Ã–zel Checkbox Kutusu TasarÄ±mÄ± */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Hover efekti */
.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--primary-green);
}

/* SeÃ§iliyken */
.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Check iÅŸareti ekle (Gizli baÅŸlar) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* SeÃ§iliyken check gÃ¶ster */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Check Åžekli (Beyaz tik) */
.custom-checkbox .checkmark:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ==========================================================================
   HESABIM (KULLANICI PANELÄ°) SAYFASI STÄ°LLERÄ°
   ========================================================================== */

.user-panel-area {
    position: relative;
    padding: 60px 0 80px;
    background-color: #fff;
    overflow: hidden; /* DÄ±ÅŸarÄ± taÅŸan inek resmini kesmek iÃ§in */
}

/* Sol Dekoratif Ä°nek Resmi */
.panel-cow-image {
    position: absolute;
    left: -100px; /* Sola iyice yaslamak iÃ§in */
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    max-height: 900px;
    z-index: 0;
    opacity: 0.9;
}

/* Ä°Ã§eriÄŸin inek Ã¼zerinden alta dÃ¼ÅŸmemesi iÃ§in z-index ayarÄ± */
.user-panel-area .container {
    position: relative;
    z-index: 1; 
}

/* HoÅŸgeldiniz MesajÄ± */
.welcome-box {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.welcome-box i {
    color: #555;
    margin-right: 8px;
}

.welcome-box strong {
    color: #333;
    font-weight: 700;
}

/* 3'lÃ¼ MenÃ¼ Panel Grid */
.panel-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 70px; /* Sayaca boÅŸluk */
}

.panel-menu-item {
    background-color: #61a637; /* Default yeÅŸil */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.panel-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.panel-menu-item i {
    font-size: 55px;
    margin-bottom: 20px;
}

.panel-menu-item span {
    font-size: 24px; /* TasarÄ±mdaki gibi bÃ¼yÃ¼k font */
    font-weight: 800;
    letter-spacing: 1px;
}

/* Kurbana Kalan SÃ¼re AlanÄ± */
.countdown-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-wrapper h3 {
    font-size: 22px;
    font-weight: 400;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.countdown-text {
    font-size: 38px;
    color: #888;
    font-weight: 300;
}

.cd-number {
    font-weight: 800;
    color: #666; /* TasarÄ±mdaki koyu gri/siyah tona yakÄ±nlÄ±k */
    font-size: 46px;
}

.cd-label {
    margin-right: 15px;
}

.cd-label:last-child {
    margin-right: 0;
}

/* Padding eklemesi */
.pt-30 {
    padding-top: 30px !important;
}

/* ==========================================================================
   KULLANICI PROFÄ°L GÃœNCELLEME (HESABIM) Ä°Ã‡ SAYFA STÄ°LLERÄ°
   ========================================================================== */

.profile-tabs-area {
    padding: 60px 0 20px;
    background-color: #fff;
    border-bottom: 2px solid #eaeaea; /* Hafif bir ayÄ±rÄ±cÄ± Ã§izgi */
}

.profile-nav-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ptab-item {
    display: flex;
    align-items: center;
    padding: 10px 40px;
    text-decoration: none;
    color: #999; /* Pasif Ã¶ÄŸeler gri */
    border-right: 2px solid #ccc; /* Dikey ayraÃ§ */
    transition: all 0.3s ease;
}

.ptab-item i {
    font-size: 28px;
    margin-right: 15px;
}

.ptab-item span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.ptab-item:hover {
    color: var(--primary-green);
}

.ptab-item.active {
    color: #518c2d; /* TasarÄ±mdaki yeÅŸil aktiflik vurgusu */
}

/* Profil Formu Kaydet Butonu */
.btn-save-profile {
    background-color: #3f6e1f; /* Koyu yeÅŸil */
    color: var(--text-white);
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-save-profile:hover {
    background-color: var(--primary-green);
}

/* SATIN ALINAN KURBANLIK (SÝPARÝÞ) BÝLGÝ KUTUSU */
.ordered-animal-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    margin: 40px auto;
    max-width: 1000px;
    padding: 20px 0;
}

.oa-image {
    width: 250px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 40px;
}

.oa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oa-info-col {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.oa-title {
    font-size: 24px;
    font-weight: 800;
    color: #555;
    margin-bottom: 20px;
}

.oa-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    font-weight: 600;
}

.oa-val {
    font-size: 34px;
    font-weight: 900;
    color: #3f6e1f; /* Koyu yeþil */
    letter-spacing: -1px;
}

.oa-divider {
    width: 2px;
    height: 80px;
    background-color: #ddd;
}

/* ==========================================================================
   ÖDEME (CHECKOUT) SAYFASI STÝLLERÝ
   ========================================================================== */

.checkout-area {
    padding: 80px 0 100px;
    background-color: #fff;
}

.checkout-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.checkout-left {
    flex: 1;
    min-width: 300px;
}

.checkout-right {
    width: 380px;
}

.checkout-main-title {
    font-size: 28px;
    font-weight: 800;
    color: #4b8529; /* Yeþil baþlýk */
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.checkout-divider {
    height: 1px;
    width: 100%;
    background-color: #ccc;
    margin: 20px 0;
}

/* Sol Taraf Ürün Detayý Kartý */
.checkout-product-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
}

.cp-image {
    width: 180px;
    height: 130px;
    border-radius: 4px;
    overflow: hidden;
}

.cp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cp-details {
    flex: 1;
}

.cp-title {
    font-size: 24px;
    font-weight: 800;
    color: #555;
    margin-bottom: 15px;
}

.cp-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cp-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    gap: 15px;
}

.cp-info-list li strong {
    color: #888;
    font-weight: 400;
    width: 100px; /* Hizalamak için */
}

.cp-info-list li span {
    font-weight: 800;
    color: #333;
}

/* Sað Taraf Sipariþ Özeti Kutusu */
.order-summary-box {
    background-color: #3f6e1f; /* Koyu yeþil */
    color: #fff;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
}

.summary-head {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.summary-row strong {
    font-size: 20px;
    font-weight: 800;
}

.border-bottom {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total span {
    font-size: 18px;
    font-weight: 800;
}

.summary-total strong {
    font-size: 24px;
    font-weight: 900;
}

/* Sözleþme Onay Alaný */
.checkout-terms {
    margin-bottom: 20px;
    padding-left: 5px;
}

.check-text-dark {
    color: #333;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
    display: block;
    margin-top: -2px;
}

/* Ödeme Yap Butonu */
.checkout-action {
    display: flex;
}

.btn-checkout-pay {
    display: block;
    width: 100%;
    background-color: #3f6e1f;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-checkout-pay:hover {
    background-color: var(--primary-green);
}
