/* ==========================================================================
  1. DEĞİŞKENLER VE TEMEL AYARLAR (VARIABLES & BASE SETUP)
  ========================================================================== */

/* :root seçicisi, tüm site için geçerli olacak global değişkenleri tanımlar.
  Sitenin renk paletini, fontlarını veya boşluklarını değiştirmek için
  sadece bu bölümü düzenlemeniz yeterlidir. */
:root {
    /* Renk Paleti */
    --color-dark: #222529;
    /* Ana Koyu Renk (Header, Footer) */
    --color-light: #ffffff;
    /* Ana Açık Renk (Metin, Arka Plan) */
    --color-accent: #d93b3b;
    /* Vurgu Rengi (Butonlar, Linkler, İkonlar) */
    --color-accent-hover: #b92e2e;
    /* Vurgu Rengi Hover */
    --color-text: #343a40;
    /* Ana Metin Rengi */
    --color-text-muted: #6c757d;
    /* İkincil, soluk metinler */
    --color-background-light: #f8f9fa;
    /* Hafif gri arka planlar */
    --color-border: #dee2e6;
    /* Kenarlıklar ve ayırıcılar */
    /* Tipografi */
    --font-family-base: "Anek Tamil", sans-serif;
    --font-family-nav: "Anek Tamil", sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    /* Yerleşim */
    --container-width: 1340px;
    --spacing-unit: 1rem;
    /* 16px */
}

/* Genel Reset ve Temel Body Stilleri */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Custom Font-Face Definitions to Prevent Layout Shift */
@font-face {
    font-family: "Anek Tamil";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://fonts.gstatic.com/s/anektamil/v15/pxiMyp8348i9KxL9TPTV_Qw.woff2") format("woff2");
}

@font-face {
    font-family: "Anek Tamil";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("https://fonts.gstatic.com/s/anektamil/v15/pxiDyp8348i-88QscJVk_Z3R.woff2") format("woff2");
}

@font-face {
    font-family: "Anek Tamil";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("https://fonts.gstatic.com/s/anektamil/v15/pxiDyp8348i-88QscJVt_Z3R.woff2") format("woff2");
}

@font-face {
    font-family: "Anek Tamil";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("https://fonts.gstatic.com/s/anektamil/v15/pxiDyp8348i-88QscJVn_Z3R.woff2") format("woff2");
}

@font-face {
    font-family: "Anek Tamil";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("https://fonts.gstatic.com/s/anektamil/v15/pxiDyp8348i-88QscJV7_Z3R.woff2") format("woff2");
}

/* Google Fonts Import removed as it's now in base.html */

/* ==========================================================================
   2. YARDIMCI SINIFLAR (UTILITY CLASSES)
   ========================================================================== */

/* Bu sınıflar, farklı yerlerde tekrar tekrar kullanılabilir. */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    /*padding-right: calc(var(--spacing-unit) * 1.5);
    padding-left: calc(var(--spacing-unit) * 1.5);*/
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: var(--font-weight-bold);
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    color: #2b2a29;
    line-height: 1.6;
    height: 100%;
}

body {}

/* FORM ELEMENTS */
label {
    font-size: 20px;
    margin: 0 !important;
    line-height: 30px !important;
    cursor: pointer;
    position: relative;
    display: inline-block !important;
}

label {
    display: block;
    line-height: 40px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
    padding: 8px 20px 4px 12px;
    border-radius: 6px;
    border: 1px solid #e9eaed;
    width: 100%;
    font-size: 18px;
    font-weight: 200;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="submit"],
button {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 28px 6px 28px;
    background-color: #6cb533;
    color: #fff;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    text-align: center;
    border: 0;
    margin-right: 0;
}

input[type="submit"]:hover,
button:hover {
    background: #008d1e;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none;
}

/* END FORM ELEMENTS */

/*CONTENT ELEMENTS*/
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
}

h1 {
    margin: 38px 0 8px 0;
    font-size: 28px;
    line-height: 32px;
    display: block;
}

h2 {
    font-size: 28px;
    display: block;
}

h3 {
    font-size: 22px;
    display: block;
}

h4 {
    font-size: 18px;
    display: block;
}

h5 {
    font-size: 16px;
    display: block;
}

p {
    font-size: 16px;
    margin: 0;
    padding: 0 0 20px 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: auto;
}

ol {
    overflow: hidden;
    font-size: 14px;
}

a {
    color: #6cb533;
    font-weight: 400;
    transition: color 0.3s;
    text-decoration: none;
}

a:hover {
    color: #121212;
}

a:hover,
li:hover {
    transition: color 0.3s;
}

hr {
    border: 0;
    height: 1px;
    margin: 0;
    background: rgba(196, 196, 196, 0.1);
}

/*Hide alt text if image not load*/
img:not([src]):not([srcset]) {
    visibility: hidden;
}

img,
picture {
    display: block;
    color: rgba(0, 0, 0, 0);
}

/*removes empty space under images*/
.large_button {
    padding: 16px 20px 16px 20px;
    font-size: 22px;
    border-radius: 3px;
    font-weight: bold;
    color: #fff;
    background: #a32929;
    display: inline-block;
}

.large_button:hover {
    background: #7e2020;
    color: #fff;
}

/*CONTENT ELEMENTS*/

/*SKELETHON*/
.main_container {
    padding-bottom: 80px;
}

.content__container {
    max-width: 1440px;
    min-width: 1240px;
    box-sizing: border-box;
    margin: auto;
    position: relative;
}

.inner__container {
    margin: auto;
    position: relative;
}

.flex__container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/*SKELETHON*/

/*HEADER::*/
header {
    padding: 0;
    /* position: sticky removed to restore scroll behavior */
    /* top: 0; removed */
    z-index: 1001;
    background: #fff;
}

header .container {
    background: #185734;
    border-radius: 0 0 20px 20px;
}

/*HEADER::Logo*/
header .logo {
    max-width: 438px;
    width: 438px;
    height: 144px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo img {
    width: 300px;
    max-height: 88px;
}

.logo-img {
    width: 300px;
    height: auto;
}

/*HEADER::Logo*/

/*HEADER::Nav*/
header nav {
    margin: 0 auto 0 0;
    position: relative;
    z-index: 1000;
}

header nav>ul {
    justify-content: center;
    display: flex;
    gap: 2px;
}

header nav>ul>li {
    position: relative;
    width: 144px;
    height: 144px;
    margin: 0;
    background-color: #3a6e4b;
    overflow: hidden;
    transition: background-color 0.3s;
}

header nav>ul>li:hover {
    background-color: #418b56;
}

header nav>ul>li:last-child {
    margin-right: 0;
}

header nav>ul>li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    font-family: var(--font-family-nav);
    font-size: 22px;
    font-weight: 600;
    text-transform: none;
    transform: translateY(0);
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

header nav>ul>li.active>a {
    color: #6cb533;
}

header nav>ul>li:hover>a,
header nav>ul>li.active>a {
    color: #fff;
    transform: translateY(-30px);
}

header nav>ul>li.active::before {
    bottom: 30px;
}

/* Icon active state - consistent with hover */
header nav>ul>li.active::before {
    bottom: 30px;
    opacity: 1;
    /* Ensure visibility */
    z-index: 10;
    /* Ensure it's on top */
}

/* Remove the dot that might be appearing from other active styles */
header nav>ul>li.active::after {
    display: none;
}

header nav ul li .sub_navi {
    width: 100%;
    padding: 0;
    margin-top: 2px;
    background: #fff;
    border-radius: 0;
    position: absolute;
    display: none;
    white-space: nowrap;
}

header nav ul li .sub_navi li {
    margin: 0 0 1px 0;
    background: #6cb533;
    padding: 2px 0 0 10px;
}

header nav ul li .sub_navi li:hover {
    color: #fff;
    background: #2d363f;
}

header nav ul li .sub_navi li a {
    font-weight: 400;
    color: #fff;
    display: block;
    padding: 8px 0 8px 0;
    letter-spacing: 0.04em;
}

header nav ul li .sub_navi li a:hover {
    font-weight: 700;
}

header nav ul li.active .sub_navi li.active a {
    font-weight: 700;
}

header nav>ul>li:hover .sub_navi {
    display: block;
}

/* Menu hover effects */
header nav>ul>li:hover a {
    transform: translateY(-30px);
    transition: all 0.3s ease;
}

/* Primary Menu Icons */
header nav>ul>li::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 48px;
    max-height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Headshop Icon */
header nav>ul>li:nth-child(1)::before {
    background-image: url("/static/images/headshop.svg");
}

/* Growshop Icon */
header nav>ul>li:nth-child(2)::before {
    background-image: url("/static/images/growshop.svg");
}

/* Stecklinge Icon */
header nav>ul>li:nth-child(3)::before {
    background-image: url("/static/images/stecklinge.svg");
}

/* Icon hover state */
header nav>ul>li:hover::before {
    bottom: 30px;
}

/* Home Title Styles */
.home__title {}

.home__title h1 {
    display: flex;
    margin: 18px 0 0 0;
}

.home__title h1>span {
    color: white;
    font-family: "Anek Tamil", sans-serif;
    font-weight: 800;
    /* extrabold */
    width: 100%;
    max-width: 660px;
    letter-spacing: -0.05em;
    line-height: 60px;
    margin: 0;
    background-color: #185734;
    padding: 20px 0 10px 0;
    text-align: center;
}

/* Font loading solution using font-display and size-adjust */
.home__title h1 span {
    /* Use fallback fonts with proper sizing metrics */
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    size-adjust: 85%;
    /* Adjusts fallback font to match Anek Tamil's metrics */
    ascent-override: 90%;
    /* Prevents vertical layout shift */
    descent-override: 20%;
    /* Prevents vertical layout shift */
    font-display: swap;
    /* Shows text immediately, then swaps in custom font */
}

/* Banner Slider Styles */
.banner-container {
    max-width: 1320px;
    margin: 0 auto 40px;
    width: 100%;
    max-width: var(--container-width);
}

.banner-blocks {
    display: flex;
    justify-content: center;
    gap: 0;
}

.banner-left,
.banner-right {
    width: 660px;
    height: 795px;
    overflow: hidden;
    position: relative;
}

.banner-right {
    background-color: #f5f5f5;
    position: relative;
    margin: 0 0 auto 0;
    border-radius: 28px;
    z-index: 10;
    /* 🔥 Bunu ekle */
}

.banner-right .banner-right-inner-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    border: 4px solid #fff;
    border-radius: 22px;
}

.banner-left {
    position: relative;
    margin: 0 auto auto 0;
    border: 5px solid #545454;
    border-radius: 28px;
}

/* Skeleton loading for banner blocks */

@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Initial state - hide all banners for animation on page load */
.banner-left .banner-content {
    transform: translateX(-100%);
    opacity: 0;
}

.banner-right .banner-content {
    transform: translateX(100%);
    opacity: 0;
}

/* When content is loaded, hide skeleton */
.banner-left.loaded::before,
.banner-right.loaded::before {
    display: none;
}

.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    transition:
        transform 0.6s ease-in-out,
        opacity 0.6s ease-in-out;
}

/* Active state - visible banner */
.banner-content.active {
    opacity: 1;
    transform: translateX(0);
}

.banner-left-content {
    padding: 60px 52px 10px 52px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* 🔥 İçerik yukarıdan başlasın */
    font-family: "Anek Tamil", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.banner-left-content .banner-link {
    margin: auto auto 30px auto;
    background: #418b56;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 29px;
    padding: 12px 60px 7px 60px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.banner-left-content .banner-link:hover {
    background: #185734;
    transition: background-color 0.3s ease;
}

.banner-left-content p {
    color: #404040;
    font-size: 24px;
    text-align: center;
    font-weight: 400;
}

.banner-right-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Categories in Banner */
.banner-product-categories {
    margin-top: 20px;
    width: 100%;
}

.banner-product-categories h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin: 20px auto 40px auto;
}

.product-category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 2px solid #545454;
    transition: background-color 0.2s ease;
}

.product-category-item h3 {
    font-weight: 400;
    margin: 0;
    color: #545454;
}

.product-category-item:hover {
    background-color: #e8e8e8;
}

.product-category-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-category-item h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #333;
    text-align: center;
}

.banner-navigation {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.banner-nav-btn {
    height: 3px;
    background-color: #1d1d1d;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 3px;
    padding: 5px 10px 6px 9px;
}

.banner-nav-btn.active {
    background-color: #418b56;
    width: 42px;
    transition: all 0.3s ease;
}

.banner-content h2 {
    font-size: 50px;
    font-weight: 500;
    color: #545454;
    margin: 0 auto;
}

/* Custom font with font-display swap */
@font-face {
    font-family: "Anek Tamil Fallback";
    src: local("Arial");
    ascent-override: 90%;
    descent-override: 20%;
    line-gap-override: 0;
}

/* Font loading animation to prevent layout shift */
.home__title {
    container-type: inline-size;
}

.home__title h1 span {
    /* Initial smaller size while loading */
    font-size: clamp(20px, 4vw, 40px);
    font-family:
        "Anek Tamil Fallback",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}

/* Once font loads, apply actual sizes */
.home__title h1 span.first-line {
    font-size: clamp(30px, 5vw, 76px);
}

.home__title h1 span.second-line {
    font-size: clamp(35px, 6vw, 85px);
}

/* When custom font is loaded */
.fonts-loaded .home__title h1 span {
    font-family: "Anek Tamil", sans-serif;
}

.fonts-loaded .home__title h1 span.first-line {
    font-size: 76px;
}

.fonts-loaded .home__title h1 span.second-line {
    font-size: 85px;
}

.home__title h1 span.first-line {
    margin-bottom: 18px;
}

.home__title h1 span.second-line {
    font-size: 85px;
    margin: 0 0 auto auto;
}

/* When Anek Tamil font loads, it will replace the fallback */
@supports (font-family: "Anek Tamil") {
    .home__title h1 span {
        font-family:
            "Anek Tamil",
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            "Helvetica Neue",
            Arial,
            sans-serif;
    }
}

/* Animation Implementation */
.home__title h1 span {
    overflow: hidden;
    /* Hide the text when it's outside */
    vertical-align: bottom;
    /* Align correctly */
    display: inline-block;
    /* Needed for overflow hidden */
    font-size: 76px;
}

.home__title h1 span .text-inner {
    display: block;
    animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
    /* Start invisible */
}

.home__title h1 span.first-line .text-inner {
    animation-name: slideInLeft;
    letter-spacing: -0.01em;
}

.home__title h1 span.second-line .text-inner {
    animation-name: slideInRight;
    animation-delay: 0.2s;
    letter-spacing: 0.03em;
    /* Slight delay for the second line */
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/*HEADER::Nav*/
.top_opening_hours {
    display: flex;
    justify-content: center;
    max-width: 466px;
    width: 100%;
}

#store-status-banner {
    display: flex;
    align-items: center;
    width: 320px;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: "Anek Tamil", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 20px;
}

#status-indicator {
    width: 35px;
    height: 35px;
    background-image: url("/static/images/clock.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Store Status Banner */
.clock-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.store-status-text {
    font-family: var(--font-family-nav);
    font-size: 18px;
    font-weight: 600;
    color: #2d363f;
}

/*HEADER::Nav*/

/*HEADER::Tools*/
header .tools {
    margin-right: 0;
    margin-top: 31px;
}

header .tools .join_theclub {
    margin-right: 28px;
}

header .tools .join_theclub:hover {
    opacity: 0.8;
}

header .tools .join_theclub a {
    color: #6cb533;
    font-size: 14px;
    letter-spacing: 0.04em;
}

header .tools .join_theclub a img {
    height: 22px;
    position: relative;
    top: -3px;
    max-width: 32px;
}

header .tools .join_theclub a strong {
    display: block;
}

header .tools .discord {}

header .tools .discord:hover {
    opacity: 0.8;
}

header .tools .discord a {
    margin-top: 3px;
    display: block;
    margin-right: 0;
    position: relative;
}

header .tools .discord a img {
    height: 16px;
}

/*HEADER::Tools*/

/*HEADER::*/

/*FOOTER::*/
footer {
    margin: 50px auto 30px auto;
    background: linear-gradient(180deg, rgba(24, 64, 42, 1) 32%, rgba(255, 255, 255, 1) 32%, rgba(255, 255, 255, 1) 100%);

}


footer>.container {
    background: #185734;
    padding: 40px 50px 16px 50px;
    border-radius: 0 0 20px 20px;
}


footer nav {}


footer .footer_block_container h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}

footer .footer_block_container address {}

footer .footer_block_container address svg {}

footer .footer_block_container address a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 8px;
}

footer .footer_block_container address img {
    margin: auto 16px auto 0;
}

footer .footer_block_container address .address {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    padding: 0;
}


footer nav ul {
    position: relative;
    box-sizing: border-box;
    margin: auto;
    position: relative;
}

footer nav ul li {}

footer nav ul li a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    transition: all 0.2s ease-in-out;
}

footer nav ul li a:hover {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}

footer .logo {
    max-width: 318px;
    position: relative;
}

footer .logo img {
    width: 100%;
    max-height: 36px;
}

footer .contact {
    margin: 38px auto;
}

footer .contact ul {
    font-size: 16px;
    width: 100%;
    max-width: 890px;
    color: #2d363f;
    margin-right: 0;
    font-size: 15px;
    font-weight: 500;
    box-sizing: border-box;
    justify-content: space-between;
    display: flex;
}

footer .contact ul a {
    color: #2d363f;
}

footer .contact ul a {
    font-size: 16px;
}

footer .page_bottom {
    border-top: 1px solid #e8e8e8;
    padding: 16px 0;
}

footer .copyright {
    font-size: 13px;
}

footer .copyright span {
    font-size: 12px;
}

footer .copyright .data__privacy {
    margin-left: 40px;
}

footer .copyright .data__privacy a {
    font-size: 13px;
    color: #3b4044;
}

footer .hypare_footer {}

footer .hypare_footer img {
    height: 12px;
    width: auto;
}

footer .datanav {
    text-align: center;
    margin: 0 auto 0 42px;
    font-size: 12px;
}

footer .datanav a {
    font-size: 12px;
    color: #3b4044;
}


footer .company_operational {
    margin-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, .6);
    padding: 13px 0 0 0;
}

footer .company_operational ul {}

footer .company_operational ul li {}

footer .company_operational ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 0.2s ease-in-out;
    justify-content: flex-start;
}

footer .company_operational ul li a:hover {
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}

footer .company_operational ul li a img {
    margin-right: 7px;
    width: 22px;
}



footer .company_operational ul li a svg {}

footer .footer_slogan_block {
    text-align: center;
    margin: 10px 0 0 0;
}

footer .footer_slogan_block .footer__slogan {
    text-align: center;
}

footer .footer_slogan_block .footer__slogan h4 {
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    line-height: 18px;
}

footer .footer_slogan_block .footer__slogan p {
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    line-height: 22px;
}

footer .footer_slogan_block .footer__logo {
    margin: 20px auto;
}

footer .footer_slogan_block .footer__logo img {
    margin: 20px auto;
    width: 186px;
}

/*FOOTER::*/

.copyright_bottom {
    font-size: 16px;
    color: #000;
    text-align: center;
    margin-top: 16px;
}

/* ==========================================================================
   3. BİLEŞEN STİLLERİ (COMPONENTS)
   ========================================================================== */

/* --- Başlık (Header) --- */
.top-bar {
    background-color: var(--color-dark);
    color: var(--color-background-light);
    padding: calc(var(--spacing-unit) / 2) 0;
    font-size: 0.875rem;
}

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

.top-bar a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.top-bar a:hover {
    color: var(--color-accent);
}

.top-bar_contact-item {
    margin-right: var(--spacing-unit);
}

.main-header {
    background-color: var(--color-dark);
    padding: var(--spacing-unit) 0;
    border-top: 1px solid #444;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-light);
    text-decoration: none;
}

.logo a span {
    color: var(--color-accent);
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: calc(var(--spacing-unit) * 1.5);
}

.main-nav a {
    color: var(--color-light);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    font-size: 0.9rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.main-nav a:hover,
.main-nav .active a {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* --- Butonlar --- */
.btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
    font-family: var(--font-family-base);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-light);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* --- Genel İçerik Stilleri --- */
.content-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-unit);
    text-align: center;
}

.content-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: calc(var(--spacing-unit) * -0.5);
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Servis Kartları --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.card--service {
    padding: 0;
    display: flex;
    flex-direction: column;
    /* İçeriği dikeyde sırala */
    overflow: hidden;
    /* Yuvarlak köşelerin resmi kesmesi için */
}

.card__image-link {
    display: block;
    line-height: 0;
    /* Resim altındaki istenmeyen boşluğu engelle */
}

.card__image {
    width: 100%;
    height: 200px;
    /* Kart resimlerinin yüksekliğini sabitle */
    object-fit: cover;
    /* Resmin orantısını bozmadan alanı doldurmasını sağla */
    transition: transform 0.3s ease;
}

.card:hover .card__image {
    transform: scale(1.05);
    /* Resmin üzerine gelince hafifçe büyüt */
}

.card__image-link {
    display: block;
    line-height: 0;
    /* Yükleniyor animasyonu için arka plan ekleyelim */
    background-color: #f0f0f0;
    /* Açık gri bir arka plan */
    min-height: 200px;
    /* Resmin yüksekliğiyle aynı, çökmesini engeller */
}

/* Kart içeriği için yeni bir sarmalayıcı */
.card__content {
    padding: calc(var(--spacing-unit) * 1.5);
    flex-grow: 1;
    /* Kartın kalan tüm boşluğunu doldurmasını sağla */
    display: flex;
    flex-direction: column;
}

.card__content .card_text {
    flex-grow: 1;
    /* Açıklama metninin esneyerek "Daha Fazla" linkini aşağı itmesini sağla */
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-background-light);
    padding: calc(var(--spacing-unit) * 3) 0;
    margin-top: calc(var(--spacing-unit) * 3);
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--color-light);
}

/* main.css'in en altına ekleyin */

/* RichText içeriğini biçimlendirme */
.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4 {
    color: var(--color-dark);
}

.rich-text-content a {
    color: var(--color-accent);
    text-decoration: none;
}

.rich-text-content a:hover {
    text-decoration: underline;
}

.rich-text-content ul,
.rich-text-content ol {
    padding-left: calc(var(--spacing-unit) * 1.5);
}

/* ==========================================================================
   HERO BÖLÜMÜ STİLLERİ
   ========================================================================== */
.hero {
    position: relative;
    color: var(--color-light);
    height: 600px;
    /* Sabit yükseklik, içindekilerin konumlanması için önemli */
    overflow: hidden;
    /* Dışarı taşmaları engelle */
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: linear-gradient(to right, #222529 8%, #3e4247 18%, #222529 33%);
    background-size: 800px 100%;
    /* Genişliği artırarak daha akıcı bir animasyon sağlar */
}

.hero_background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Animasyonun üstünde */
    filter: brightness(0.7);
    /* Opacity yerine brightness kullanmak metin kontrastını daha iyi koruyabilir */
}

.hero_content {
    position: relative;
    /* Resmin üstünde kalması için absolute veya relative olabilir */
    z-index: 10;
    /* En üst katman */
    height: 100%;
    /* .hero'yu tamamen doldurması için */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--spacing-unit) * 2);
}

.hero_title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--spacing-unit);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    /* Okunabilirliği artırmak için gölge */
}

.hero_tagline {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 0 calc(var(--spacing-unit) * 2);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   İKONLU ÖZELLIK BLOĞU (FEATURE BLOCK)
   ========================================================================== */
.feature-block {
    display: flex;
    align-items: flex-start;
    /* İkon ve metni dikeyde üste hizala */
    text-align: left;
    gap: 1rem;
    /* İkon ve metin arasına boşluk koy */
}

.feature-block__icon {
    flex-shrink: 0;
    /* İkonun küçülmesini engelle */
    background-color: var(--color-accent);
    color: var(--color-light);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-block__title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.25rem;
}

.feature-block__text {
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}


.logo-block-container {
    padding: 20px 0;
    width: 100%;
}

.logo-block-container h2 {
    font-size: 76px;
    text-transform: uppercase;
    color: #245109;
    font-weight: 700;
    position: relative;
    display: table;
    margin: 0 auto 50px auto;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.logo-block-container h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #245109;
}


.logo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 182px;
    height: 182px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

/* ==========================================================================
   HERO SPLIT SECTION
   ========================================================================== */
.hero-split-section {
    background-color: #fff;
    padding: 60px 0;
}

.hero-split-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.hero-split-image {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}

.hero-split-content {
    flex: 1;
    min-width: 0;
    /* Prevent flex item from overflowing */
    text-align: left;
    border: 5px solid #000;
    border-left: 0;
    padding: 20px 60px;
}

.hero-split-content h1 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 58px;
    letter-spacing: -0.03em;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


.hero-split-content p {
    font-size: 40px;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 768px) {
    .hero-split-grid {
        flex-direction: column;
    }

    .hero-split-image,
    .hero-split-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-split-content h1 {
        font-size: 2.5rem;
    }
}

.btn-contact-hero {
    display: inline-block;
    background-color: #418B56;
    color: #ffffff;
    font-weight: 700;
    padding: 15px 100px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    font-size: 30px;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.btn-contact-hero:hover {
    background-color: #2e663e;
    color: #ffffff;
}

/* Product Group Page Styles */
.subpage__hero_tagline {
    font-family: "Anek Tamil", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    border: 5px solid #545454;
    border-radius: 28px;
    padding: 30px;
    margin-top: 20px;
}

/* Product Grid Section */
.product-grid-section {
    padding: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background-color: #fff;
    border: 3px solid #e9eaed;
    border-radius: 28px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

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

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

.product-content {
    padding: 0px 30px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-family: var(--font-family-base);
}

.product-description {
    font-size: 30px;
    line-height: 1.4;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    font-weight: 400;
}

/* Make richtext paragraphs inherit the font size */
.product-description p {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease;
}

.product-link:hover {
    color: var(--color-accent-hover);
}

.product-link svg {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.product-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-title {
        font-size: 32px;
    }

    .product-description,
    .product-description p {
        font-size: 20px;
    }
}

/* Scroll Reveal Animation */
.product-card {
    will-change: transform, opacity;
}

/* Base state for animation */
.js-reveal-hidden {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Directional starting positions */
.js-reveal-from-left {
    transform: translateX(-100px);
}

.js-reveal-from-right {
    transform: translateX(100px);
}

/* Final visible state */
.js-reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Contact Icons */
.floating-contact-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(100px);
    /* Start off-screen right */
    position: relative;
    border: 2px solid transparent;
}

.floating-icon:hover {
    transform: scale(1.1) translateX(0) !important;
    /* Override translate on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-icon.whatsapp-icon:hover {
    border-color: #25D366;
}

.floating-icon.contact-icon:hover {
    border-color: #185734;
}

.floating-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.floating-icon:hover img {
    transform: rotate(10deg);
}

/* Animation classes for icons (slide in from right) */
.floating-icon.slide-in {
    opacity: 1;
    transform: translateX(0);
}

/* Side Contact Panel */
.side-contact-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.side-contact-panel.open {
    transform: translateX(0);
}

.panel-header {
    background-color: #185734;
    color: #fff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    margin: 0;
    font-size: 24px;
    font-family: "Anek Tamil", sans-serif;
    font-weight: 600;
}

.close-panel-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: transform 0.3s ease;
}

.close-panel-btn:hover {
    transform: rotate(90deg);
}

.panel-content {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}


.panel-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Contact Form Styling */
.contact-form-classic-wrapper {
    padding: 0;
}

.contact-form-title {
    display: none;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    font-family: "Anek Tamil", sans-serif;
}

.contact-form-classic .form-group {
    margin-bottom: 12px;
}

.contact-form-classic .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 4px;
    font-family: "Anek Tamil", sans-serif;
}

.contact-form-classic .required-star {
    color: #e53e3e;
    margin-left: 2px;
}

.contact-form-classic .form-control {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #2d3748;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
    /* Important for width: 100% */
}

.contact-form-classic textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact-form-classic .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #185734;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(24, 87, 52, 0.2);
}

.contact-form-classic .form-help-text {
    display: block;
    margin-top: 3px;
    padding-bottom: 0;
    font-size: 11px;
    color: #718096;
}

.contact-form-classic .form-error-text {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #e53e3e;
    font-weight: 500;
}

.contact-form-classic .form-actions {
    margin-top: 20px;
}

.contact-form-classic .btn-submit {
    display: inline-block;
    width: 100%;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #185734;
    border: 1px solid #185734;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 6px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-classic .btn-submit:hover {
    background-color: #124326;
    border-color: #124326;
    color: #fff;
    transform: translateY(-1px);
}

/* Success Message */
.contact-success-message {
    padding: 20px;
    background-color: #f0fff4;
    border-left: 4px solid #48bb78;
    border-radius: 6px;
    color: #2f855a;
}

.contact-success-message h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.contact-success-text p {
    margin: 0;
}

/* Error Box */
.contact-error-box {
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
    border-radius: 6px;
}


.contact-error-box p {
    margin: 0 0 5px 0;
}

/* Sticky Header Logo Pair */
.sticky-header-wrapper {
    position: fixed;
    top: 0;
    z-index: 9000;
    width: 100%;
    /* Use variable if available, else fallback */
    max-width: var(--container-width, 1340px);
    left: 50%;
    /* Start positions for animation */
    pointer-events: none;
    /* Allow clicks to pass through empty space */
    transition: transform 0.5s ease-in-out;
    /* Smooth transition, no bounce */
    /* Ensure child elements are relative to this wrapper */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sticky-header-wrapper.hidden-state {
    transform: translate(-50%, -200px);
}

.sticky-header-wrapper.visible-state {
    transform: translate(-50%, 0);
}

.sticky-logo-left,
.sticky-logo-right {
    pointer-events: auto;
    /* Re-enable clicks on logos */
}

/* Optional margins if you want them exactly inside the container edges or slightly offset */
.sticky-logo-left {
    margin-left: 0;
}

.sticky-logo-right {
    background: #185734;
    padding: 10px 20px;
    margin-right: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
}

.sticky-logo-link {
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.sticky-logo-link:hover {
    transform: scale(1.05);
}

.sticky-logo-img {
    height: 26px;
    /* Adjust size as needed */
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    max-width: 150px;
}

.sticky-logo-left .sticky-logo-img {
    max-width: 200px;
    height: 70px;
}

.sticky-logo-left .sticky-logo-link {
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: #fff;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 10px;
}

/* ==========================================================================
   PRODUCT GROUP PAGE LOGOS
   ========================================================================== */
.product-group-logos-section {
    padding: 60px 0;
    background-color: #fff;
}

.product-group-logos-title {
    font-size: 76px;
    text-transform: uppercase;
    color: #245109;
    font-weight: 700;
    position: relative;
    display: table;
    margin: 0 auto 50px auto;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.product-group-logos-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #245109;
}

.product-group-logos-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-items: center;
}

.product-group-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.product-group-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: 12px;
}

.product-group-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 992px) {
    .product-group-logos-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-group-logos-title {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .product-group-logos-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-group-logos-title {
        font-size: 36px;
    }

    .product-group-logos-section {
        padding: 40px 0;
    }
}

/* Logo Section Intro & Outro Text - Enhanced Styling */
.product-group-logos-intro,
.product-group-logos-outro {
    max-width: 100%;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.product-group-logos-intro {
    margin-bottom: 50px;
}

.product-group-logos-outro {
    margin-top: 50px;
}

/* Headings */
.product-group-logos-intro h2,
.product-group-logos-outro h2 {
    font-size: 45px;
    font-weight: 700;
    color: #245109;
    margin: 0 0 1.5rem 0;
    line-height: 1.0;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 15px;
}

.product-group-logos-intro h2:first-child,
.product-group-logos-outro h2:first-child {
    margin-top: 0;
}

.product-group-logos-intro h2:after,
.product-group-logos-outro h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #245109;
}

.product-group-logos-intro h3,
.product-group-logos-outro h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.product-group-logos-intro h4,
.product-group-logos-outro h4 {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin: 25px 0 12px 0;
}

/* Paragraphs */
.product-group-logos-intro p,
.product-group-logos-outro p {
    margin: 0;
    padding: 0 0 20px 0;
    font-size: 22px;
    line-height: 1.5;
    color: #4a4a4a;
}

.product-group-logos-intro p:last-child,
.product-group-logos-outro p:last-child {
    margin-bottom: 0;
}

/* Bold text */
.product-group-logos-intro b,
.product-group-logos-intro strong,
.product-group-logos-outro b,
.product-group-logos-outro strong {
    font-weight: 700;
    color: #222;
}

/* Lists */
.product-group-logos-intro ul,
.product-group-logos-intro ol,
.product-group-logos-outro ul,
.product-group-logos-outro ol {
    margin: 20px 0;
    padding-left: 0;
    list-style-position: inside;
}

.product-group-logos-intro ul,
.product-group-logos-outro ul {
    list-style-type: none;
}

.product-group-logos-intro ul li,
.product-group-logos-outro ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
}

.product-group-logos-intro ul li:before,
.product-group-logos-outro ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #245109;
    font-weight: bold;
}

.product-group-logos-intro ol,
.product-group-logos-outro ol {
    list-style-type: none;
    counter-reset: item;
}

.product-group-logos-intro ol li,
.product-group-logos-outro ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
    counter-increment: item;
}

.product-group-logos-intro ol li:before,
.product-group-logos-outro ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    width: 26px;
    height: 26px;
    background-color: #245109;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    top: 2px;
}

/* Links */
.product-group-logos-intro a,
.product-group-logos-outro a {
    color: #245109;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.product-group-logos-intro a:hover,
.product-group-logos-outro a:hover {
    color: #418B56;
    border-bottom-color: #418B56;
}

/* Responsive */
@media (max-width: 768px) {

    .product-group-logos-intro h2,
    .product-group-logos-outro h2 {
        font-size: 26px;
    }

    .product-group-logos-intro h3,
    .product-group-logos-outro h3 {
        font-size: 20px;
    }

    .product-group-logos-intro p,
    .product-group-logos-intro ul li,
    .product-group-logos-intro ol li,
    .product-group-logos-outro p,
    .product-group-logos-outro ul li,
    .product-group-logos-outro ol li {
        font-size: 16px;
    }

    .product-group-logos-intro,
    .product-group-logos-outro {
        margin-bottom: 30px;
        margin-top: 30px;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-page-section {
    background-color: #f8f9fa;
    padding: 60px 0 80px 0;
}

.contact-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.contact-page-title {
    font-size: 76px;
    text-transform: uppercase;
    color: #245109;
    font-weight: 700;
    position: relative;
    display: table;
    margin: 0 auto 50px auto;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.1;
    letter-spacing: normal;
}

.contact-page-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #245109;
}

.contact-page-intro {
    /* Container style if needed */
}

.contact-page-intro p {
    margin: 0;
    padding: 0 0 20px 0;
    font-size: 22px;
    line-height: 1.5;
    color: #4a4a4a;
}

/* Contact Grid - 50/50 Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Google Maps Button */
.contact-maps-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 20px 30px;
    background-color: #245109;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.contact-maps-btn:hover {
    background-color: #1a3b06;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 81, 9, 0.3);
    color: #fff;
}

.contact-maps-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.contact-maps-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Contact Info Card */
.contact-info-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.contact-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #245109;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Contact Info Items */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-info-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #e8f5e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #245109;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-info-value {
    font-size: 18px;
    color: #333;
    font-style: normal;
    line-height: 1.5;
}

.contact-info-link {
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.contact-info-link:hover {
    color: #245109;
}

/* Opening Hours */
.contact-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.contact-hours-item:last-child {
    border-bottom: none;
}

.contact-hours-item.is-today {
    background-color: #e8f5e0;
    margin: 0 -15px;
    padding: 12px 15px;
    border-radius: 8px;
}

.contact-hours-day {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.contact-hours-time {
    font-size: 16px;
    color: #555;
}

.closed-text {
    color: #d93b3b;
    font-weight: 600;
}

.contact-status-message {
    display: none;
    /* JS ile açılacak */
    margin-top: 25px;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-status-message.status-open {
    background-color: #ecfdf5;
    color: #047857;
    border-color: #d1fae5;
}

.contact-status-message.status-closed {
    background-color: #fef2f2;
    color: #b91c1c;
    border-color: #fee2e2;
}

.contact-status-message.status-closing-soon {
    background-color: #fffbeb;
    color: #b45309;
    border-color: #fcd34d;
}

.contact-status-message .status-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 12px;
    vertical-align: middle;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-hours-item.is-today {
    background-color: #f3f4f6;
    margin: 0 -20px;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid #245109;
}

.contact-hours-item.is-today .contact-hours-day {
    color: #245109;
}

/* Status Badge in List */
.status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 12px;
    vertical-align: middle;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.status-badge.status-open {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-badge.status-closing-soon {
    background-color: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde047;
}

.status-badge.status-closed {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Contact Form Card */
.contact-form-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-page-title {
        font-size: 38px;
    }

    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-page-section {
        padding: 40px 0 60px 0;
    }

    .contact-page-title {
        font-size: 32px;
    }

    .contact-maps-btn {
        font-size: 16px;
        padding: 15px 20px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px;
        border-radius: 12px;
    }

    .contact-card-title {
        font-size: 22px;
    }
}

/* ==========================================================================
   STANDARD PAGE STYLES
   ========================================================================== */
.standard-page-section {
    background-color: #fff;
    padding: 60px 0 80px 0;
}

.standard-page-header {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.standard-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin: 0 0 25px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: "Anek Tamil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.standard-page-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.standard-page-tagline {
    font-size: 24px;
    line-height: 1.4;
    color: #666;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.standard-page-intro p {
    margin: 0 0 1em 0;
}

.standard-page-body {
    max-width: 900px;
    margin: 0 auto;
}

/* Rich text content styling for standard page */
.standard-page-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: #245109;
    margin: 40px 0 20px 0;
    line-height: 1.2;
}

.standard-page-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
}

.standard-page-body h4 {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin: 25px 0 10px 0;
}

.standard-page-body p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 20px 0;
}

.standard-page-body ul,
.standard-page-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.standard-page-body li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.standard-page-body a {
    color: #245109;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.standard-page-body a:hover {
    border-bottom-color: #245109;
}

/* Responsive */
@media (max-width: 768px) {
    .standard-page-section {
        padding: 40px 0 60px 0;
    }

    .standard-page-title {
        font-size: 32px;
    }

    .standard-page-intro {
        font-size: 18px;
    }

    .standard-page-body h2 {
        font-size: 26px;
    }

    .standard-page-body h3 {
        font-size: 20px;
    }

    .standard-page-body p,
    .standard-page-body li {
        font-size: 16px;
    }
}