/* Custom Styles */
:root {
    --light-yellow: #f0e9ca;
    --primary-color: #5b1229;
    --grey: #e4e4e4;
    --grey-2: #848484;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Yatay scroll'u engelle */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader-logo {
    width: 200px;
    height: auto;
    animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.bg-light-yellow {
    background-color: var(--light-yellow) !important;
}

/* Topbar Styles */
.topbar {
    height: 40px;
    display: flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.topbar-shipping-info {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.1px;
    line-height: 1;
}

.topbar-contact-number {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: -0.15px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.topbar-contact-number:hover {
    opacity: 0.7;
}

.topbar-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.topbar-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.topbar a:hover .topbar-social-icon {
    opacity: 0.7;
}

/* Topbar Right Content - Masaüstünde en sağa hizala */
@media (min-width: 992px) {
    .topbar .container {
        position: relative;
        padding-right: 0 !important; /* Container'ın sağ padding'ini kaldır */
    }
    
    .topbar .row {
        margin-right: 0;
    }
    
    .topbar .col-lg-6:last-child {
        padding-right: 0 !important; /* Sağ kolonun padding'ini kaldır */
    }
    
    .topbar-right-content {
        width: 100%;
        justify-content: flex-end !important;
    }
    
    .topbar-social-icons {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .topbar {
        height: auto;
        min-height: 40px;
        padding: 8px 0;
    }
    
    .topbar-shipping-info {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .topbar-contact-number {
        font-size: 14px;
    }
    
    .topbar-icon,
    .topbar-social-icon {
        width: 20px;
        height: 20px;
    }
    
    .topbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobilde yatay scroll'u engelle */
    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
}

/* Container max-width for desktop */
@media (min-width: 992px) {
    .container {
        max-width: 1550px;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Header Styles */
.header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Header container topbar ile aynı genişlikte olacak - Bootstrap default */

.header-white {
    background-color: #ffffff;
    border-bottom: 1px solid #e4e4e4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative; /* Products sayfasında relative olacak */
    top: 0; /* Products sayfasında top: 0 */
}

.header-transparent {
    background-color: transparent;
}

.header-transparent .navbar {
    background-color: transparent;
}

.header-transparent .nav-link {
    color: #1d1d1d;
}

.header-transparent .header-icon-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header-logo {
    max-height: 80px;
    width: auto;
    height: 140px;
    object-fit: contain;
}

.header-icon-btn {
    width: 54px;
    height: 54px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 0;
}

.header-icon-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-yellow);
}

.header-icon-btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-yellow);
    border-color: var(--primary-color);
}

.header-icon-btn.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
}

.header-icon-btn-heart {
    border: 2px solid var(--primary-color) !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon-btn-heart:hover {
    background-color: transparent !important;
    border-color: var(--primary-color) !important;
}

.header-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    font-size: 20px;
    color: #1d1d1d !important;
    letter-spacing: 0.15px;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 40px; /* Topbar'ın altından başla - tüm ekranı kaplasın */
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: calc(100vh - 40px);
        background-color: var(--primary-color);
        z-index: 9999;
        padding: 2rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-collapse.show .mobile-menu-footer {
        display: block !important;
    }
    
    .mobile-menu-footer {
        display: none !important; /* Varsayılan olarak gizli */
    }
    
    .navbar-nav {
        width: 100%;
        margin-top: 4rem; /* Ana Sayfa yazısını aşağı al */
        flex: 1;
    }
    
    .nav-link {
        color: var(--light-yellow) !important;
        font-size: 24px;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(240, 233, 202, 0.2);
        text-align: center;
    }
    
    .nav-link:hover {
        color: var(--light-yellow) !important;
        background-color: rgba(240, 233, 202, 0.1);
    }
    
    .nav-link.active {
        color: var(--light-yellow) !important; /* Mevcut sayfa da altın sarısı */
        background-color: rgba(240, 233, 202, 0.2);
        font-weight: 600;
    }
    
    .navbar-toggler-custom {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        background-color: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-custom:hover {
        background-color: var(--primary-color);
    }
    
    .navbar-toggler-custom:hover .navbar-toggler-icon-custom {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240, 233, 202, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Hamburger butonu açık olduğunda (menü açık) */
    .navbar-toggler-custom[aria-expanded="true"] {
        background-color: var(--light-yellow);
        border-color: var(--light-yellow);
    }
    
    .navbar-toggler-custom[aria-expanded="true"] .navbar-toggler-icon-custom {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(91, 18, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-toggler-icon-custom {
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(91, 18, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
    
    .navbar-toggler {
        display: none; /* Bootstrap default toggler'ı gizle */
    }
    
    /* Header icons mobile menu içinde - yan yana */
    .navbar-collapse .d-flex.header-icon-container {
        flex-direction: row;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .navbar-collapse .header-icon-btn {
        width: 60px;
        height: 60px;
        border-color: var(--light-yellow);
        color: var(--light-yellow);
    }
    
    .navbar-collapse .header-icon-btn.btn-outline-light {
        border-color: var(--light-yellow);
        color: var(--light-yellow);
    }
    
    .navbar-collapse .header-icon-btn:hover {
        background-color: var(--light-yellow);
        color: var(--primary-color);
    }
    
    .navbar-collapse .header-icon-btn.btn-link {
        border: none;
        color: var(--light-yellow);
    }
    
    .navbar-collapse .header-icon-btn.btn-link:hover {
        background-color: transparent;
        opacity: 0.7;
    }
    
    /* Favoriler butonuna yuvarlak border */
    .navbar-collapse .header-icon-btn-heart {
        border: 2px solid var(--light-yellow) !important;
        border-radius: 50% !important;
        width: 60px !important;
        height: 60px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-collapse .header-icon-btn-heart:hover {
        background-color: var(--light-yellow) !important;
        color: var(--primary-color) !important;
    }
    
    /* Mobile Menu Footer */
    .mobile-menu-footer {
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(240, 233, 202, 0.2);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        background-color: var(--primary-color);
    }
    
    .mobile-menu-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }
    
    .mobile-menu-contact {
        color: var(--light-yellow);
        font-size: 18px;
        font-weight: 500;
    }
    
    .mobile-menu-social-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-social-icon:hover {
        opacity: 0.7;
    }
    
    .mobile-menu-logo {
        max-width: 150px;
        height: auto;
        filter: brightness(0) invert(1); /* Logo'yu beyaz yap */
    }
    
    /* Mobile Cart Icon (Left Side) */
    .header-icon-btn-cart {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-icon-btn-cart:hover {
        background-color: var(--primary-color);
        color: var(--light-yellow);
    }
}

/* Hero Slider Section */
.hero-slider-section {
    min-height: calc(100vh - 40px);
    padding-top: 185px; /* Header yüksekliği (140px) + 100px boşluk */
    padding-bottom: 150px; /* Banner için yeterli yer */
    overflow: visible; /* Banner'ın görünmesi için */
    position: relative;
    margin-top: 0; /* Header ile üst üste olacak */
}

/* Fixed Background Image */
.hero-slider-bg-image {
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-slider-bg-img {
    width: 100%;
    height: 73%;
    object-fit: cover;
    object-position: center;
}

.hero-slider-background {
    background: linear-gradient(270deg, rgba(255, 244, 245, 0) 0%, #cde7fa 100%);
    z-index: 1;
    top: 0;
    left: 0;
    pointer-events: none;
    height: 73% !important;
}

.hero-slider-section .container {
    position: relative;
    z-index: 10; /* Yazılar gradient'in üstünde olacak */
    /* Topbar ile aynı genişlikte - Bootstrap default container */
}

.hero-slider-section .row {
    position: relative;
    z-index: 10;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-slider-title {
    font-size: 61px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 11; /* Gradient'in üstünde */
    margin-bottom: 24px; /* Metin ile arasında 24px */
    margin-top: 0;
}

.hero-slider-description {
    font-size: 20px;
    font-weight: 500;
    color: #1d1d1d;
    line-height: 1.5;
    letter-spacing: 0.15px;
    position: relative;
    max-width: 619px;
    min-height: 120px;
    z-index: 11; /* Gradient'in üstünde */
    margin-bottom: 24px; /* Buton ile arasında 24px */
}

.hero-slider-btn {
    background-color: var(--primary-color);
    color: var(--light-yellow);
    border: none;
    padding: 15px 24px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11; /* Gradient'in üstünde */
}

.hero-slider-btn:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    color: var(--light-yellow);
}

.hero-slider-thumbnails {
    margin-top: 40px; /* Yukarıya biraz boşluk */
    position: relative;
    z-index: 11; /* Gradient'in üstünde */
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-slider-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Progress Line */
.hero-slider-progress-line {
    width: 256px;
    height: 2px;
    display: flex;
    gap: 0;
    position: relative;
}

.hero-slider-progress-segment {
    flex: 1;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.hero-slider-progress-segment.active {
    opacity: 1 !important;
    background-color: var(--primary-color);
}

/* Navigation Buttons */
.hero-slider-nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-nav-btn {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn svg {
    width: 10px;
    height: 17px;
}

.slider-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-nav-btn:hover:not(.disabled) {
    opacity: 0.7;
}

.hero-slider-thumb {
    width: 75px;
    height: 75px;
    border-radius: 75px;
    background-size: cover;
    background-position: center top; /* Ürün fotoğrafını yukarı hizala */
    background-repeat: no-repeat;
    background-color: lightgray;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 17.276px 34.553px -8.293px rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent; /* Border için yer bırak */
}

/* Sabit arka plan fotoğrafı (slider.png) - JavaScript ile eklenecek */
.hero-slider-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 75px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

/* Ürün fotoğrafı (değişen) - JavaScript ile eklenecek */
.hero-slider-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 75px;
    background-size: cover;
    background-position: center top; /* Ürün fotoğrafını yukarı hizala, aşağıdan kes */
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.hero-slider-thumb.active {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    box-shadow: 0 17.276px 34.553px -8.293px rgba(0, 0, 0, 0.10);
    border: 3px solid var(--primary-color); /* Seçili olanın border'ı */
}

.hero-slider-thumb.active::before {
    border-radius: 100px;
}

.hero-slider-thumb.active::after {
    border-radius: 100px;
    background-position: center top; /* Aktif olanın da ürün fotoğrafını yukarı hizala */
}

.slider-nav-btn {
    color: var(--primary-color);
    font-size: 24px;
    text-decoration: none;
}

.slider-nav-btn:hover {
    color: var(--primary-color);
    opacity: 0.7;
}

.hero-slider-image-container {
    position: relative;
    z-index: 2;
    min-height: 600px;
    padding-left: 0; /* Ürünü sola kaydırmak için */
}

.hero-slider-main-image {
    max-width: 100%;
    height: auto;
    transform: rotate(12deg) translateY(-40px); /* Ürünü yukarı taşı */
    filter: drop-shadow(0px 6px 30px rgba(127, 127, 127, 0.5));
    position: relative;
    z-index: 3; /* Floating elements'lerin (z-index: 4) altında olacak */
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    margin-left: -50px; /* Ürünü biraz daha sola kaydır */
}

.hero-slider-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4; /* Ürün görselinin (z-index: 3) üstünde olacak */
    pointer-events: none;
}

.hero-slider-floating-1 {
    width: 129px;
    height: 180px;
    bottom: 41px;
    right: 56%;
    object-fit: contain;
    z-index: 5;
    position: relative
}

.hero-slider-floating-2 {
    width: 207px;
    height: 283px;
    top: 7%;
    left: 0;
    transform: rotate(3.71deg);
    object-fit: contain;
    z-index: 5;
    position: relative;
}

.hero-slider-floating-3 {
    width: 165px;
    height: 188px;
    bottom: 34%;
    right: 26px;
    transform: rotate(69.2deg);
    object-fit: contain;
    z-index: 5;
    position: relative;
}

/* Hero Slider Banner */
.hero-slider-banner {
    background-color: var(--primary-color);
    height: 80px; /* Figma'da 80px */
    padding: 0;
    transform: rotate(-6deg) skewX(-6deg);
    bottom: auto; /* bottom: 0'dan kaldır */
    top: 65%; /* Ürün görselinin altından geçecek şekilde yukarı taşı */
    z-index: 4; /* Ürün görselinin (z-index: 5) altında olacak */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.hero-slider-banner-text-wrapper {
    display: flex;
    width: 200%;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.hero-slider-banner-text {
    color: var(--light-yellow);
    font-size: 46px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    padding: 0;
    line-height: 80px; /* Banner height ile aynı */
    flex-shrink: 0;
    width: 50%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive - Header & Slider */
/* Responsive - Bootstrap container otomatik ayarlanır */

@media (max-width: 992px) {
    .header-logo {
        height: 100px;
    }
    
    .hero-slider-banner {
        top: calc(100% - 150px); /* Mobilde daha yukarı */
    }
    
    .hero-slider-title {
        font-size: 48px;
    }
    
    .hero-slider-description {
        font-size: 18px;
    }
    
    .hero-slider-image-container {
        min-height: 400px;
    }
    
    .hero-slider-main-image {
        margin-left: 0; /* Mobilde margin kaldır */
    }
    
    .hero-slider-floating-1,
    .hero-slider-floating-2,
    .hero-slider-floating-3 {
        display: none;
    }
    
    .hero-slider-banner {
        height: 60px;
    }
    
    .hero-slider-banner-text {
        font-size: 32px;
        line-height: 60px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 40px;
    }
    
    .header-logo {
        height: 80px;
    }
    
    .header-icon-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .hero-slider-section {
        padding-top: 120px; /* Slider başlığı için daha fazla boşluk */
        padding-bottom: 150px;
        min-height: auto;
    }
    
    .hero-slider-section .row {
        flex-direction: column;
    }
    
    .hero-slider-title {
        font-size: 32px;
        text-align: center;
        margin-top: 2rem; /* Başlığı aşağı al */
    }
    
    .hero-slider-description {
        font-size: 16px;
        text-align: center;
    }
    
    .hero-slider-btn {
        font-size: 16px;
        padding: 12px 20px;
        display: block;
        margin: 0 auto;
    }
    
    .hero-slider-thumb {
        width: 60px;
        height: 60px;
    }
    
    .hero-slider-thumb.active {
        width: 75px;
        height: 75px;
    }
    
    .hero-slider-image-container {
        min-height: 300px;
        margin-top: -1rem; /* Ürün fotoğrafını yukarı al */
    }
    
    .hero-slider-main-image {
        margin-left: 0;
        transform: rotate(0deg); /* Mobilde düz */
        max-width: 80%;
    }
    
    .hero-slider-banner {
        position: absolute;
        top: 65%; /* slider.png'in bittiği yerden biraz yukarı */
        bottom: auto;
        margin-top: 0;
        transform: rotate(-6deg) skewX(-6deg); /* Masaüstü gibi çapraz yap */
        width: 100%;
    }
    
    .hero-slider-banner-text {
        font-size: 24px;
        padding: 15px 0;
    }
    
    .hero-slider-thumbnails {
        justify-content: center;
    }
}

/* Categories Section */
.categories-section {
    padding: 40px 0 80px 0;
    background-color: #ffffff;
}

.categories-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.category-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-box {
    width: 233px;
    height: 233px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-box:hover {
    transform: translateY(-10px);
}

/* Kategori renkleri */
.category-1 {
    background-color: #FFB7D7; /* Pembe */
}

.category-2 {
    background-color: #E2FFB9; /* Açık yeşil */
}

.category-3 {
    background-color: #FFD1BB; /* Açık turuncu */
}

.category-4 {
    background-color: #E0FFF4; /* Açık mint yeşili */
}

.category-image-wrapper {
    width: 120px;
    height: 202px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.category-image-special {
    width: 170px;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Tam ortala */
}

.category-title {
    color: #000;
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Categories Responsive */
@media (max-width: 992px) {
    .category-box {
        width: 200px;
        height: 200px;
    }
    
    .category-image-wrapper {
        width: 100px;
        height: 170px;
    }
    
    .category-image-special {
        width: 140px;
    }
    
    .category-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 30px 0 60px 0;
    }
    
    .categories-container {
        gap: 16px;
    }
    
    .category-box {
        width: 180px;
        height: 180px;
    }
    
    .category-image-wrapper {
        width: 90px;
        height: 150px;
    }
    
    .category-image-special {
        width: 120px;
    }
    
    .category-title {
        font-size: 18px;
    }
}

/* Products Banner Section */
.products-banner-section {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 0; /* Header artık relative olduğu için margin gerekmez */
    overflow: hidden;
}

/* Corporate Banner Section (same styles as products) */
.corporate-banner-section {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 0;
    overflow: hidden;
}

/* Gallery Banner Section (same styles as products) */
.gallery-banner-section {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 0;
    overflow: hidden;
}

.gallery-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery-banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 244, 245, 0.00) 0%, #CDE7FA 100%);
    z-index: 2;
}

.gallery-banner-content {
    position: relative;
    z-index: 3;
    padding-left: 0;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.gallery-banner-title {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin: 0;
}

.gallery-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: transparent;
}

.gallery-breadcrumb span {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-align: center;
    font-feature-settings: 'liga' off;
}

.gallery-share-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Page Section */
.gallery-page-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.gallery-section-title {
    color: var(--primary-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.25px;
    margin: 0 0 40px 0;
}

.gallery-section-title-video {
    margin-top: 80px;
    margin-bottom: 40px;
}

.gallery-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-photo-item:hover {
    transform: scale(1.02);
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.gallery-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-video-item:hover {
    transform: scale(1.02);
}

.gallery-video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.gallery-video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.gallery-video-item:hover .gallery-video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-video-play-overlay svg {
    width: 57px;
    height: 56px;
    transition: transform 0.3s ease;
}

.gallery-video-item:hover .gallery-video-play-overlay svg {
    transform: scale(1.1);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.gallery-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.gallery-lightbox-close:hover {
    opacity: 0.7;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox-prev {
    left: -60px;
}

.gallery-lightbox-next {
    right: -60px;
}

.corporate-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.corporate-banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.corporate-banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 244, 245, 0.00) 0%, #CDE7FA 100%);
    z-index: 2;
}

.corporate-banner-content {
    position: relative;
    z-index: 3;
    padding-left: 0;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.corporate-banner-title {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin: 0;
}

.corporate-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.corporate-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: transparent;
}

.corporate-breadcrumb span {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-align: center;
    font-feature-settings: 'liga' off;
}

.corporate-share-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Corporate Page Section */
.corporate-page-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.corporate-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.corporate-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.corporate-content-title {
    color: #1d1d1d;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    margin: 0;
}

.corporate-content-text {
    color: var(--grey-2);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
}

.corporate-content-text p {
    margin: 0 0 24px 0;
}

.corporate-content-right {
    flex-shrink: 0;
}

.corporate-content-image {
    width: 360px;
    height: 360px;
    border-radius: 10px;
    background: lightgray 50% / cover no-repeat;
    overflow: hidden;
}

.corporate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.products-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.products-banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 244, 245, 0.00) 0%, #CDE7FA 100%);
    z-index: 2;
}

.products-banner-content {
    position: relative;
    z-index: 3;
    padding-left: 0; /* Container padding ile hizalama */
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.products-banner-title {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin: 0;
}

.products-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: transparent;
}

.products-breadcrumb span {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-align: center;
    font-feature-settings: 'liga' off;
}

.products-share-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-share-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Products Filters Section */
.products-filters-section {
    padding: 24px 0;
    background-color: #ffffff;
}

.products-filters-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.products-filters-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.products-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid var(--grey);
    background-color: #ffffff;
    color: #000000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.products-filter-btn-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-yellow);
}

.products-filter-btn-active:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-yellow);
}

.products-filters-right {
    display: flex;
    align-items: center;
}

.products-sort-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--grey);
    background-color: #ffffff;
    color: #000000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-sort-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.products-sort-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Products Page Section */
.products-page-section {
    background-color: #ffffff;
    min-height: 60vh;
    padding-bottom:40px;
}

.products-page-title {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Products Banner Responsive */
@media (max-width: 992px) {
    .products-banner-content {
        padding-left: 15px;
        padding-top: 60px;
    }
    
    .products-banner-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .products-banner-section {
        height: 180px;
    }
    
    .products-banner-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .products-banner-title {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    
    .products-breadcrumb {
        padding: 8px 14px;
    }
    
    .products-breadcrumb span {
        font-size: 14px;
    }
    
    .products-share-btn {
        width: 28px;
        height: 28px;
    }
    
    /* Products Filters Mobile */
    .products-filters-section {
        padding: 16px 0;
    }
    
    .products-filters-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .products-filters-left {
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .products-filter-btn {
        padding: 10px 16px;
        font-size: 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .products-filters-right {
        width: 100%;
    }
    
    .products-sort-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 16px;
    }
    
    .products-sort-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Corporate Banner Mobile */
    .corporate-banner-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .corporate-banner-title {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    
    .corporate-breadcrumb {
        padding: 8px 14px;
    }
    
    .corporate-breadcrumb span {
        font-size: 14px;
    }
    
    .corporate-share-btn {
        width: 28px;
        height: 28px;
    }
    
    /* Corporate Content Mobile */
    .corporate-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .corporate-content-title {
        font-size: 20px;
    }
    
    .corporate-content-text {
        font-size: 16px;
    }
    
    .corporate-content-right {
        width: 100%;
    }
    
    .corporate-content-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    /* Gallery Banner Mobile */
    .gallery-banner-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .gallery-banner-title {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    
    .gallery-breadcrumb {
        padding: 8px 14px;
    }
    
    .gallery-breadcrumb span {
        font-size: 14px;
    }
    
    .gallery-share-btn {
        width: 28px;
        height: 28px;
    }
    
    /* Gallery Content Mobile */
    .gallery-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .gallery-section-title-video {
        margin-top: 60px;
    }
    
    .gallery-photos-grid,
    .gallery-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .gallery-lightbox-prev {
        left: 10px;
    }
    
    .gallery-lightbox-next {
        right: 10px;
    }
    
    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    /* Articles Banner Mobile */
    .articles-banner-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .articles-banner-title {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    
    .articles-breadcrumb {
        padding: 8px 14px;
    }
    
    .articles-breadcrumb span {
        font-size: 14px;
    }
    
    .articles-share-btn {
        width: 28px;
        height: 28px;
    }
    
    /* Articles Content Mobile */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-card-image {
        height: 200px;
    }
    
    /* Article Detail Banner Mobile */
    .article-detail-banner-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .article-detail-banner-title {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    
    .article-detail-breadcrumb {
        padding: 8px 14px;
    }
    
    .article-detail-breadcrumb span {
        font-size: 14px;
    }
    
    .article-detail-share-btn {
        width: 28px;
        height: 28px;
    }
    
    /* Article Detail Content Mobile */
    .article-detail-content-main .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .article-detail-text-content {
        margin-bottom: 40px;
    }
    
    .article-detail-image-wrapper {
        width: 280px;
        height: 280px;
    }
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-products-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.featured-products-header {
    margin-bottom: 60px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px;
    position: relative;
}

.featured-products-title {
    color: var(--primary-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.featured-products-view-all-btn {
    display: inline-flex;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-left: auto;
}

.featured-products-view-all-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-yellow);
}

.featured-products-view-all-btn:hover .view-all-text {
    color: var(--light-yellow);
}

.featured-products-view-all-btn:hover svg path {
    fill: var(--light-yellow);
}

.view-all-text {
    color: var(--primary-color);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    transition: color 0.3s ease;
}

.featured-products-view-all-btn svg {
    width: 24px;
    height: 24px;
}

.featured-products-view-all-btn svg path {
    transition: fill 0.3s ease;
}

.featured-products-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    width: 362px;
}

.product-image-box {
    width: 362px;
    height: 362px;
    border-radius: 10px;
    background: #F7F7F7;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    width: 166px;
    height: 280px;
    aspect-ratio: 83/140;
    object-fit: contain;
    object-position: center;
}

.product-favorite-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 9.259px;
    border-radius: 27.778px;
    background: var(--White, #FFF);
    border: none;
    cursor: pointer;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.product-favorite-btn svg {
    width: 25px;
    height: 22px;
}

.product-title {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 24px 0 0 0;
}

.product-weight {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price-old {
    color: var(--grey-2);
    text-align: right;
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: line-through;
}

.product-price {
    color: var(--primary-color);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.25px;
}

/* Eğer indirimsiz fiyat yoksa normal fiyat sola yaslı olacak */
.product-price-wrapper:not(:has(.product-price-old)) {
    margin-right: auto;
}

.product-add-to-cart-btn {
    display: flex;
    width: 200px;
    height: 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.product-add-to-cart-btn:hover {
    background-color: var(--primary-color);
}

.product-add-to-cart-btn:hover .add-to-cart-text {
    color: var(--light-yellow);
}

.product-add-to-cart-btn:hover svg path {
    fill: var(--light-yellow);
}

.add-to-cart-text {
    color: var(--primary-color);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    transition: color 0.3s ease;
}

.product-add-to-cart-btn svg {
    width: 24px;
    height: 24px;
}

.product-add-to-cart-btn svg path {
    transition: fill 0.3s ease;
}

/* Featured Products Responsive */
@media (max-width: 992px) {
    .featured-products-title {
        font-size: 36px;
    }
    
    
    .featured-products-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .featured-products-section {
        padding: 60px 0;
    }
    
    .featured-products-header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .featured-products-title {
        font-size: 28px;
        text-align: left !important;
        position: static !important;
        transform: none !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    .featured-products-view-all-btn {
        height: 32px;
        padding: 0 12px;
        font-size: 14px;
    }
    
    .featured-products-view-all-btn .view-all-text {
        font-size: 14px;
    }
    
    .featured-products-view-all-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .featured-products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-card {
        width: 100%;
        max-width: none;
    }
    
    .product-image-box {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-image {
        width: 100px;
        height: 168px;
        aspect-ratio: 83/140;
        object-fit: contain;
    }
    
    .product-title {
        font-size: 18px;
        margin-top: 16px;
    }
    
    .product-weight {
        font-size: 18px;
    }
    
    .product-price-row {
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        margin-top: 16px;
    }
    
    .product-price-wrapper {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .product-price {
        font-size: 28px;
    }
    
    .product-price-old {
        font-size: 10px;
    }
    
    .product-add-to-cart-btn {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }
    
    .add-to-cart-text {
        font-size: 16px;
    }
    
    .product-add-to-cart-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .product-favorite-btn {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    
    .product-favorite-btn svg {
        width: 20px;
        height: 18px;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: var(--light-yellow);
    position: relative;
    flex-shrink: 0;
}

.feature-icon {
    width: 36px;
    height: auto;
    object-fit: contain;
    position: absolute;
}

.feature-icon-1 {
    left: 20%;
    top: 36%;
    transform: translate(-50%, -50%);
}

.feature-icon-3 {
    left: 20%;
    top: 23.33%;
    transform: translate(-50%, -50%);
}

.feature-icon-shield {
    left: 24.17%;
    top: 21.67%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.feature-icon-7 {
    left: 20%;
    top: 15%;
    transform: translate(-50%, -50%);
    width: 36px;
}

.feature-text {
    color: #1d1d1d;
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
    white-space: nowrap;
}

/* Features Responsive */
@media (max-width: 992px) {
    .features-container {
        gap: 20px;
    }
    
    .feature-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: flex-start;
        justify-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 150px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 10px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }
    
    .feature-text {
        font-size: 12px;
        white-space: normal;
        line-height: 1.4;
    }
}

/* Promotion Section */
.promotion-section {
    width: 100%;
    height: 600px;
    background: linear-gradient(270deg, rgba(255, 244, 245, 0.00) 0%, #CDE7FA 100%), #F4F4F4;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.promotion-section .container {
    width: 100%;
    margin: 0 auto;
}

.promotion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 40px;
}

.promotion-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 50%;
}

.promotion-title {
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin: 0;
    max-width:625px ;
}

.promotion-description {
    color: var(--grey-2);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
}

.promotion-btn {
    display: flex;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.promotion-btn:hover {
    background: var(--primary-color);
    opacity: 0.9;
}

.promotion-btn-text {
    color: var(--light-yellow);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
}

.promotion-btn svg {
    width: 24px;
    height: 24px;
}

.promotion-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
}

.promotion-image {
    width: 748.007px;
    height: 526px;
    object-fit: contain;
}

/* Promotion Responsive */
@media (max-width: 992px) {
    .promotion-section {
        height: auto;
        min-height: 500px;
        padding: 60px 0;
    }
    
    .promotion-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .promotion-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .promotion-title {
        font-size: 42px;
    }
    
    .promotion-description {
        font-size: 18px;
    }
    
    .promotion-btn {
        margin: 0 auto;
    }
    
    .promotion-image-wrapper {
        max-width: 100%;
    }
    
    .promotion-image {
        width: 100%;
        max-width: 600px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .promotion-section {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .promotion-title {
        font-size: 32px;
    }
    
    .promotion-description {
        font-size: 16px;
    }
    
    .promotion-btn {
        height: 48px;
        padding: 0 20px;
        font-size: 18px;
    }
    
    .promotion-btn-text {
        font-size: 18px;
    }
    
    .promotion-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .promotion-image {
        max-width: 100%;
    }
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.articles-header {
    margin-bottom: 60px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px;
    position: relative;
}

.articles-title {
    color: var(--primary-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.articles-view-all-btn {
    display: inline-flex;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-left: auto;
}

.articles-view-all-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-yellow);
}

.articles-view-all-btn:hover .view-all-text {
    color: var(--light-yellow);
}

.articles-view-all-btn:hover svg path {
    fill: var(--light-yellow);
}

.articles-view-all-btn .view-all-text {
    color: var(--primary-color);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    transition: color 0.3s ease;
}

.articles-view-all-btn svg {
    width: 24px;
    height: 24px;
}

.articles-view-all-btn svg path {
    transition: fill 0.3s ease;
}

.articles-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.article-card {
    width: 491px;
    height: 521px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
    z-index: 1;
}

.article-link-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 9.259px;
    border-radius: 27.778px;
    background: var(--White, #FFF);
    border: none;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.article-link-btn:hover {
    background: var(--primary-color);
}

.article-link-btn:hover svg path {
    stroke: var(--light-yellow);
}

.article-link-btn svg {
    width: 24px;
    height: 24px;
    transform: rotate(50deg);
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.article-link-btn:hover svg {
    transform: rotate(55deg);
}

.article-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.article-title {
    color: var(--White, #FFF);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    max-width: 300px;
}

.article-date {
    color: var(--White, #FFF);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
}

/* Articles Responsive */
@media (max-width: 992px) {
    .articles-title {
        font-size: 36px;
    }
    
    
    .articles-title {
        text-align: center;
    }
    
    .articles-grid {
        justify-content: center;
    }
    
    .article-card {
        width: 100%;
        max-width: 491px;
        height: auto;
        aspect-ratio: 491/521;
    }
}

@media (max-width: 768px) {
    .articles-section {
        padding: 60px 0;
    }
    
    .articles-header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .articles-title {
        font-size: 28px;
        text-align: left !important;
        margin: 0 !important;
    }
    
    .articles-view-all-btn {
        height: 32px;
        padding: 0 12px;
        font-size: 14px;
    }
    
    .articles-view-all-btn .view-all-text {
        font-size: 14px;
    }
    
    .articles-view-all-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .articles-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .article-card {
        width: 100%;
        max-width: 491px;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-date {
        font-size: 18px;
    }
    
    .article-link-btn {
        width: 45px;
        height: 45px;
    }
    
    .article-link-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Footer */
.footer {
    width: 100%;
    max-width: 1920px;
    height: 490px;
    background: var(--light-yellow);
    margin: 0 auto;
    padding: 66px 0 0 0;
}

.footer .container {
    max-width: 1550px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    height: 100%;
}

.footer-top {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-logo-wrapper {
    width: 233px;
    height: 166px;
    flex-shrink: 0;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-main-content {
    display: flex;
    gap: 61px;
    align-items: flex-start;
    flex: 1;
    /* justify-content: flex-end; */
    margin-left: auto;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 17px;
    min-width: max-content;
}

.footer-link {
    color: var(--primary-color);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-divider {
    width: 1px;
    height: 241px;
    background-color: #ffffff;
    border-left: 1px solid var(--primary-color);
    flex-shrink: 0;
    margin: 0 10px;
}

@media (min-width: 993px) {
    .footer-divider {
        background-color: #ffffff;
        border-left: 1px solid var(--primary-color);
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 274px;
    position: relative;
}



.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-contact-text {
    color: var(--primary-color);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-text:hover {
    opacity: 0.7;
}

.footer-bottom {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 0;
}

.footer-badges {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-badge-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-badge-icon {
    width: 36px;
    height: 24px;
    object-fit: contain;
}

.footer-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-badge-title {
    color: #1d1d1d;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
}

.footer-badge-subtitle {
    color: #1d1d1d;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: normal;
}

.footer-copyright {
    display: flex;
    gap: 15px;
    align-items: center;
    height: 24px;
}

.footer-copyright-text {
    color: #1d1d1d;
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin: 0;
}

.footer-dev-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 36px;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    opacity: 0.7;
}

.footer-social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
    }
    
    .footer .container {
        text-align: center;
    }
    
    .footer-content {
        align-items: center;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .footer-main-content {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        width: 100%;
    }
    
    .footer-links-column {
        width: 100%;
        max-width: 300px;
        align-items: center;
        position: relative;
        padding-bottom: 20px;
    }
    
    .footer-links-column:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background-color: var(--primary-color);
        opacity: 0.3;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-contact {
        width: 100%;
        max-width: 300px;
        align-items: center;
        position: relative;
        padding-bottom: 20px;
    }
    
    .footer-contact::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background-color: var(--primary-color);
        opacity: 0.3;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo-wrapper {
        width: 180px;
        height: auto;
    }
    
    .footer-links-column {
        width: 100%;
    }
    
    .footer-contact {
        width: 100%;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .footer-badges {
        gap: 15px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-social {
        gap: 20px;
    }
}
