/* Kenza Kozmetik - Temel CSS Stilleri */

/* CSS Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Temel Stilleri */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FBF4EB;
    font-size: 16px;
    overflow-x: hidden;
}

/* HTML Temel Ayarları */
html {
    scroll-behavior: smooth;
}

/* HEADER STİLLERİ */
.main-header {
    background-color: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1000;
    padding: 15px 0;
}

.header-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 80px;
}

/* Sol ve Sağ Menü Alanları */
.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    margin-top: 10px;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

/* Orta Logo Alanı */
.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menü Listesi */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

/* Menü Linkleri */
.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--tema-rengi);
    background-color: transparent;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--tema-rengi);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 80%;
}

/* Logo Stilleri */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 130px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--tema-rengi);
    margin: 0;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-text:hover {
    color: var(--tema-rengi);
    opacity: 0.8;
}

/* Yeni Hamburger Menü Tasarımı */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    padding: 0;
    width: 80px;
    height: 100%;
    border-left: 1px solid var(--dark-color);
    transition: all 0.15s ease;
}

.hamburger-menu:before {
    content: '☰';
    font-size: 32px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

/* Aktif durumda stil değişimi */
.hamburger-menu.active {
    background-color: var(--tema-rengi);
    border-left-color: var(--tema-rengi);
}

.hamburger-menu.active:before {
    content: '✕';
    color: #FBF4EB;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--tema-rengi);
    z-index: 998;
    transition: left 0.15s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-item {
    list-style: none;
    margin: 0;
    width: 100%;
    text-align: left;
    position: relative;
    display: block;
}

.mobile-menu-item:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.707);
}

.mobile-menu-link {
    color: white;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    padding: 20px 25px;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Container Stilleri */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

/* Responsive Container Ayarları */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Flexbox Yardımcı Sınıfları */
.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

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

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Text Hizalama */
.text-center {
    text-align: center;
}

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

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

/* Margin ve Padding Yardımcıları */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

/* Gizleme ve Gösterme */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

/* Responsive Görünürlük */
@media (max-width: 768px) {
    .d-md-none {
        display: none;
    }
    
    .d-md-block {
        display: block;
    }
    
    /* Mobil Header Stilleri */
    .main-header {
        background-color: #FBF4EB;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        padding: 0;
        z-index: 999;
    }
    
    .header-nav {
        height: 80px;
        align-items: center;
        padding: 0 20px 0 20px;
    }
    
    /* Masaüstü menüyü gizle */
    .nav-left,
    .nav-right {
        display: none;
    }
    
    /* Logo mobilde */
    .nav-center {
        flex: 1;
        justify-content: flex-start;
        margin-left: 10px;
    }
    
    .logo {
        height: 70px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    /* Hamburger menüyü göster */
    .hamburger-menu {
        display: block;
    }
    
    /* Body için top margin (fixed header için) */
    body {
        padding-top: 80px;
    }
}

@media (max-width: 576px) {
    .d-sm-none {
        display: none;
    }
    
    .d-sm-block {
        display: block;
    }
}

/* Kozmetik Teması için Renk Değişkenleri */
:root {
    --primary-color: #e91e63;
    --secondary-color: #f8bbd9;
    --accent-color: #ff4081;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Genel Bağlantı Stilleri */
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

/* Buton Temel Stilleri */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* HERO SECTION STİLLERİ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background-color: #FBF4EB;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Sol Taraf - Metin İçeriği */
.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.title-line1,
.title-line2,
.title-line3 {
    display: block;
    font-weight: 600;
}

.title-line1 {
    color: var(--tema-rengi);
}

.title-line2 {
    color: var(--tema-rengi);
}

.title-line3 {
    color: var(--tema-rengi);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 400px;
}

.hero-btn {
    display: inline-block;
    background-color: var(--tema-rengi);
    color: white;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sağ Taraf - Ürün Görseli */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}



/* Responsive Hero Section */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .product-container {
        width: 300px;
        height: 300px;
    }
    
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        min-height: auto;
    }
    .hero-section .container {
        padding: 0px 40px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .product-container {
        width: 250px;
        height: 250px;
    }
    

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ÜRÜN ÖZELLİKLERİ BÖLÜMÜ */
.product-features-section {
    padding: 80px 0;
}

.features-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Sol Taraf - Özellikler Listesi */
.features-list {
    flex: 1;
    max-width: 500px;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.2;
}

.features-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--tema-rengi);
}

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

.feature-item i {
    color: var(--tema-rengi);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
}

/* Sağ Taraf - Ürün Görselleri */
.features-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.image-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-item:hover {
    transform: none;
}

.image-1 {
    grid-column: 1 / 3;
    grid-row: 1;
    height: auto;
}

.image-2 {
    grid-column: 1;
    grid-row: 2;
    height: auto;
}

.image-3 {
    grid-column: 2;
    grid-row: 2;
    height: auto;
}

.feature-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.image-item:hover .feature-image {
    transform: scale(1.05);
}

/* Responsive Ürün Özellikleri */
@media (max-width: 992px) {
    .features-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .features-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .features-images {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .image-grid {
        max-width: 350px;
        margin: 0 auto;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .product-features-section {
        padding: 60px 20px;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .feature-item {
        margin-bottom: 15px;
        padding: 12px 0;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .features-images {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .image-grid {
        max-width: 300px;
        gap: 15px;
        justify-items: center;
        margin: 0 auto;
    }
    
    .image-1 {
        height: auto;
    }
    
    .image-2,
    .image-3 {
        height: auto;
    }
}

@media (max-width: 576px) {
    .features-content {
        gap: 40px;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .features-images {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }
    
    .image-grid {
        max-width: 250px;
        gap: 10px;
        justify-items: center;
        margin: 0 auto;
    }
    
    .image-1 {
        height: auto;
    }
    
    .image-2,
    .image-3 {
        height: auto;
    }
}

/* İÇERİK BİLEŞENLERİ BÖLÜMÜ */
.ingredients-section {
    padding: 80px 0;
    background-color: #FBF4EB;
}

.ingredients-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 auto;
    position: relative;
}

.ingredients-grid::before {
    content: '';
    position: absolute;
    left: 33.33%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--tema-rengi);
}

.ingredients-grid::after {
    content: '';
    position: absolute;
    left: 66.66%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--tema-rengi);
}

.ingredient-item {
    text-align: center;
    padding: 30px 40px;
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-image {
    width: 60px;
    height: 60px;
    color: var(--tema-rengi);
    fill: var(--tema-rengi);
}

.ingredient-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.ingredient-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive İçerik Bileşenleri */
@media (max-width: 992px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .ingredients-grid::before {
        left: 50%;
    }
    
    .ingredients-grid::after {
        display: none;
    }
    
    .ingredient-item {
        padding: 25px 30px;
    }
    
    .ingredient-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .icon-image {
        width: 50px;
        height: 50px;
    }
    
    .ingredient-title {
        font-size: 1.2rem;
    }
    
    .ingredients-section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .ingredients-section {
        padding: 60px 0;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .ingredients-grid::before,
    .ingredients-grid::after {
        display: none;
    }
    
    .ingredient-item {
        padding: 30px 25px;
        border-bottom: 1px solid var(--tema-rengi);
    }
    
    .ingredient-item:last-child {
        border-bottom: none;
    }
    
    .ingredient-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }
    
    .icon-image {
        width: 55px;
        height: 55px;
    }
    
    .ingredient-title {
        font-size: 1.3rem;
    }
    
    .ingredient-description {
        font-size: 0.95rem;
    }
    
    .ingredients-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .ingredients-section {
        padding: 50px 0;
    }
    .ingredients-section .container {
        padding: 0px 40px;
    }
    .ingredient-item {
        padding: 25px 20px;
    }
    
    .ingredient-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .icon-image {
        width: 45px;
        height: 45px;
    }
    
    .ingredient-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .ingredient-description {
        font-size: 1rem;
    }
    
    .ingredients-section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
}

/* SABİT SATIN AL BUTONU */
.sticky-buy-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-buy-button.show {
    transform: translateY(0);
}

.sticky-btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3CE70 0%, #9C6418 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px #9C6418;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px #F3CE70;
    color: white;
    text-decoration: none;
}

.sticky-btn:active {
    transform: translateY(0);
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.sticky-btn:hover::before {
    left: 100%;
}

.btn-text {
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
}

.btn-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero bölümünde gizle */
.hero-section ~ * .sticky-buy-button {
    display: none;
}

/* Responsive Sabit Buton */
@media (max-width: 768px) {
    .sticky-buy-button {
        padding: 12px 15px;
    }
    
    .sticky-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .btn-price {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .sticky-buy-button {
        padding: 10px 12px;
    }
    
    .sticky-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .btn-text {
        letter-spacing: 0.3px;
    }
    
    .btn-price {
        font-size: 1rem;
        padding: 5px 10px;
    }
}

/* FOOTER */
.main-footer {
    background-color: var(--tema-rengi);
    color: white;
    padding: 60px 0 80px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Footer Logo ve Marka */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* Sosyal Medya */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Linkler */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

/* İletişim Bilgileri */
.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-item i {
    width: 18px;
    color: white;
    font-size: 1rem;
}

/* Mağaza Linkleri */
.footer-stores {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    width: fit-content;
}

.store-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.store-link i {
    font-size: 1.1rem;
}

/* Footer Alt Bölüm */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.footer-band-logo {
    height: 40px;
    width: auto;
    max-width: 400px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-band-logo:hover {
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / 3;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 70px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-logo-band {
        justify-content: center;
    }
    
    .footer-band-logo {
        height: 30px;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 40px 0 60px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-stores {
        align-items: center;
    }
    
    .store-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .footer-band-logo {
        height: 25px;
        max-width: 250px;
    }
}

/* ÖNCESİ SONRASI KARŞILAŞTIRMA BÖLÜMÜ */
.before-after-section {
    background-color: #FBF4EB;
}

.before-after-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.before-after-container {
    max-width: 400px;
    margin: 0 auto;
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    cursor: ew-resize;
    user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.before-image {
    left: 0;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-image {
    right: 0;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    top: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    z-index: 10;
    cursor: ew-resize;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--tema-rengi);
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.slider-handle i {
    pointer-events: none;
}

/* Responsive Öncesi Sonrası */
@media (max-width: 992px) {
    .before-after-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .before-after-container {
        max-width: 350px;
    }
    
    .before-after-wrapper {
        height: 437px;
    }
}

@media (max-width: 768px) {
    
    .before-after-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .before-after-container {
        max-width: 300px;
    }
    
    .before-after-wrapper {
        height: 375px;
        border-radius: 15px;
    }
    
    .slider-handle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .image-label {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    
    .before-after-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .before-after-wrapper {
        height: 400px;
        border-radius: 12px;
    }
    
    .slider-handle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .image-label {
        font-size: 0.75rem;
        padding: 5px 10px;
        top: 15px;
    }
    
    .before-label {
        left: 15px;
    }
    
    .after-label {
        right: 15px;
    }
}

/* POLİTİKA SAYFALARI */
.policy-content-simple {
    padding: 120px 0 80px;
    background-color: #FBF4EB;
}

.policy-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tema-rengi);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.policy-section {
    max-width: 800px;
    margin: 0 auto 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--tema-rengi);
    margin-bottom: 20px;
    line-height: 1.3;
}

.policy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.policy-section strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Özel Kutular */
.highlight-box {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.highlight-box h4 {
    color: var(--tema-rengi);
    margin-bottom: 10px;
    margin-top: 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
}

/* İletişim Bilgileri */


.contact-info p {
    margin-bottom: 8px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Taraflar Bilgisi */
.parties-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.party {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.party h4 {
    color: var(--tema-rengi);
    margin-top: 0;
    margin-bottom: 15px;
}

.party p {
    margin-bottom: 8px;
}

/* Teslimat Bilgileri */
.delivery-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

/* Tüketici Hakları */
.consumer-rights {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

/* Süreç Adımları */
.process-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--tema-rengi);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--tema-rengi);
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Politika Sayfaları */
@media (max-width: 992px) {
    .parties-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .policy-content-simple {
        padding: 100px 0 60px;
    }
    
    .policy-page-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .policy-content-simple {
        padding: 80px 0 50px;
    }
    
    .policy-page-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .policy-section {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
    }
    
    .highlight-box,
    .contact-info,
    .party,
    .delivery-info,
    .consumer-rights {
        padding: 15px;
    }
    
    .step {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ÜRÜN DETAY SAYFASI */
.product-detail-section {
    padding: 120px 0 80px;
    background-color: #FBF4EB;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Ürün Görselleri */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--tema-rengi);
    transform: scale(1.05);
}

/* Ürün Bilgileri */
.product-info {
    padding: 20px 0;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-text {
    color: #666;
    font-size: 0.95rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tema-rengi);
}

.old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.product-features-list {
    margin-bottom: 30px;
}

.product-features-list h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.product-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
}

.product-features-list i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* Ürün İçerikleri */
.product-ingredients {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--tema-rengi);
}

.product-ingredients h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.ingredients-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Fiyat Özeti */
.price-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 16px;
}

.price-row:last-of-type {
    border-bottom: none;
}

.total-row {
    font-weight: 600;
    font-size: 18px;
    color: var(--tema-rengi);
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--tema-rengi);
    border-bottom: none !important;
}

.free-shipping-info {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-shipping-info.achieved {
    background: #d1ecf1;
    color: #0c5460;
}

.free-shipping-info i {
    font-size: 16px;
}

/* Ürünler Sayfası - Ürün Bulunamadı */
.no-products {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-products-content {
    text-align: center;
    color: var(--gray-600);
}

.no-products-content i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.no-products-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.no-products-content p {
    font-size: 1rem;
    margin: 0;
}

/* Adet Seçici */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--dark-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: var(--tema-rengi);
    color: white;
}

#quantity {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: white;
}

/* Ürün Aksiyonları */
.product-actions {
    margin-bottom: 30px;
}

.btn-buy-now {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--tema-rengi);
    color: white;
}

.btn-buy-now:hover {
    background: #C9911E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Garanti Bilgileri */
.product-guarantees {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
}

.guarantee-item i {
    color: var(--tema-rengi);
    font-size: 1.1rem;
}

.guarantee-item span {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Özel kargo mesajı vurgulama */
.guarantee-item:first-child {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid var(--tema-rengi);
    position: relative;
}

.guarantee-item:first-child::before {
    content: "ÖNEMLİ";
    position: absolute;
    top: -8px;
    left: 15px;
    background: var(--tema-rengi);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.guarantee-item:first-child span {
    color: var(--tema-rengi);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Ürün Detay */
@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 100px 0 60px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 1.7rem;
    }
    
    .old-price {
        font-size: 1.1rem;
    }
    

    
    .thumbnail-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-detail-section {
        padding: 80px 0 50px;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-price {
        align-items: flex-start;
        gap: 10px;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

/* Ürün Listesi Sayfası Stilleri */
.products-section {
    padding: 120px 0 80px;
    background: #FBF4EB;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.product-card .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
}





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

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.product-card .product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-card .product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-card .product-rating .stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.product-card .product-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.product-card .current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tema-rengi);
}

.product-card .old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card .product-actions .btn-buy-now {
    width: 100%;
    background: var(--tema-rengi);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.product-card .product-actions .btn-buy-now:hover {
    background: #4dc914;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Yakında Gelecek Ürünler */
.product-card.coming-soon {
    opacity: 0.8;
}

.coming-soon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--tema-rengi);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-notify {
    width: 100%;
    background: #95a5a6;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-notify.disabled {
    opacity: 0.6;
}

/* Büyük Ekranlar için Grid Düzenlemesi */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(350px, 400px));
        justify-content: center;
    }
}

/* Responsive Ürün Listesi */
@media (max-width: 992px) {
    .products-section {
        padding: 100px 0 60px;
    }
    
    .products-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 80px 0 50px;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    

    
    .product-card .product-info {
        padding: 25px;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 60px 0 40px;
    }
    
    .products-header {
        margin-bottom: 40px;
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        border-radius: 12px;
        max-width: 100%;
    }
    
    .product-card .product-image {
        height: 160px;
    }
    
    .product-card .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.95rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .product-card .product-rating {
        margin-bottom: 6px;
        gap: 5px;
    }
    
    .product-card .product-rating .stars i {
        font-size: 0.7rem;
    }
    
    .rating-count {
        font-size: 0.7rem;
    }
    
    .product-card .product-description {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .product-card .product-price {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 4px;
        justify-content: flex-start;
    }
    
    .product-card .current-price {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .product-card .old-price {
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .discount-badge {
        font-size: 0.65rem;
        padding: 2px 5px;
        flex-shrink: 0;
        white-space: nowrap;
    }
}
