@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--tema-font-family), sans-serif;
    font-size: var(--tema-font-size-base, 1rem);
    color: var(--tema-renk-text);
    background-color: var(--tema-renk-bg);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Page Layout Skeleton */
.app-container {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: minmax(0, 1fr);
    min-height: 100vh;
}

/* Kampanya & Duyuru Barı */
.announcement-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

/* Top Information Bar - Kaldirildi */

/* Sticky Premium Main Header (Yatay Düzen) */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 0.15rem 0.75rem rgba(117, 103, 87, 0.03);
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    position: relative; /* Absolute mega menü için kapsayıcı yapıldı */
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Eşit dağılım ve ortalama için 3 kolon */
    align-items: center;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0.45rem 1.5rem;
}

/* Sol Navigasyon ve Mega Menü Yapısı */
.header-nav-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-item-mega {
    /* position: relative; kaldırıldı - mega menü header-inner'a göre konum alacak */
}

.nav-mega-trigger {
    text-decoration: none;
    color: var(--tema-renk-text);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Boşluklar daha dengeli hale getirildi */
    padding: 0.6rem 0;
    transition: color 0.3s ease;
}

.nav-mega-trigger:hover {
    color: var(--tema-renk-primary);
}

.nav-mega-trigger .menu-icon {
    font-size: 1.15rem; /* Hamburger menü ikon boyutu */
}

.nav-mega-trigger .arrow-icon {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.nav-item-mega:hover .nav-mega-trigger .arrow-icon {
    transform: rotate(180deg);
    color: var(--tema-renk-primary);
}

/* Premium Mega Menü Paneli */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 1.5rem; /* Header iç padding'iyle hizalandı */
    right: 1.5rem;
    width: calc(100% - 3rem); /* Sağ ve sol padding'ler çıktı, tam container genişliği */
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    box-shadow: 0 1.25rem 3rem rgba(117, 103, 87, 0.08);
    border-top: 0.15rem solid var(--tema-renk-primary); /* Üstte ince bordo çizgi */
    opacity: 0;
    visibility: hidden;
    z-index: 150;
    transform: translateY(0.75rem);
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.3s, 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    padding: 2.25rem;
}

.nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Yavaş imleç hareketlerinde menünün kapanmasını önleyen görünmez hover köprüsü */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -1.25rem; /* Yukarıya doğru tetikleyiciyle teması sağlayan transparan alan */
    left: 0;
    width: 100%;
    height: 1.5rem;
    background-color: transparent;
    z-index: -1;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: 2rem;
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mega-cat-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    text-decoration: none;
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08);
    padding-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.mega-cat-title:hover {
    color: var(--tema-renk-secondary);
}

.mega-sub-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-sub-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-sub-link {
    text-decoration: none;
    color: var(--tema-renk-text);
    font-size: 0.825rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mega-sub-link:hover {
    color: var(--tema-renk-primary);
}

/* 3. Seviye Kategoriler */
.mega-child-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-left: 0.6rem;
    border-left: 0.0625rem solid rgba(117, 103, 87, 0.06);
}

.mega-child-list a {
    text-decoration: none;
    color: var(--tema-renk-secondary);
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.mega-child-list a:hover {
    color: var(--tema-renk-primary);
}

/* Promosyon Kartı */
.mega-promo-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 10.5rem;
    border-radius: 0.15rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.mega-promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.mega-promo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.mega-promo-card:hover .mega-promo-img {
    transform: scale(1.04);
}

.mega-promo-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.promo-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    padding: 0.15rem 0.4rem;
    border-radius: 0.1rem;
    text-transform: uppercase;
}

.promo-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 0.4rem;
    margin-bottom: 0.2rem;
}

.promo-action {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
    display: block;
}

/* Orta Logo Konumlandırma */
.header-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 6.5rem; /* Logo alanını genişlettik */
    height: 2.5rem;
    text-decoration: none;
}

.header-logo-wrapper {
    position: absolute;
    top: 0; /* Duyuru barına (kırmızı alana) taşmayı önlemek için sıfırlandı */
    left: 50%;
    transform: translate(-50%, 0);
    width: 6.2rem; /* Çapı büyütüldü */
    height: 6.2rem;
    min-width: 6.2rem;
    min-height: 6.2rem;
    aspect-ratio: 1 / 1; /* Tam yuvarlaklığı garanti eder */
    background-color: #ffffff;
    border-radius: 50%;
    /* Yoğun gölgelendirme kaldırılarak beyaz bar üzerinde temiz duran zarif bir çerçeve uygulandı */
    border: none;
    box-shadow: 0 0.25rem 0.75rem rgba(117, 103, 87, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Sayfa kaydırıldığında logo küçülecek */
.header-logo-wrapper.shrink {
    width: 3.2rem;
    height: 3.2rem;
    min-width: 3.2rem;
    min-height: 3.2rem;
    top: 50%; /* Header barının ortasına hizalanacak */
    transform: translate(-50%, -50%);
    box-shadow: none;
    border: none;
}

.header-logo-img {
    width: 5.2rem; /* Logo resmi */
    height: 5.2rem;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-logo-wrapper.shrink .header-logo-img {
    width: 2.5rem;
    height: 2.5rem;
}

/* Actions Menu on Right */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.action-btn {
    text-decoration: none;
    color: var(--tema-renk-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.action-btn:hover {
    color: var(--tema-renk-primary);
    transform: translateY(-0.05rem);
}

.action-btn .material-symbols-outlined {
    font-size: 1.5rem;
}

/* Cart Badge */
.cart-btn {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.1rem 0.3rem rgba(139, 29, 29, 0.2);
}

/* Premium L-Corner Frame Decoration */
.premium-frame {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 0.5rem 2rem rgba(117, 103, 87, 0.05);
    border: 0.0625rem solid rgba(117, 103, 87, 0.1);
}

.premium-frame::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-top: 0.15rem solid var(--tema-renk-primary);
    border-left: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

.premium-frame::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-bottom: 0.15rem solid var(--tema-renk-primary);
    border-right: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

.premium-frame-inner::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-top: 0.15rem solid var(--tema-renk-primary);
    border-right: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

.premium-frame-inner::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-bottom: 0.15rem solid var(--tema-renk-primary);
    border-left: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

/* Premium Slider Hero Area */
.slider-wrapper {
    width: 100%;
    max-width: 75rem;
    margin: 2rem auto 0 auto;
    padding: 0; /* Ana main padding'i olduğu için buradaki çift padding kaldırıldı */
    display: block;
}

.premium-frame {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0.5rem 2rem rgba(117, 103, 87, 0.05);
    border: 0.0625rem solid rgba(117, 103, 87, 0.1);
    display: block;
}

.premium-frame::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-top: 0.15rem solid var(--tema-renk-primary);
    border-left: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

.premium-frame::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-bottom: 0.15rem solid var(--tema-renk-primary);
    border-right: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

.premium-frame-inner {
    width: 100%;
    position: relative;
    display: block;
}

.premium-frame-inner::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-top: 0.15rem solid var(--tema-renk-primary);
    border-right: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

.premium-frame-inner::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-bottom: 0.15rem solid var(--tema-renk-primary);
    border-left: 0.15rem solid var(--tema-renk-primary);
    pointer-events: none;
    z-index: 10;
}

.slider-container {
    width: 100%;
    height: 28rem;
    overflow: hidden;
    position: relative;
    display: block;
}

.slide-list {
    position: relative;
    width: 100%;
    height: 100%;
    list-style: none;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
}

.slide-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 50rem;
    text-align: center;
    color: #ffffff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-ust-baslik {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.slide-item.active .slide-ust-baslik {
    opacity: 1;
    transform: translateY(0);
}

.slide-ana-baslik {
    font-family: var(--tema-font-headings), serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.slide-item.active .slide-ana-baslik {
    opacity: 1;
    transform: translateY(0);
}

.slide-aciklama {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 300;
    color: #f5f5f5;
    margin-bottom: 2rem;
    text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.slide-item.active .slide-aciklama {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    font-family: var(--tema-font-family), sans-serif;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #ffffff;
    background-color: transparent;
    border: 0.08rem solid #ffffff;
    padding: 0.8rem 2rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s ease 1s, transform 0.6s ease 1s, background-color 0.3s ease, border-color 0.3s ease;
}

.slide-btn:hover {
    background-color: #ffffff;
    color: var(--tema-renk-primary);
    border-color: #ffffff;
    text-decoration: none;
    transform: translateY(-0.1rem);
}

.slide-item.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slider dot indicators */
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background-color: var(--tema-renk-primary);
    transform: scale(1.25);
}

/* Main Content Area */
main {
    width: 100%;
    max-width: 75rem;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Product Section */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--tema-renk-primary);
    margin-bottom: 0.5rem;
}

.section-divider {
    color: var(--tema-renk-secondary);
    font-size: 0.6rem;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
    gap: 2.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.25rem 2.5rem rgba(117, 103, 87, 0.12);
}

.product-image-container {
    display: block;
    width: 100%;
    height: 18rem;
    overflow: hidden;
    position: relative;
}

.product-link-mask {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Alt Eylem Çubuğu ve Flat Premium Butonlar */
.product-card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
}

/* Geniş Metin Butonu (Sepete Ekle / Seçenekler) */
.btn-card-main {
    flex-grow: 1;
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    border: 0.0625rem solid transparent;
    border-radius: 0.25rem;
    height: 2.375rem;
    padding: 0 1rem;
    font-family: var(--tema-font-family), sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-card-main:hover {
    background-color: #ffffff;
    color: var(--tema-renk-primary);
    border-color: var(--tema-renk-primary);
}

.btn-card-main:active {
    transform: scale(0.98);
}

.btn-card-main span {
    font-size: 1.1rem;
}

/* Seçenekler Butonu İçin Vurgulu Pastel Arka Plan */
.btn-card-select-options {
    background-color: #f7f3ed;
    color: var(--tema-renk-primary);
    border-color: rgba(139, 29, 29, 0.2);
}

.btn-card-select-options:hover {
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    border-color: var(--tema-renk-primary);
}

/* İkon Butonları (İncele & Favoriler) */
.btn-card-icon-action {
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 0.25rem;
    background-color: #f7f5f2;
    border: 0.0625rem solid rgba(117, 103, 87, 0.1);
    color: var(--tema-renk-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    padding: 0;
}

.btn-card-icon-action:hover {
    background-color: #ffffff;
    color: var(--tema-renk-primary);
    border-color: var(--tema-renk-primary);
}

.btn-card-icon-action:active {
    transform: scale(0.95);
}

.btn-card-icon-action span {
    font-size: 1.2rem;
}

/* Favori Kalp İkonu Durumları */
.btn-card-icon-action .icon-filled {
    display: none;
    color: var(--tema-renk-primary);
}

.btn-card-icon-action.active {
    background-color: #fff5f5;
    border-color: rgba(239, 68, 68, 0.2);
    color: var(--tema-renk-primary);
}

.btn-card-icon-action.active .icon-empty {
    display: none;
}

.btn-card-icon-action.active .icon-filled {
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-info {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.product-category {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--tema-renk-secondary);
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-category:hover {
    color: var(--tema-renk-primary);
}

.product-name {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--tema-renk-text);
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.product-name:hover {
    color: var(--tema-renk-primary);
}

.product-price-box {
    margin-top: auto;
}

.product-card .product-price-box {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0.75rem;
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2rem;
}

.product-card .old-price {
    font-size: 0.85rem;
    color: #8c827a;
    text-decoration: line-through;
    margin-right: 0.25rem;
}

.product-card .price {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--tema-renk-primary);
}

.price-tax-label {
    font-family: var(--tema-font-headings), serif;
    font-style: italic;
    font-size: 0.75rem;
    color: var(--tema-renk-secondary);
    margin-left: 0.25rem;
}

/* Premium Modern Multi-Column Footer */
.main-footer {
    background-color: #fcfbfa; /* Soft krem/beyaz tonu */
    border-top: 0.0625rem solid rgba(139, 29, 29, 0.08);
    padding: 4rem 0 2rem 0;
    color: var(--tema-renk-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr 2.6fr 1.4fr;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto 3rem auto;
    padding: 0 1.5rem;
}
.footer-links-list.footer-links-list-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1.5rem;
}

@media (max-width: 30rem) {
    .footer-links-list.footer-links-list-2col {
        grid-template-columns: 1fr;
    }
}
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.brand-col .footer-logo-stamp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border: 0.0625rem dashed var(--tema-renk-secondary);
    border-radius: 50%;
    padding: 0.25rem;
    margin-bottom: 1.25rem;
    background-color: #ffffff;
}

.brand-col .footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.footer-desc {
    font-family: var(--tema-font-headings), serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--tema-renk-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.15);
    color: var(--tema-renk-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--tema-renk-primary);
    border-color: var(--tema-renk-primary);
    color: #ffffff;
    transform: translateY(-0.15rem);
}

.social-icon .material-symbols-outlined {
    font-size: 1.2rem;
}

/* General Column Styling */
.footer-col-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background-color: var(--tema-renk-kenarlik, #e2dcd5);
    opacity: 0.7;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list a {
    text-decoration: none;
    color: var(--tema-renk-text);
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: flex-start;
    white-space: normal;
    max-width: 100%;
}

.footer-links-list a::before {
    content: '♦';
    color: var(--tema-renk-primary);
    font-size: 0.55rem;
    margin-right: 0.45rem;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    margin-top: 0.3rem;
}

.footer-links-list a:hover {
    color: var(--tema-renk-primary);
}

.footer-links-list a:hover::before {
    opacity: 1;
    transform: translateX(0.15rem);
}

/* Contact Column */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contact-list .icon {
    color: var(--tema-renk-primary);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.footer-contact-list .text {
    font-size: 0.85rem;
    color: var(--tema-renk-text);
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a.text:hover {
    color: var(--tema-renk-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 0.0625rem solid rgba(117, 103, 87, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    max-width: 75rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-copyright {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.75rem;
    color: #8a7d6b;
    letter-spacing: 0.05rem;
}

/* Dinamik Sayfa Sablonu Stilleri (views/page.php) */
.page-container {
    width: 100%;
    max-width: 75rem;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.page-wrapper {
    width: 100%;
}

.page-content-box {
    padding: 3.5rem 3rem;
}

.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--tema-renk-primary);
    margin-bottom: 0.75rem;
}

.page-divider {
    color: var(--tema-renk-secondary);
    font-size: 0.6rem;
    letter-spacing: 0.5rem;
}

.page-body {
    font-size: 1rem;
    color: var(--tema-renk-text);
    line-height: 1.7;
}

.page-body h3 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-body p {
    margin-bottom: 1.25rem;
}

.page-body a {
    color: var(--tema-renk-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-body a:hover {
    color: var(--tema-renk-secondary);
}

/* Responsive Styles */
@media (max-width: 48rem) {
    .header-inner {
        padding: 0.5rem 1rem;
    }
    
    .header-logo-img {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        display: none;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
    }
    
    .header-actions {
        gap: 0.75rem;
    }
    
    .action-btn .material-symbols-outlined {
        font-size: 1.25rem;
    }
    
    .slider-container {
        height: 20rem;
    }
    
    .slide-ana-baslik {
        font-size: 1.6rem;
    }
    
    .slide-aciklama {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .slide-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-col.brand-col {
        align-items: center;
    }

    .footer-col:not(.brand-col) {
        align-items: stretch;
        text-align: left;
    }

    .footer-col-title::after {
        display: none !important;
    }

    .footer-links-list,
    .footer-contact-list {
        text-align: left;
    }

    .footer-contact-list li {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.5rem;
    }

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

    /* Page Content Responsive */
    .page-content-box {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    /* Kategori Sayfası Responsive */
    .category-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-sidebar {
        position: static;
    }

    .sidebar-box {
        padding: 1.25rem;
    }

    .category-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .category-title {
        font-size: 1.6rem;
    }
}

/* Kategori Listeleme Sayfası Stilleri (views/category.php) */
.category-page-container {
    width: 100%;
    max-width: 75rem;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Breadcrumb Rota Haritası */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: var(--tema-renk-secondary);
}

.breadcrumb-list li a {
    text-decoration: none;
    color: var(--tema-renk-text);
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--tema-renk-primary);
}

.breadcrumb-list li::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(117, 103, 87, 0.4);
}

.breadcrumb-list li:last-child::after,
.breadcrumb-list li.active::after {
    content: none;
}

.breadcrumb-list li.active {
    color: var(--tema-renk-primary);
    font-weight: 600;
}

/* Kategori İki Kolonlu Sayfa Düzeni */
.category-layout {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar Yan Menü Stilleri */
.category-sidebar {
    position: sticky;
    top: 7rem; /* Sticky header alt sınırına göre yapışkan kalır */
}

.sidebar-box {
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.02);
    padding: 1.75rem;
}

.sidebar-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    margin-bottom: 1.25rem;
    text-transform: capitalize;
}

.sidebar-title .parent-link {
    text-decoration: none;
    color: var(--tema-renk-primary);
    transition: color 0.3s ease;
}

.sidebar-title .parent-link:hover {
    color: var(--tema-renk-secondary);
}

.sidebar-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sidebar-menu-list li {
    position: relative;
    padding-left: 0.75rem;
}

.sidebar-menu-list li a {
    text-decoration: none;
    color: var(--tema-renk-text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.sidebar-menu-list li a:hover {
    color: var(--tema-renk-primary);
    padding-left: 0.15rem;
}

/* Aktif Kategori Durumu */
.sidebar-menu-list li.active-cat {
    padding-left: 0.75rem;
}

.sidebar-menu-list li.active-cat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.15rem;
    height: 1rem;
    background-color: var(--tema-renk-primary);
}

.sidebar-menu-list li.active-cat a {
    color: var(--tema-renk-primary);
    font-weight: 700;
}

.sidebar-empty {
    font-size: 0.85rem;
    color: var(--tema-renk-secondary);
    font-style: italic;
}

/* Mobil Filtre Bileşenleri (Masaüstünde Gizli) */
.btn-mobile-filter,
.sidebar-mobile-header,
.category-sidebar-overlay {
    display: none;
}

/* Kategori İçerik Başlığı ve Ürün Alanı */
.category-products-area {
    display: flex;
    flex-direction: column;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
}

.category-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--tema-renk-primary);
}

.products-count {
    font-size: 0.85rem;
    color: var(--tema-renk-secondary);
    font-weight: 500;
}

/* Kategori Ürün Bulunmama Durumu */
.no-products-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
}

.no-products-box .icon {
    font-size: 3rem;
    color: var(--tema-renk-secondary);
    margin-bottom: 1.25rem;
}

.no-products-box p {
    font-size: 1.1rem;
    color: var(--tema-renk-text);
    margin-bottom: 2rem;
}

.btn-home-back {
    display: inline-block;
    font-family: var(--tema-font-family), sans-serif;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--tema-renk-primary);
    border: 0.08rem solid var(--tema-renk-primary);
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-home-back:hover {
    background-color: transparent;
    color: var(--tema-renk-primary);
    transform: translateY(-0.1rem);
}

/* --- Ürün Detay Sayfası Tasarımı --- */

/* Gizli Veri Deposu Sınıfı */
.product-hidden-data {
    display: none !important;
}

/* Kapsayıcı ve Breadcrumb */
.product-page-container {
    width: 100%;
    max-width: 75rem;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Ürün Detay Grid Yapısı */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
}

/* Sol Taraf: Galeri */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.main-image-viewport {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border: 1px solid rgba(117, 103, 87, 0.1);
    border-radius: 0; /* Köşeli tasarım */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* Gölgesiz */
}

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

.main-image-viewport:hover .main-image {
    transform: scale(1.03);
}

.thumbnail-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-top: 0.25rem; /* Kırpılmayı önlemek için minimal üst dolgu */
    padding-bottom: 0.25rem;
}

.thumbnail-item {
    flex: 0 0 4.75rem; /* Kibarlaştırıldı */
    height: 4.75rem;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid rgba(117, 103, 87, 0.15);
    border-radius: 0; /* Köşeli tasarım */
    cursor: pointer;
    padding: 0.1rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Köşeli tasarım */
}

.thumbnail-item:hover {
    border-color: var(--tema-renk-primary, #8b1d1d);
}

.thumbnail-item.active {
    border-color: var(--tema-renk-primary, #8b1d1d);
    border-width: 1px; /* İnce border */
}

/* Sağ Taraf: Satın Alma Kartı */
.product-purchase-card {
    display: flex;
    flex-direction: column;
}

.product-header-info {
    margin-bottom: 1rem; /* Boşluk azaltıldı */
}

.product-tag-sku-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    width: 100%;
}

.product-tag-category {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--tema-renk-secondary);
    letter-spacing: 0.06rem;
    display: inline-block;
    margin-bottom: 0;
}

.product-name-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.65rem; /* Kibarlaştırıldı */
    font-weight: 500;
    color: var(--tema-renk-text);
    line-height: 1.3;
    margin-bottom: 0;
}

.product-sku-code {
    font-size: 0.75rem;
    color: var(--tema-renk-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

/* Fiyat Bölümü */
.product-price-box {
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 1px solid rgba(117, 103, 87, 0.08);
    border-radius: 0; /* Köşeli tasarım */
    padding: 1rem 1.25rem; /* Padding azaltıldı */
    margin-top: 0; /* Başlık ile olan fazla boşluk giderildi */
    margin-bottom: 1.25rem; /* Boşluk azaltıldı */
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: none; /* Gölgesiz */
}

.price-row-inclusive {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-value-inclusive {
    font-family: var(--tema-font-headings), serif;
    font-size: 2.1rem; /* Kibarlaştırıldı */
    font-weight: 600;
    color: var(--tema-renk-primary, #8b1d1d);
}

.badge-tax-inclusive {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #ffffff;
    background-color: var(--tema-renk-primary, #8b1d1d);
    padding: 0.2rem 0.5rem;
    border-radius: 0; /* Köşeli */
    align-self: center;
}

.price-row-exclusive {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.75;
}

.price-value-exclusive {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--tema-renk-secondary, #756757);
}

.label-tax-exclusive {
    font-size: 0.75rem;
    color: var(--tema-renk-secondary, #756757);
}

.horizontal-divider {
    height: 0.0625rem;
    background-color: rgba(117, 103, 87, 0.1);
    border: none;
    margin-bottom: 1.25rem; /* Boşluk azaltıldı */
}

/* Badges Container */
.product-badges-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Aynı Gün Kargo Rozeti */
.product-shipping-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    border-radius: 0;
}

.product-shipping-badge .material-symbols-outlined {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Bugün Kargoda - Soft Yeşil */
.shipping-badge-today {
    background-color: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.15);
    color: #2e7d32;
}

/* Yarın Kargoda - Soft Mavi/Lacivert */
.shipping-badge-tomorrow {
    background-color: rgba(21, 101, 192, 0.05);
    border: 1px solid rgba(21, 101, 192, 0.15);
    color: #1565c0;
}

/* İleriki Gün Kargoda - Soft Kahverengi/Gri */
.shipping-badge-future {
    background-color: rgba(117, 103, 87, 0.05);
    border: 1px solid rgba(117, 103, 87, 0.15);
    color: #756757;
}

/* Ücretsiz Kargo Badgesi - Soft Kahverengi / Bej */
.shipping-badge-free {
    background-color: rgba(117, 103, 87, 0.08);
    border: 1px solid rgba(117, 103, 87, 0.2);
    color: #5d5043;
}

/* Standart Kargo Badgesi - Soft Gri / Lacivert */
.shipping-badge-standard {
    background-color: rgba(74, 85, 104, 0.05);
    border: 1px solid rgba(74, 85, 104, 0.15);
    color: #4a5568;
}

/* Kargo Firması Logo Boyutlandırma */
.shipping-company-logo-badge {
    height: 1.2rem;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Varyasyon Alanları */
.product-options-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Renk ve boyut yan yana */
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.option-select-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.selected-label-highlight {
    color: var(--tema-renk-primary);
    text-transform: none;
    letter-spacing: normal;
    margin-left: 0.25rem;
}

/* Renk Seçenekleri */
.color-options-grid {
    display: inline-flex;
    gap: 0; /* Bitişik kutucuklar */
    border: 1px solid var(--tema-renk-kenarlik, #e2dcd5);
    width: max-content;
}

.color-bullet-btn {
    width: 2.3rem; /* Dikdörtgen eni */
    height: 1.8rem; /* Dikdörtgen boyu */
    border-radius: 0; /* Köşeli dikdörtgen */
    border: none;
    border-right: 1px solid var(--tema-renk-kenarlik, #e2dcd5);
    background-color: transparent;
    cursor: pointer;
    display: block;
    padding: 0;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: none;
}

.color-bullet-btn:last-child {
    border-right: none;
}

.color-bullet-inner {
    width: 100%;
    height: 100%;
    border-radius: 0; /* Köşeli iç dolgu */
    display: block;
    border: none;
}

.color-bullet-btn:hover {
    z-index: 1;
    outline: 1.5px solid var(--tema-renk-primary, #8b1d1d);
    outline-offset: -1.5px;
}

.color-bullet-btn.active {
    z-index: 2; /* Diğer sınırların üzerine binmesi için */
    outline: 1.5px solid var(--tema-renk-primary, #8b1d1d);
    outline-offset: -1.5px; /* İnce, kibar, keskin aktif hattı */
}

/* Boyut Seçenekleri */
.size-options-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-pill-btn {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
    background-color: #ffffff;
    border: 1px solid var(--tema-renk-kenarlik, #e2dcd5);
    padding: 0.45rem 1.25rem; /* İnce dolgu */
    border-radius: 0; /* Köşeli tasarım */
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-pill-btn:hover {
    border-color: var(--tema-renk-primary, #8b1d1d);
    color: var(--tema-renk-primary, #8b1d1d);
    background-color: var(--tema-renk-birincil-light, #fdf6f6);
}

.size-pill-btn.active {
    background-color: var(--tema-renk-primary, #8b1d1d);
    border-color: var(--tema-renk-primary, #8b1d1d);
    color: #ffffff;
    box-shadow: none; /* Gölgesiz */
}

/* Adet Seçici ve Sepete Ekle Butonu */
.purchase-action-container {
    display: flex;
    gap: 0.75rem; /* Gap azaltıldı */
    margin-bottom: 1.25rem; /* Boşluk azaltıldı */
}

.quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid var(--tema-renk-kenarlik, #e2dcd5);
    background-color: #ffffff;
    height: 2.85rem; /* Kibarlaştırıldı */
    border-radius: 0; /* Köşeli tasarım */
    overflow: hidden;
}

.quantity-control-btn {
    width: 3rem;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--tema-renk-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.quantity-control-btn:hover {
    background-color: rgba(117, 103, 87, 0.05);
}

.quantity-control-btn .material-symbols-outlined {
    font-size: 1.1rem;
}

.quantity-input-box {
    width: 2.5rem;
    border: none;
    text-align: center;
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    background: transparent;
    pointer-events: none;
}

.add-to-cart-submit-btn {
    flex-grow: 1;
    height: 2.85rem; /* Kibarlaştırıldı */
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.85rem; /* Küçültüldü */
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--tema-renk-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: none; /* Gölgesiz */
    border-radius: 0; /* Köşeli */
}

.add-to-cart-submit-btn:hover {
    background-color: var(--tema-renk-secondary);
    transform: translateY(-0.05rem);
    box-shadow: none;
}

.add-to-cart-submit-btn:active {
    transform: translateY(0);
}

.add-to-cart-submit-btn:disabled {
    background-color: #d8d8d8;
    color: #888888;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Ürün Durum Alanı */
.product-status-logs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Boşluk azaltıldı */
    margin-bottom: 0; /* Boşluk sıfırlandı */
}

.stock-status-line {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tema-renk-text);
}

.stock-indicator-in {
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 0.15rem 0.5rem;
    border-radius: 0; /* Köşeli */
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.25rem;
    text-transform: uppercase;
}

.stock-indicator-out {
    color: #c62828;
    background-color: #ffebee;
    padding: 0.15rem 0.5rem;
    border-radius: 0; /* Köşeli */
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.25rem;
    text-transform: uppercase;
}

.stock-indicator-loading {
    color: var(--tema-renk-secondary);
    font-style: italic;
    margin-left: 0.25rem;
}

.free-shipping-indicator-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 1px solid rgba(117, 103, 87, 0.08);
    padding: 0.6rem 0.85rem; /* Daraltıldı */
    border-radius: 0; /* Köşeli */
}

.free-shipping-indicator-box .icon {
    font-size: 1.2rem;
    color: var(--tema-renk-primary, #8b1d1d);
}

.free-shipping-indicator-box p {
    font-size: 0.78rem;
    font-weight: 550;
    color: var(--tema-renk-text, #4a3e3d);
    margin: 0;
}

.fast-shipping-indicator-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(44, 151, 75, 0.04);
    border: 1px solid rgba(44, 151, 75, 0.1);
    padding: 0.6rem 0.85rem; /* Daraltıldı */
    border-radius: 0; /* Köşeli */
}

.fast-shipping-indicator-box .icon {
    font-size: 1.2rem;
    color: #2c974b;
}

.fast-shipping-indicator-box p {
    font-size: 0.78rem;
    font-weight: 600;
    color: #2c974b;
    margin: 0;
}

/* Ürün Detay Açıklama */
.product-description-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.description-section-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.1);
    padding-bottom: 0.5rem;
}

.description-body-content {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--tema-renk-text);
}

.description-body-content h3 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--tema-renk-primary);
}

.description-body-content p {
    margin-bottom: 1rem;
}

/* Benzer Ürünler Alanı */
.similar-products-section {
    margin-top: 5rem;
    border-top: 0.0625rem solid rgba(117, 103, 87, 0.1);
    padding-top: 4rem;
}

.similar-section-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--tema-renk-primary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Düzenler */
@media (max-width: 48rem) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-name-title {
        font-size: 1.75rem;
    }

    .product-options-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .color-options-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        border: none;
        width: 100%;
    }

    .color-bullet-btn {
        width: 2.5rem;
        height: 2rem;
        border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
        border-radius: 0.25rem;
        overflow: hidden;
    }

    .color-bullet-btn:last-child {
        border-right: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    }
}

/* Zoom-in Cursor ve Transition İyileştirmesi */
.main-image-viewport {
    cursor: zoom-in;
}

.main-image-viewport .main-image {
    transition: transform 0.12s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Sekmeli Detay Paneli (Tabs) Tasarımı --- */
.product-tabs-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
}

.tabs-nav-bar {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(117, 103, 87, 0.02);
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08);
}

.tab-nav-btn {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tema-renk-secondary);
    background: transparent;
    border: none;
    border-bottom: 0.15rem solid transparent;
    padding: 1.25rem 2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06rem;
    transition: all 0.3s ease;
}

.tab-nav-btn:hover {
    color: var(--tema-renk-primary);
}

.tab-nav-btn.active {
    color: var(--tema-renk-primary);
    border-bottom-color: var(--tema-renk-primary);
    background-color: #ffffff;
}

.tabs-panels-wrapper {
    padding: 2.5rem;
}

.tab-panel-content {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.tab-panel-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. Ürün Açıklaması Paneli */
.panel-inner-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--tema-renk-text);
}

.panel-inner-description h3 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--tema-renk-primary);
}

.panel-inner-description p {
    margin-bottom: 0.6rem;
}

/* 2. Ödeme Seçenekleri Paneli */
.panel-inner-payment h4 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    margin-bottom: 1.5rem;
}

.payment-methods-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-methods-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background-color: rgba(117, 103, 87, 0.02);
    border: 0.0625rem solid rgba(117, 103, 87, 0.05);
}

.payment-methods-list li .icon {
    font-size: 2rem;
    color: var(--tema-renk-primary);
    background-color: #ffffff;
    padding: 0.5rem;
    border-radius: 50%;
    border: 0.0625rem solid rgba(117, 103, 87, 0.1);
}

.payment-methods-list li strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    display: block;
    margin-bottom: 0.25rem;
}

.payment-methods-list li p {
    font-size: 0.85rem;
    color: var(--tema-renk-secondary);
    line-height: 1.5;
}

/* 3. Teslimat & İade Paneli */
.panel-inner-shipping h4 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    margin-bottom: 1.5rem;
}

.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-grid-card {
    background-color: rgba(117, 103, 87, 0.02);
    border: 0.0625rem solid rgba(117, 103, 87, 0.05);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-grid-card .icon {
    font-size: 2.25rem;
    color: var(--tema-renk-primary);
    margin-bottom: 1rem;
}

.info-grid-card h5 {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    margin-bottom: 0.5rem;
}

.info-grid-card p {
    font-size: 0.8rem;
    color: var(--tema-renk-secondary);
    line-height: 1.6;
}

/* 4. Değerlendirmeler / Yorumlar Paneli */
.panel-inner-reviews {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.reviews-summary-block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    background-color: rgba(117, 103, 87, 0.02);
    border: 0.0625rem solid rgba(117, 103, 87, 0.05);
    padding: 2rem;
    align-items: center;
}

.rating-average-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-right: 0.0625rem solid rgba(117, 103, 87, 0.12);
}

.rating-average-box .average-score {
    font-family: var(--tema-font-headings), serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--tema-renk-primary);
    line-height: 1;
}

.stars-display {
    display: flex;
    gap: 0.15rem;
}

.stars-display .active-star,
.review-rating-stars .active-star {
    font-size: 1.25rem;
    color: #ffb300;
    font-variation-settings: 'FILL' 1, 'wght' 400;
}

.review-rating-stars .inactive-star {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-variation-settings: 'FILL' 0, 'wght' 400;
}

.total-reviews-label {
    font-size: 0.85rem;
    color: var(--tema-renk-secondary);
    font-weight: 500;
}

.rating-bars-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--tema-renk-secondary);
}

.rating-bar-row .bar-label {
    width: 3.5rem;
    text-align: right;
    font-weight: 500;
}

.rating-bar-track {
    flex-grow: 1;
    height: 0.5rem;
    background-color: rgba(117, 103, 87, 0.1);
    border-radius: 0.25rem;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: #ffb300;
    border-radius: 0.25rem;
}

.rating-bar-row .bar-count {
    width: 1rem;
    text-align: left;
    font-weight: 600;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08);
    padding-bottom: 1.5rem;
}

.review-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.reviewer-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tema-renk-text);
}

.review-date {
    font-size: 0.75rem;
    color: var(--tema-renk-secondary);
}

.review-body-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--tema-renk-text);
}

/* Yorum Ekleme Formu & Yıldız Seçimi */
.add-review-section {
    margin-top: 3rem;
    border-top: 0.0625rem solid rgba(117, 103, 87, 0.1);
    padding-top: 2.5rem;
}

.review-section-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    margin-bottom: 1.5rem;
}

.rating-select-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-select-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tema-renk-text);
}

.star-rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.star-rating-select input[type="radio"] {
    display: none;
}

.star-rating-select label {
    font-size: 1.75rem;
    color: #e0e0e0;
    cursor: pointer;
    font-variation-settings: 'FILL' 0, 'wght' 400;
    transition: color 0.2s ease, transform 0.1s ease;
}

.star-rating-select label:hover,
.star-rating-select label:hover ~ label,
.star-rating-select input[type="radio"]:checked ~ label {
    color: #ffb300;
    font-variation-settings: 'FILL' 1, 'wght' 400;
}

.star-rating-select label:active {
    transform: scale(0.9);
}

.submit-review-btn {
    margin-top: 0.5rem;
}

.review-login-prompt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background-color: rgba(117, 103, 87, 0.03);
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    margin-top: 2rem;
}

.review-login-prompt .prompt-icon {
    color: var(--tema-renk-primary);
    font-size: 1.5rem;
}

.review-login-prompt p {
    font-size: 0.875rem;
    color: var(--tema-renk-secondary);
}

.review-login-prompt a {
    color: var(--tema-renk-primary);
    font-weight: 600;
    text-decoration: underline;
}

.no-reviews-msg {
    font-size: 0.9rem;
    color: var(--tema-renk-secondary);
    font-style: italic;
}

/* Sekmeler Mobil Responsive */
@media (max-width: 48rem) {
    .shipping-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-summary-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .rating-average-box {
        border-right: none;
        border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.12);
        padding-bottom: 1.25rem;
    }
    
    .tab-nav-btn {
        padding: 1rem 1.25rem;
        font-size: 0.8rem;
        flex-grow: 1;
        text-align: center;
    }
    
    .tabs-panels-wrapper {
        padding: 1.5rem;
    }
}

/* --- Sepet Sayfası Tasarımı --- */
.cart-page-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: start;
}

.cart-items-column {
    display: flex;
    flex-direction: column;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 3.5fr 1.2fr 1.5fr 1.2fr 0.5fr;
    padding: 1rem 1.5rem;
    background-color: rgba(117, 103, 87, 0.02);
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tema-renk-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 1.5rem;
}

.cart-header-row .header-price-title,
.cart-header-row .header-qty-title,
.cart-header-row .header-total-title {
    text-align: center;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 1fr 2.5fr 1.2fr 1.5fr 1.2fr 0.5fr;
    align-items: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-item-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.04);
    border-color: rgba(117, 103, 87, 0.15);
}

.item-image-box {
    width: 5.5rem;
    height: 5.5rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
}

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

.cart-item-card:hover .item-image-box .item-img {
    transform: scale(1.05);
}

.item-details-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem;
}

.item-cat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--tema-renk-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.item-name-link {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.item-name-link:hover {
    color: var(--tema-renk-primary);
}

/* Varyasyon Etiketleri */
.item-variation-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.var-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--tema-renk-secondary);
    background-color: rgba(117, 103, 87, 0.05);
    padding: 0.15rem 0.5rem;
    border-radius: 0.1rem;
}

.var-color-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    display: inline-block;
    border: 0.0625rem solid rgba(0, 0, 0, 0.05);
}

.item-sku-label {
    font-size: 0.75rem;
    color: var(--tema-renk-secondary);
    margin-top: 0.25rem;
}

.item-unit-price-box {
    text-align: center;
}

.item-price-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tema-renk-text);
}

.item-qty-control-box {
    display: flex;
    justify-content: center;
}

.quantity-picker-small {
    display: flex;
    align-items: center;
    border: 0.0625rem solid rgba(117, 103, 87, 0.2);
    background-color: #ffffff;
    height: 2.25rem;
}

.qty-btn-s {
    width: 2rem;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--tema-renk-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.qty-btn-s:hover {
    background-color: rgba(117, 103, 87, 0.05);
}

.qty-btn-s .material-symbols-outlined {
    font-size: 0.9rem;
}

.qty-input-s {
    width: 1.75rem;
    border: none;
    text-align: center;
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    background: transparent;
    pointer-events: none;
}

.item-total-price-box {
    text-align: center;
}

.item-total-price-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tema-renk-primary);
}

.item-remove-box {
    display: flex;
    justify-content: center;
}

.cart-item-remove-btn {
    background: transparent;
    border: none;
    color: var(--tema-renk-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cart-item-remove-btn:hover {
    color: var(--tema-renk-primary);
    transform: scale(1.08);
}

.cart-item-remove-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Sağ Sütun: Sipariş Özeti */
.cart-summary-column {
    position: sticky;
    top: 6.5rem; /* Header barının altına yapışması için */
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.cart-summary-card {
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    padding: 1.25rem;
    box-shadow: 0 0.5rem 2rem rgba(117, 103, 87, 0.02);
    width: 100%;
    max-width: 22rem; /* Sipariş özeti kartının çok yayılmaması için */
}

.summary-card-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--tema-renk-text);
    font-weight: 500;
}

.summary-row span:last-child {
    font-weight: 600;
}

.summary-row.campaign-row,
.summary-row.coupon-row,
.total-row-discount {
    color: #2e7d32;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.summary-divider {
    height: 0.0625rem;
    background-color: rgba(117, 103, 87, 0.1);
}

.total-row {
    font-size: 1.15rem;
    color: var(--tema-renk-primary);
    font-weight: 700;
}

.total-row span:last-child {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.6rem;
    font-weight: 700;
}

/* Ücretsiz Kargo İlerleme Barı */
.summary-shipping-tracker-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: rgba(117, 103, 87, 0.02);
    border: 0.0625rem dashed rgba(117, 103, 87, 0.15);
    padding: 1rem;
    margin-top: 0.5rem;
}

.tracker-message {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--tema-renk-secondary);
}

.tracker-message strong {
    color: var(--tema-renk-primary);
}

.tracker-progress-bar-track {
    width: 100%;
    height: 0.35rem;
    background-color: rgba(117, 103, 87, 0.1);
    border-radius: 0.2rem;
    overflow: hidden;
}

.tracker-progress-bar-fill {
    height: 100%;
    background-color: var(--tema-renk-primary);
    border-radius: 0.2rem;
    transition: width 0.4s ease;
}

/* Checkout Button */
.checkout-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3.25rem;
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--tema-renk-primary);
    border: none;
    text-decoration: none;
    cursor: pointer;
    margin-top: 1.75rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0.25rem 1rem rgba(139, 29, 29, 0.15);
}

.checkout-submit-button:hover {
    background-color: var(--tema-renk-secondary);
    transform: translateY(-0.1rem);
    box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.2);
}

.checkout-submit-button:active {
    transform: translateY(0);
}

.checkout-submit-button .material-symbols-outlined {
    font-size: 1.15rem;
}

.summary-footer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    justify-content: center;
}

.summary-footer-info .icon {
    font-size: 1.1rem;
    color: #2e7d32;
}

.summary-footer-info p {
    font-size: 0.725rem;
    color: var(--tema-renk-secondary);
    font-weight: 500;
}

/* Sepet Mobil Responsive */
@media (max-width: 62rem) {
    .cart-page-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cart-summary-column {
        position: static;
    }
}

@media (max-width: 48rem) {
    .cart-header-row {
        display: none; /* Mobilde başlık satırı gizlenir, dikey kart yapısı kullanılır */
    }
    
    .cart-item-card {
        display: grid !important;
        grid-template-columns: 5.5rem 1fr !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
        position: relative !important;
        align-items: start !important;
        border-radius: 0.5rem !important;
    }
    
    .item-image-box {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        width: 5.5rem !important;
        height: 5.5rem !important;
        border-radius: 0.375rem !important;
        overflow: hidden !important;
    }
    
    .item-details-box {
        grid-column: 2 !important;
        grid-row: 1 !important;
        padding-left: 0.25rem !important;
        padding-right: 2rem !important;
    }
    
    .item-unit-price-box {
        display: none !important;
    }
    
    .item-qty-control-box {
        grid-column: 2 !important;
        grid-row: 2 !important;
        justify-self: start !important;
        align-self: center !important;
        margin-top: 0.5rem !important;
        padding-left: 0.25rem !important;
    }
    
    .item-total-price-box {
        grid-column: 2 !important;
        grid-row: 2 !important;
        justify-self: end !important;
        align-self: center !important;
        margin-top: 0.5rem !important;
    }
    
    .item-remove-box {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: end !important;
        align-self: start !important;
        margin-top: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
}

/* --- Premium Toast Bildirim Stili --- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border-left: 0.25rem solid #2e7d32;
    box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.1);
    z-index: 1000;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--tema-renk-text);
}

.toast-container.error {
    border-left-color: #c62828;
}

.toast-container.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-container .material-symbols-outlined {
    font-size: 1.25rem;
}

.toast-container.success .material-symbols-outlined {
    color: #2e7d32;
}

.toast-container.error .material-symbols-outlined {
    color: #c62828;
}

/* --- Ödeme Sayfası Stilleri (Checkout) --- */
.checkout-page-layout {
    display: grid;
    grid-template-columns: 2.4fr 0.6fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

.checkout-forms-column,
#checkoutSubmitForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-card-box {
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 1rem rgba(117, 103, 87, 0.03);
}

.checkout-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tema-renk-birincil, #8b1d1d);
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
}

.checkout-card-title .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--tema-renk-birincil, #8b1d1d);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group-full {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-half {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-form-grid label,
.form-group-full label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
}

.checkout-form-grid input[type="text"],
.checkout-form-grid input[type="email"],
.checkout-form-grid input[type="tel"],
.checkout-form-grid textarea,
.form-group-full textarea,
.mock-card-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    background-color: var(--tema-renk-input-bg, #ffffff);
    color: var(--tema-renk-text, #4a3e3d);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.checkout-form-grid input:focus,
.checkout-form-grid textarea:focus,
.mock-card-input:focus {
    outline: none;
    border-color: var(--tema-renk-birincil, #8b1d1d);
    box-shadow: 0 0 0 0.1875rem rgba(139, 29, 29, 0.08);
}

.checkout-form-grid textarea,
.form-group-full textarea {
    resize: vertical;
    min-height: 6.25rem;
}

/* Fatura Türü Seçimi */
.fatura-turu-selectors {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fatura-radio-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    cursor: pointer;
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    transition: all 0.2s ease;
    user-select: none;
}

.fatura-radio-card input[type="radio"] {
    accent-color: var(--tema-renk-birincil, #8b1d1d);
    width: 1.125rem;
    height: 1.125rem;
}

.fatura-radio-card:hover {
    border-color: var(--tema-renk-birincil, #8b1d1d);
    background-color: var(--tema-renk-bg-light, #faf9f6);
}

.fatura-radio-card.active {
    border-color: var(--tema-renk-birincil, #8b1d1d);
    background-color: var(--tema-renk-ikincil-light, #faf6f0);
}

.radio-label-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--tema-renk-text, #4a3e3d);
}

/* Custom Checkbox */
.form-checkbox-option {
    margin-top: 1.25rem;
}

.checkbox-container-custom {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    font-size: 0.9375rem;
    color: var(--tema-renk-text, #4a3e3d);
    line-height: 1.4;
}

.checkbox-container-custom input[type="checkbox"] {
    display: none;
}

.checkbox-checkmark-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.25rem;
    background-color: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-container-custom input[type="checkbox"]:checked + .checkbox-checkmark-custom {
    background-color: var(--tema-renk-birincil, #8b1d1d);
    border-color: var(--tema-renk-birincil, #8b1d1d);
}

.checkbox-container-custom input[type="checkbox"]:checked + .checkbox-checkmark-custom::after {
    content: "✓";
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: bold;
}

.checkbox-label-text a {
    color: var(--tema-renk-birincil, #8b1d1d);
    text-decoration: underline;
    font-weight: 500;
}

/* Ödeme Yöntemleri Sekmeleri (Tabs) */
.payment-tabs-container {
    display: flex;
    flex-direction: column;
}

.payment-tabs-nav {
    display: flex;
    gap: 0.35rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    position: relative;
    z-index: 1;
}

.payment-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-bottom: none;
    border-radius: 0.5rem 0.5rem 0 0;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    text-align: center;
}

.payment-tab-btn .tab-desc {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--tema-renk-secondary, #756757);
    opacity: 0.85;
    margin-left: 0.2rem;
    white-space: nowrap;
}

.payment-tab-btn.active .tab-desc {
    color: inherit;
    opacity: 0.8;
}

.payment-tab-btn input[type="radio"] {
    display: none;
}

.payment-tab-btn .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--tema-renk-secondary, #756757);
    transition: color 0.2s ease;
}

.payment-tab-btn:hover {
    background-color: var(--tema-renk-ikincil-light, #faf6f0);
}

.payment-tab-btn.active {
    background-color: #ffffff;
    border-color: var(--tema-renk-kenarlik, #e2dcd5);
    border-bottom-color: #ffffff; /* Overlaps content border */
    border-top: 0.1875rem solid var(--tema-renk-birincil, #8b1d1d);
    color: var(--tema-renk-birincil, #8b1d1d);
    position: relative;
    z-index: 2;
    padding-top: 0.875rem; /* Compensates for top border weight */
}

.payment-tab-btn.active .material-symbols-outlined {
    color: var(--tema-renk-birincil, #8b1d1d);
}

.payment-tabs-content {
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    background-color: #ffffff;
    margin-top: -0.0625rem; /* Pull up to overlap boundary */
}

.payment-tab-panel {
    padding: 2rem;
}

.details-desc-info {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #665c5b;
    margin-bottom: 1.25rem;
}

/* Banka Hesapları */
.bank-accounts-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bank-account-box {
    padding: 1rem 1.25rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
}

.bank-account-box strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--tema-renk-birincil, #8b1d1d);
    margin-bottom: 0.5rem;
}

.bank-account-box p {
    font-size: 0.8125rem;
    color: var(--tema-renk-text, #4a3e3d);
    margin: 0.25rem 0;
    word-break: break-all;
}

/* Kredi Kartı Form Simülasyonu */
.mock-credit-card-form {
    flex-grow: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
}

.card-form-group-full {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.card-form-group-flex {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.card-form-group-flex > div {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.mock-credit-card-form label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #665c5b;
}

.mock-card-input {
    padding: 0.75rem;
    font-size: 0.875rem;
}

/* Sağ Sütun: Sipariş Özeti */
.checkout-summary-column {
    position: sticky;
    top: 6rem;
}

.checkout-summary-items-list {
    max-height: 16rem;
    overflow-y: auto;
    margin-bottom: 1.25rem;
    padding-right: 0.5rem;
}

.checkout-summary-items-list::-webkit-scrollbar {
    width: 0.25rem;
}

.checkout-summary-items-list::-webkit-scrollbar-track {
    background: transparent;
}

.checkout-summary-items-list::-webkit-scrollbar-thumb {
    background: var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.125rem;
}

.checkout-summary-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 0.0625rem dashed var(--tema-renk-kenarlik, #e2dcd5);
}

.checkout-summary-item-row:last-child {
    border-bottom: none;
}

.summary-item-img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    border-radius: 0.375rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    flex-shrink: 0;
    background-color: var(--tema-renk-bg-light, #faf9f6);
}

.summary-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
    min-width: 0;
}

.summary-item-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-item-var {
    font-size: 0.75rem;
    color: #8c7f7e;
}

.summary-item-qty {
    font-size: 0.75rem;
    font-weight: 500;
    color: #665c5b;
}

.summary-item-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tema-renk-text, #4a3e3d);
    white-space: nowrap;
}

/* Fiyat Satırları */
.summary-discount-row {
    color: #2e7d32;
}

.summary-discount-row span:last-child {
    font-weight: 600;
}

.summary-extra-row {
    color: var(--tema-renk-birincil, #8b1d1d);
}

.summary-extra-row span:last-child {
    font-weight: 600;
}

/* Sipariş Tamamla Butonu */
.checkout-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1rem;
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1.5rem;
    font-family: inherit;
    box-shadow: 0 0.25rem 1rem rgba(139, 29, 29, 0.15);
}

.checkout-submit-button:hover {
    background-color: #6f1414;
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.375rem 1.25rem rgba(139, 29, 29, 0.25);
}

.checkout-submit-button:active {
    transform: translateY(0);
}

.checkout-submit-button .material-symbols-outlined {
    font-size: 1.375rem;
}

/* Sipariş Başarılı Sayfası (Success) */
.checkout-success-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem 0;
}

.success-content-card {
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.75rem;
    padding: 3.5rem 2.5rem;
    max-width: 44rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 0.5rem 2rem rgba(117, 103, 87, 0.05);
}

.success-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: #e8f5e9;
    border-radius: 50%;
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.success-icon-badge .icon {
    font-size: 3rem;
}

.success-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tema-renk-text, #4a3e3d);
    margin-bottom: 0.75rem;
}

.success-sub-desc {
    font-size: 0.95rem;
    color: #665c5b;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

/* Sipariş Bilgileri Tablosu */
.success-info-table {
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-table-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 0.0625rem solid rgba(226, 220, 213, 0.6);
}

.info-table-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #8c7f7e;
    flex-shrink: 0;
}

.info-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--tema-renk-text, #4a3e3d);
    text-align: right;
}

.info-value-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tema-renk-birincil, #8b1d1d);
}

.info-value-price {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #2e7d32;
}

/* Banka Havalesi Açıklaması */
.success-bank-instructions-box {
    text-align: left;
    border-top: 0.0625rem dashed var(--tema-renk-kenarlik, #e2dcd5);
    padding-top: 2rem;
    margin-top: 2rem;
}

.bank-box-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--tema-renk-birincil, #8b1d1d);
    margin-bottom: 1rem;
}

.bank-box-title .material-symbols-outlined {
    font-size: 1.375rem;
}

.bank-desc-warn {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #665c5b;
    margin-bottom: 1.25rem;
    background-color: rgba(139, 29, 29, 0.03);
    border-left: 0.1875rem solid var(--tema-renk-birincil, #8b1d1d);
    padding: 0.75rem 1rem;
    border-radius: 0 0.25rem 0.25rem 0;
}

.success-content-card .btn-home-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: var(--tema-renk-primary, #8b1d1d);
    color: #ffffff;
    border: 0.08rem solid var(--tema-renk-primary, #8b1d1d);
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.success-content-card .btn-home-back:hover {
    background-color: transparent;
    color: var(--tema-renk-primary, #8b1d1d);
    border-color: var(--tema-renk-primary, #8b1d1d);
    transform: translateY(-0.0625rem);
}

/* Responsive Düzenler */
@media (max-width: 64rem) {
    .checkout-page-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary-column {
        position: static;
    }
}

@media (max-width: 40rem) {
    .product-page-container {
        padding: 0 0.75rem !important;
        margin: 1rem auto !important;
    }

    .breadcrumb-nav {
        margin-top: 1.5rem;
    }

    .checkout-page-layout {
        gap: 1.25rem !important;
    }

    .checkout-form-grid:not(.product-hidden-data) {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .form-group-half, .form-group-full {
        width: 100% !important;
        grid-column: span 2 !important;
    }
    
    .bank-accounts-flex {
        grid-template-columns: 1fr !important;
    }
    
    .fatura-turu-selectors {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .checkout-card-box {
        padding: 1rem !important;
    }
    
    .success-content-card {
        padding: 2.5rem 1.5rem;
    }
    
    /* Sekme Mobil Düzenleri */
    .payment-tabs-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 0.5rem;
    }
    
    .payment-tab-btn {
        border-radius: 0.375rem;
        border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
        justify-content: flex-start;
        padding: 0.875rem 1.25rem;
    }
    
    .payment-tab-btn.active {
        border-color: var(--tema-renk-birincil, #8b1d1d);
        border-top: 0.1875rem solid var(--tema-renk-birincil, #8b1d1d);
        border-bottom-color: var(--tema-renk-birincil, #8b1d1d);
        background-color: var(--tema-renk-ikincil-light, #faf6f0);
        padding-top: 0.875rem;
    }
    
    .payment-tabs-content {
        border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
        border-radius: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .payment-tab-panel {
        padding: 1.25rem;
    }
}

/* --- Müşteri Giriş / Kayıt / Hesap Paneli Stilleri --- */
.user-auth-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1.5rem;
}

.auth-card {
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    width: 100%;
    max-width: 28rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 1.5rem rgba(117, 103, 87, 0.03);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tema-renk-birincil, #8b1d1d);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-desc {
    font-size: 0.875rem;
    color: #8c7f7e;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.auth-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
}

.auth-form-group input[type="text"],
.auth-form-group input[type="email"],
.auth-form-group input[type="tel"],
.auth-form-group input[type="password"],
.auth-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    color: var(--tema-renk-text, #4a3e3d);
    background-color: #ffffff;
    font-family: inherit;
    transition: all 0.2s ease;
}

.auth-form-group input:focus,
.auth-form-group textarea:focus {
    outline: none;
    border-color: var(--tema-renk-birincil, #8b1d1d);
    box-shadow: 0 0 0 0.1875rem rgba(139, 29, 29, 0.08);
}

.auth-form-group textarea {
    min-height: 6.25rem;
    resize: vertical;
}

.auth-form-row-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.auth-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    font-family: inherit;
    box-shadow: 0 0.25rem 1rem rgba(139, 29, 29, 0.15);
}

.auth-submit-btn:hover {
    background-color: #6f1414;
    transform: translateY(-0.0625rem);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-footer-link {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
}

.auth-footer-link a {
    color: var(--tema-renk-birincil, #8b1d1d);
    font-weight: 600;
    text-decoration: underline;
    margin-left: 0.25rem;
}

/* Hesabım Panel Yerleşimi (Layout) */
.user-panel-layout {
    display: grid;
    grid-template-columns: 16.5rem 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

/* Sol Menü (Sidebar) */
.user-sidebar {
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(117, 103, 87, 0.02);
}

.user-welcome-box {
    text-align: center;
    margin-bottom: 1.75rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding-bottom: 1.5rem;
}

.user-welcome-box .icon {
    font-size: 3.5rem;
    color: var(--tema-renk-secondary, #756757);
    margin-bottom: 0.5rem;
}

.user-welcome-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
}

.user-welcome-box p {
    font-size: 0.8125rem;
    color: #8c7f7e;
    margin-top: 0.25rem;
}

.user-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.user-menu-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--tema-renk-text, #4a3e3d);
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.user-menu-list li a:hover {
    background-color: var(--tema-renk-bg-light, #faf9f6);
    color: var(--tema-renk-birincil, #8b1d1d);
}

.user-menu-list li.active a {
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
}

.user-menu-list li.logout-menu-item a {
    color: #c62828;
}

.user-menu-list li.logout-menu-item a:hover {
    background-color: #ffebee;
}

.user-menu-list li a .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Sağ Kolon Kartları */
.user-panel-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

.user-panel-card {
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.5rem rgba(117, 103, 87, 0.02);
}

.user-panel-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
}

.user-panel-card .card-title .material-symbols-outlined {
    font-size: 1.375rem;
    color: var(--tema-renk-birincil, #8b1d1d);
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
}

.card-header-flex .card-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.card-header-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tema-renk-birincil, #8b1d1d);
}

/* Profil Bilgisi Grid */
.user-profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.user-profile-info-grid .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-profile-info-grid .info-item .label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #8c7f7e;
    letter-spacing: 0.03rem;
}

.user-profile-info-grid .info-item .value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tema-renk-text, #4a3e3d);
}

/* Siparişlerim Tablosu */
.table-responsive-custom {
    overflow-x: auto;
    border-radius: 0.375rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
}

.user-orders-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.user-orders-table th {
    background-color: var(--tema-renk-bg-light, #faf9f6);
    color: var(--tema-renk-text, #4a3e3d);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    white-space: nowrap;
}

.user-orders-table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--tema-renk-text, #4a3e3d);
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    vertical-align: middle;
}

.user-orders-table th:first-child,
.user-orders-table td:first-child {
    width: 1%;
    white-space: nowrap;
    text-align: center;
}

.user-orders-table tr:last-child td {
    border-bottom: none;
}

.user-orders-table tr:hover td {
    background-color: var(--tema-renk-bg-light, #faf9f6);
}

/* Prevent wrapping on key table columns */
.user-orders-table td:nth-last-child(1),
.user-orders-table td:nth-last-child(2),
.user-status-badge,
.user-tracking-link-btn {
    white-space: nowrap;
}

.user-orders-table .btn-go-detail {
    width: auto;
    display: inline-flex;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.empty-table-text {
    text-align: center;
    color: #8c7f7e;
    padding: 2rem !important;
}

/* Table Helper Classes */
.text-nowrap {
    white-space: nowrap !important;
}

.user-orders-table th.cell-wide,
.user-orders-table td.cell-wide {
    width: 100%;
    min-width: 15rem;
    white-space: normal !important;
}

/* User Card Header Layout Helpers */
.user-card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
}

.user-card-header-flex .card-title.no-margin {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.auth-submit-btn.header-action-btn {
    max-width: 14rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-go-detail.table-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem !important;
    width: auto;
    white-space: nowrap;
    background-color: transparent !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    border: 0.0625rem solid var(--tema-renk-birincil, #8b1d1d) !important;
    padding: 0.2rem 0.5rem !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    border-radius: 0.25rem !important;
    transition: all 0.2s ease !important;
}

.btn-go-detail.table-action-btn:hover {
    background-color: var(--tema-renk-birincil, #8b1d1d) !important;
    color: #ffffff !important;
    transform: translateY(-0.0625rem) !important;
}

.btn-go-detail.table-action-btn span.material-symbols-outlined {
    font-size: 0.95rem !important;
}

/* Durum Badgeleri */
.user-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 6.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.user-status-badge.beklemede { background-color: #ffe0b2; color: #e65100; }
.user-status-badge.onaylandi { background-color: #b3e5fc; color: #01579b; }
.user-status-badge.kargoda { background-color: #d1c4e9; color: #311b92; }
.user-status-badge.tamamlandi { background-color: #c8e6c9; color: #1b5e20; }
.user-status-badge.iptal { background-color: #ffcdd2; color: #b71c1c; }

/* Kargo Takip Linki */
.user-tracking-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.2rem;
    font-size: 0.75rem;
    color: var(--tema-renk-birincil, #8b1d1d);
    font-weight: 600;
    transition: all 0.2s ease;
}

.user-tracking-link-btn:hover {
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    border-color: var(--tema-renk-birincil, #8b1d1d);
}

.user-tracking-link-btn .material-symbols-outlined {
    font-size: 0.95rem;
}

.no-tracking-val {
    color: #8c7f7e;
    font-weight: 500;
}

/* Adres Kartları Izgarası (Grid) */
.user-addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.address-card-box {
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    position: relative;
    transition: all 0.2s ease;
}

.address-card-box:hover {
    border-color: var(--tema-renk-birincil, #8b1d1d);
    box-shadow: 0 0.25rem 1rem rgba(117, 103, 87, 0.03);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.0625rem solid rgba(226, 220, 213, 0.6);
}

.address-tag-lbl {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tema-renk-birincil, #8b1d1d);
}

.address-tag-lbl .tag-icon {
    font-size: 1.125rem;
}

.btn-address-delete-card {
    background: none;
    border: none;
    color: #c62828;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-address-delete-card:hover {
    transform: scale(1.15);
}

.btn-address-delete-card .material-symbols-outlined {
    font-size: 1.25rem;
}

.btn-address-edit-card {
    background: none;
    border: none;
    color: var(--tema-renk-secondary, #756757);
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-address-edit-card:hover {
    transform: scale(1.15);
    color: var(--tema-renk-birincil, #8b1d1d);
}

.btn-address-edit-card .material-symbols-outlined {
    font-size: 1.25rem;
}

.address-actions-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-modal-submit {
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s ease;
}

.btn-modal-submit:hover {
    opacity: 0.9;
}

.address-card-body strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--tema-renk-text, #4a3e3d);
    margin-bottom: 0.25rem;
}

.address-card-body .phone {
    font-size: 0.8125rem;
    color: #8c7f7e;
    margin-bottom: 0.75rem;
}

.address-card-body .addr-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--tema-renk-text, #4a3e3d);
    margin-bottom: 0.5rem;
}

.address-card-body .location {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tema-renk-secondary, #756757);
    margin-bottom: 0.75rem;
}

.invoice-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #ffffff;
    color: #555;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.empty-addr-text {
    grid-column: span 2;
    text-align: center;
    color: #8c7f7e;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 56rem) {
    .user-panel-layout {
        grid-template-columns: 1fr;
    }
    
    .user-addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .empty-addr-text {
        grid-column: span 1;
    }
}

@media (max-width: 40rem) {
    .auth-form-row-2col {
        grid-template-columns: 1fr;
    }
    
    .user-profile-info-grid {
        grid-template-columns: 1fr;
    }
    
    .user-panel-card {
        padding: 1.5rem;
    }
}

/* --- Hepsiburada Tarzı Kayıtlı Adres Seçici Stilleri --- */
.selected-address-summary-box {
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: var(--tema-renk-ikincil-light, #faf6f0);
    margin-bottom: 1.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(117, 103, 87, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.selected-address-summary-box:hover {
    border-color: var(--tema-renk-birincil, #8b1d1d);
}

.summary-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.0625rem solid rgba(226, 220, 213, 0.6);
    padding-bottom: 0.5rem;
}

.address-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tema-renk-birincil, #8b1d1d);
}

.address-title-badge .badge-icon {
    font-size: 1.125rem;
}

.btn-change-address {
    background: none;
    border: none;
    color: var(--tema-renk-birincil, #8b1d1d);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.btn-change-address:hover {
    background-color: rgba(139, 29, 29, 0.05);
}

.summary-box-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-box-body strong {
    font-size: 0.9375rem;
    color: var(--tema-renk-text, #4a3e3d);
}

.summary-box-body p {
    font-size: 0.8125rem;
    color: #8c7f7e;
}

.summary-box-body .addr-text {
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* --- Adres Seçim Modalı Stilleri --- */
.modal-overlay-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0.3125rem);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.modal-content-custom {
    background-color: #ffffff;
    border-radius: 0.75rem;
    width: 90%;
    max-width: 42rem;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
}

.modal-header-custom h3 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tema-renk-birincil, #8b1d1d);
}

.btn-close-modal {
    background: none;
    border: none;
    color: #8c7f7e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.btn-close-modal:hover {
    background-color: var(--tema-renk-bg-light, #faf9f6);
    color: var(--tema-renk-text, #4a3e3d);
}

.modal-body-custom {
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.modal-address-card {
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.25rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-address-card:hover {
    border-color: var(--tema-renk-birincil, #8b1d1d);
    background-color: var(--tema-renk-ikincil-light, #faf6f0);
}

.modal-address-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-address-card .card-body strong {
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
}

.modal-address-card .card-body p {
    font-size: 0.75rem;
    color: #8c7f7e;
}

.modal-address-card .card-body .addr-desc {
    font-size: 0.8125rem;
    color: var(--tema-renk-text, #4a3e3d);
    line-height: 1.4;
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-select-address {
    width: 100%;
    padding: 0.625rem;
    background-color: #ffffff;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-address-card:hover .btn-select-address {
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    border-color: var(--tema-renk-birincil, #8b1d1d);
}

.new-address-card-btn {
    border: 0.0625rem dashed var(--tema-renk-kenarlik, #e2dcd5);
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    color: var(--tema-renk-secondary, #756757);
}

.new-address-card-btn:hover {
    border-color: var(--tema-renk-birincil, #8b1d1d);
    color: var(--tema-renk-birincil, #8b1d1d);
    background-color: var(--tema-renk-bg-light, #faf9f6);
}

.new-address-card-btn .icon {
    font-size: 2.25rem;
}

.new-address-card-btn span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
}

/* --- Kredi Kartı 3D Simülasyon Stilleri --- */
.credit-card-simulation-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    margin-top: 1rem;
}

.interactive-card-wrapper {
    width: 24.5rem;
    height: 15rem;
    perspective: 1000px;
    flex-shrink: 0;
}

.credit-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.credit-card-inner.flipped {
    transform: rotateY(180deg);
}

.card-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.card-side.front {
    background: linear-gradient(135deg, var(--tema-renk-birincil, #8b1d1d) 0%, #4a0f0f 100%);
}

.card-side.back {
    background: linear-gradient(135deg, #4a0f0f 0%, var(--tema-renk-birincil, #8b1d1d) 100%);
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.card-header-flex-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.card-header-flex-preview .chip {
    font-size: 2.25rem;
    color: #d4af37;
}

.card-logo-preview {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.0625rem;
}

.card-number-preview {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.125rem;
    font-family: monospace;
    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.6);
    margin: 1.5rem 0;
    z-index: 2;
}

.card-footer-preview {
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.card-holder-box, .card-expiry-box {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.card-holder-box .label, .card-expiry-box .label {
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05rem;
}

.card-holder-box .value, .card-expiry-box .value {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03125rem;
    text-transform: uppercase;
}

/* Arka Yüz Stilleri */
.magnetic-strip {
    background-color: #1a1a1a;
    width: 100%;
    height: 2.5rem;
    margin-top: 1.25rem;
}

.signature-bar {
    background-color: #ffffff;
    width: 80%;
    height: 2.25rem;
    margin: 1.5rem auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    border-radius: 0.125rem;
}

.cvc-preview {
    color: #1a1a1a;
    font-family: monospace;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.0625rem;
}

.back-logo-text {
    margin-top: 2rem;
    padding: 0 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    font-weight: 600;
}

@media (max-width: 60rem) {
    .credit-card-simulation-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .interactive-card-wrapper {
        width: 100%;
        max-width: 22.5rem;
    }
}

@media (max-width: 40rem) {
    .modal-addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content-custom {
        width: 95%;
    }
}

/* Split Expiry (Month / Year) Styles */
.card-expiry-split {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mock-card-input-split {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    background-color: var(--tema-renk-input-bg, #ffffff);
    color: var(--tema-renk-text, #4a3e3d);
    font-family: inherit;
    font-size: 0.9375rem;
    text-align: center;
    transition: all 0.2s ease;
}

.mock-card-input-split:focus {
    outline: none;
    border-color: var(--tema-renk-birincil, #8b1d1d);
    box-shadow: 0 0 0 0.1875rem rgba(139, 29, 29, 0.08);
}

.expiry-divider {
    font-size: 1.125rem;
    font-weight: 600;
    color: #8c7f7e;
}

/* --- Ödeme Sayfası Kupon Sistemi Stilleri --- */
.checkout-coupon-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.coupon-input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.25rem;
    overflow: hidden;
    background-color: var(--tema-renk-input-bg, #ffffff);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.coupon-input-group:focus-within {
    border-color: var(--tema-renk-primary, #8b1d1d);
    box-shadow: 0 0 0 0.125rem rgba(139, 29, 29, 0.1);
}

.coupon-input-group:has(#coupon_code:disabled) {
    background-color: rgba(117, 103, 87, 0.05);
}

#coupon_code {
    flex-grow: 1;
    padding: 0.6rem 0.75rem;
    border: none !important;
    background: transparent;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
    text-transform: uppercase;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}

#coupon_code:disabled {
    background-color: transparent;
    color: rgba(117, 103, 87, 0.5);
    cursor: not-allowed;
}

.btn-apply-coupon {
    padding: 0.6rem 1.25rem;
    background-color: var(--tema-renk-secondary, #756757);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    background-color: var(--tema-renk-primary, #8b1d1d);
}

.btn-remove-coupon {
    padding: 0.6rem 1.25rem;
    background-color: #c62828;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-remove-coupon:hover {
    background-color: #b71c1c;
}

.coupon-message {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.coupon-message.success {
    color: #2e7d32;
}

.coupon-message.error {
    color: #c62828;
}

/* --- Müşteri Sipariş Detay Arayüzü Stilleri --- */
.user-order-detail-meta-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.user-order-detail-meta-box .meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.user-order-detail-meta-box .meta-item .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tema-renk-secondary, #756757);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.user-order-detail-meta-box .meta-item .value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tema-renk-text, #4a3e3d);
}

.user-order-addresses-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.user-order-addresses-layout .address-card {
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.user-order-addresses-layout .address-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tema-renk-birincil, #8b1d1d);
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.user-order-addresses-layout .address-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-order-addresses-layout .address-card-body p {
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
}

.user-order-addresses-layout .address-card-body p strong {
    font-weight: 600;
    color: #665c5b;
}

.user-order-addresses-layout .address-card-body p.addr-text {
    line-height: 1.5;
}

.user-order-addresses-layout .address-card-body p.addr-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

@media (max-width: 48rem) {
    .user-order-detail-meta-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .user-order-addresses-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 30rem) {
    .user-order-detail-meta-box {
        grid-template-columns: 1fr;
    }
}

/* İletişim Sayfası Düzen Sınıfları */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch; /* Sol ve sağ sütunların eşit yükseklikte olmasını sağlar */
}
.contact-form-side {
    background-color: #faf7f4;
    border: 0.0625rem solid rgba(139, 29, 29, 0.05);
    border-radius: 0.5rem;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-side {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}
.contact-info-item {
    flex: 1; /* Sağdaki kutuların eşit şekilde dikeyde uzamasını sağlar */
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: #faf7f4;
    border: 0.0625rem solid rgba(139, 29, 29, 0.05);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-item:hover {
    transform: translateY(-0.15rem);
    box-shadow: 0 0.5rem 1.5rem rgba(139, 29, 29, 0.04);
}
.contact-info-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background-color: rgba(139, 29, 29, 0.06);
    color: var(--tema-renk-primary);
    flex-shrink: 0;
}
.contact-info-icon {
    font-size: 1.6rem;
}
.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.contact-info-content h3 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    margin: 0;
}
.contact-info-content p {
    font-size: 0.9rem;
    color: var(--tema-renk-text);
    margin: 0;
    line-height: 1.5;
}
.contact-info-content p a {
    color: inherit;
    transition: color 0.2s ease;
}
.contact-info-content p a:hover {
    color: var(--tema-renk-primary);
}
@media (max-width: 48rem) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-side {
        padding: 1.5rem 1.25rem;
    }
    .contact-info-side,
    .contact-info-box {
        height: auto;
    }
    .contact-info-item {
        flex: none;
    }
}

/* Dönen Yükleme İkonu Animasyonu */
@keyframes rotate-loader {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.rotating-loader {
    animation: rotate-loader 1.2s linear infinite;
    display: inline-block;
}

/* --- Premium Arama Overlay & Canlı Arama Stilleri --- */
.search-overlay-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 62, 61, 0.4);
    backdrop-filter: blur(0.5rem);
    z-index: 1;
}

.search-container-card {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 40rem;
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.1);
    box-shadow: 0 1.5rem 4rem rgba(117, 103, 87, 0.18);
    margin-top: 12vh;
    padding: 2rem;
    animation: slideDownSearch 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideDownSearch {
    from {
        opacity: 0;
        transform: translateY(-2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-modal-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--tema-renk-primary);
}

.btn-search-close {
    background: transparent;
    border: none;
    color: var(--tema-renk-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}

.btn-search-close:hover {
    color: var(--tema-renk-primary);
    transform: rotate(90deg);
}

.btn-search-close .material-symbols-outlined {
    font-size: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 0.0625rem solid rgba(117, 103, 87, 0.18);
    border-radius: 0.125rem;
    padding: 0.75rem 1.25rem;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.search-input-wrapper:focus-within {
    border-color: var(--tema-renk-primary);
}

.search-input-icon {
    font-size: 1.35rem;
    color: var(--tema-renk-secondary);
    margin-right: 0.75rem;
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--tema-renk-text);
    background: transparent;
}

.live-search-results-box {
    margin-top: 1.25rem;
    max-height: 25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Canlı Sonuç Satırları */
.live-search-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.875rem 1rem;
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.05);
    text-decoration: none;
    transition: background-color 0.2s;
}

.live-search-item:hover {
    background-color: rgba(117, 103, 87, 0.02);
}

.live-search-img {
    width: 3.25rem;
    height: 3.25rem;
    object-fit: cover;
    border: 0.0625rem solid rgba(117, 103, 87, 0.05);
}

.live-search-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex-grow: 1;
}

.live-search-cat {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--tema-renk-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04rem;
}

.live-search-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    line-height: 1.3;
}

.live-search-price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--tema-renk-primary);
}

.live-search-view-all {
    display: block;
    text-align: center;
    padding: 0.875rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
    text-decoration: none;
    border-top: 0.0625rem solid rgba(117, 103, 87, 0.08);
    transition: background-color 0.2s;
}

.live-search-view-all:hover {
    background-color: rgba(117, 103, 87, 0.02);
}

.live-search-no-results {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--tema-renk-secondary);
    font-style: italic;
}

/* --- Arama Sonuçları Sayfası Stilleri --- */
.search-page-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.search-results-area {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.search-page-header {
    text-align: center;
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08);
    padding-bottom: 2rem;
}

.search-page-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--tema-renk-primary);
    margin-bottom: 0.5rem;
}

.no-search-results-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    padding: 4rem 2rem;
}

.no-search-results-box .icon {
    font-size: 4rem;
    color: var(--tema-renk-secondary);
    margin-bottom: 1.5rem;
}

.no-search-results-box h3 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.5rem;
    color: var(--tema-renk-primary);
    margin-bottom: 0.75rem;
}

.no-search-results-box p {
    font-size: 0.9375rem;
    color: var(--tema-renk-secondary);
    max-width: 32rem;
    line-height: 1.6;
}

.search-suggested-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
    max-width: 40rem;
}

.suggested-cat-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tema-renk-secondary);
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.15);
    text-decoration: none;
    transition: all 0.2s;
}

.suggested-cat-btn:hover {
    color: var(--tema-renk-primary);
    border-color: var(--tema-renk-primary);
    background-color: rgba(117, 103, 87, 0.02);
}

.search-back-btn {
    margin-top: 1rem;
}

/* --- Favori Ürünler (Wishlist) Stilleri --- */

/* Ürün Detay Kalp Butonu */
.wishlist-toggle-btn {
    border-radius: 0 !important; /* Köşeli tasarım */
    height: 2.85rem !important; /* Yükseklik sepetle eşitlendi */
    width: 2.85rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    background-color: #ffffff;
    color: var(--tema-renk-secondary, #756757);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.wishlist-toggle-btn:hover {
    transform: scale(1.08);
    border-color: var(--tema-renk-birincil, #8b1d1d);
    color: var(--tema-renk-birincil, #8b1d1d);
    box-shadow: 0 0.5rem 1rem rgba(139, 29, 29, 0.1);
}

.wishlist-toggle-btn.active {
    background-color: var(--tema-renk-birincil, #8b1d1d);
    border-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
}

.wishlist-toggle-btn span {
    font-size: 1.5rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    transition: font-variation-settings 0.3s ease;
}

.wishlist-toggle-btn.active span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

/* Favorilerim Sayfası Grid */
.wishlist-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.wishlist-product-card {
    background-color: #ffffff;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wishlist-product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 1.5rem rgba(44, 37, 32, 0.06);
    border-color: var(--tema-renk-secondary, #756757);
}

.wishlist-image-box {
    position: relative;
    padding-top: 100%; /* Square aspect ratio */
    background-color: var(--tema-renk-bg-light, #faf9f6);
    overflow: hidden;
}

.wishlist-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.btn-wishlist-remove-card {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--tema-renk-text, #2c2520);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    z-index: 2;
}

.btn-wishlist-remove-card:hover {
    background-color: #c62828;
    color: #ffffff;
    transform: scale(1.05);
}

.btn-wishlist-remove-card span {
    font-size: 1.1rem;
}

.wishlist-details {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wishlist-details .category-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: var(--tema-renk-secondary, #756757);
    margin-bottom: 0.375rem;
}

.wishlist-details .product-title {
    font-family: var(--tema-font-family);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tema-renk-text, #2c2520);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6rem;
}

.wishlist-details .price-box {
    margin-bottom: 1rem;
    margin-top: auto;
}

.wishlist-details .price-box strong {
    font-size: 1.125rem;
    color: var(--tema-renk-birincil, #8b1d1d);
}

.btn-go-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: none;
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-go-detail:hover {
    background-color: #6d1515;
    transform: translateY(-0.0625rem);
}

.btn-go-detail span {
    font-size: 1.2rem;
}

/* Boş Favori Listesi */
.empty-wishlist-box {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    color: var(--tema-renk-secondary, #756757);
    width: 100%;
}

.empty-wishlist-box .icon {
    font-size: 4rem;
    color: var(--tema-renk-kenarlik, #e2dcd5);
    margin-bottom: 1.5rem;
}

.empty-wishlist-box p {
    font-size: 1rem;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.btn-browse-products {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.btn-browse-products:hover {
    background-color: #6d1515;
}

/* E-Bülten Abonelik Şeridi */
.newsletter-bar {
    background-color: var(--tema-renk-bg, #f7f4ed);
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding: 2.5rem 1.5rem;
    width: 100%;
}

.newsletter-container {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.newsletter-text {
    flex: 1 1 25rem;
}

.newsletter-title {
    font-family: var(--tema-font-headings, Cormorant Garamond, serif);
    font-size: 1.75rem;
    color: var(--tema-renk-primary, #8b1d1d);
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.newsletter-desc {
    font-family: var(--tema-font-family);
    font-size: 0.9375rem;
    color: var(--tema-renk-text, #2c2520);
    margin: 0;
    opacity: 0.8;
}

.newsletter-form {
    flex: 1 1 25rem;
    max-width: 35rem;
    width: 100%;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.25rem;
    padding: 0.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--tema-renk-primary, #8b1d1d);
    box-shadow: 0 0 0 0.125rem rgba(139, 29, 29, 0.1);
}

.newsletter-input-group .input-icon {
    position: absolute;
    left: 0.875rem;
    color: var(--tema-renk-secondary, #756757);
    font-size: 1.25rem;
    pointer-events: none;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    font-family: var(--tema-font-family);
    font-size: 0.9375rem;
    color: var(--tema-renk-text, #2c2520);
    background: transparent;
}

.newsletter-input::placeholder {
    color: #a09890;
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--tema-renk-primary, #8b1d1d);
    color: #ffffff;
    border: none;
    border-radius: 0.1875rem;
    font-family: var(--tema-font-family);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.newsletter-btn:hover {
    background-color: #6d1515;
}

.newsletter-btn:active {
    transform: scale(0.98);
}

.newsletter-btn span {
    font-size: 1.125rem;
}

@media (max-width: 48rem) {
    .newsletter-bar {
        padding: 2.5rem 1rem !important;
        background: linear-gradient(135deg, #fbfaf8 0%, #f5f1ea 100%) !important;
    }
    .newsletter-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    .newsletter-text {
        text-align: center !important;
        flex: none !important;
    }
    .newsletter-form {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .newsletter-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.5rem !important;
    }
    .newsletter-desc {
        font-size: 0.85rem !important;
    }
    .newsletter-input-group {
        flex-direction: column !important;
        background: transparent !important;
        border: none !important;
        gap: 0.75rem !important;
        width: 100% !important;
        box-shadow: none !important;
    }
    .newsletter-input {
        background-color: #ffffff !important;
        border: 0.0625rem solid rgba(117, 103, 87, 0.15) !important;
        border-radius: 0.5rem !important;
        height: 3rem !important;
        padding-left: 2.75rem !important;
        box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.02) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
    }
    .newsletter-input:focus {
        border-color: var(--tema-renk-primary) !important;
        box-shadow: 0 0.375rem 1rem rgba(139, 29, 29, 0.08) !important;
    }
    .newsletter-input-group .input-icon {
        top: 1.5rem !important;
        transform: translateY(-50%) !important;
    }
    .newsletter-btn {
        width: 100% !important;
        height: 3rem !important;
        border-radius: 0.5rem !important;
        justify-content: center !important;
        box-shadow: 0 0.375rem 1rem rgba(139, 29, 29, 0.12) !important;
        margin-left: 0 !important;
    }
    
    /* Brand Column and Socials on Mobile */
    .brand-col {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 2rem !important;
    }
    
    .footer-socials {
        justify-content: center !important;
        gap: 1rem !important;
        margin-top: 1.25rem !important;
    }
}

/* PayTR Ödeme Durum Sayfası Stilleri */
.fail-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: #ffebee;
    border-radius: 50%;
    color: #c62828;
    margin-bottom: 1.5rem;
}

.fail-icon-badge .icon {
    font-size: 3rem;
}

.fail-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 0.75rem;
}

.btn-home-back.fail-btn {
    background-color: #c62828;
    border-color: #c62828;
    color: #ffffff;
}

.btn-home-back.fail-btn:hover {
    background-color: #b71c1c;
    border-color: #b71c1c;
}

.btn-home-back.btn-outline-back {
    background-color: transparent;
    border: 0.0625rem solid var(--tema-renk-text, #4a3e3d);
    color: var(--tema-renk-text, #4a3e3d);
}

.btn-home-back.btn-outline-back:hover {
    background-color: rgba(74, 62, 61, 0.05);
    transform: translateY(-0.0625rem);
}

/* --- Marka Filtreleme Paneli --- */
.brand-filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-filter-item {
    display: flex;
    align-items: center;
}

.brand-filter-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
    user-select: none;
    width: 100%;
}

.brand-filter-checkbox {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--tema-renk-birincil, #8b1d1d);
    cursor: pointer;
}

/* --- Yorum Yıldız Puan Dağılımı SVG Stilleri --- */
.rating-bar-svg {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    overflow: hidden;
}

.rating-bar-bg {
    fill: var(--tema-renk-kenarlik, #e2dcd5);
}

.rating-bar-fill {
    fill: var(--tema-renk-birincil, #8b1d1d);
}

/* --- Kampanya & İndirim Stilleri --- */
.old-price {
    text-decoration: line-through;
    color: #8c827a;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.new-price {
    color: var(--tema-renk-birincil, #8b1d1d);
    font-weight: 700;
}

.discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(139, 29, 29, 0.88);
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(0.25rem);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.25rem;
    z-index: 5;
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.product-image-container {
    position: relative;
}

.totals-row-campaign {
    color: #2e7d32 !important;
    font-weight: 600;
}

/* --- Sepete Eklendi Modalı Stilleri --- */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 37, 32, 0.5);
    backdrop-filter: blur(0.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.cart-modal-content {
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    width: 90%;
    max-width: 28rem;
    box-shadow: 0 1rem 3rem rgba(44, 37, 32, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-modal-overlay.show .cart-modal-content {
    transform: scale(1);
}
.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.cart-modal-header h3 {
    font-family: var(--tema-font-headings, serif);
    font-size: 1.25rem;
    color: var(--tema-renk-text, #2c2520);
    margin: 0;
}
.cart-modal-close-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #8c827a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.cart-modal-close-btn:hover {
    background-color: rgba(117, 103, 87, 0.1);
    color: var(--tema-renk-primary, #8b1d1d);
}
.cart-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.cart-success-icon {
    font-size: 3.5rem;
    color: #2e7d32;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
.cart-success-product-info {
    font-size: 0.95rem;
    color: var(--tema-renk-text, #2c2520);
    line-height: 1.6;
    margin: 0;
}
.cart-modal-footer {
    display: flex;
    gap: 1rem;
}
.btn-cart-continue {
    flex: 1;
    background-color: #faf9f6;
    color: #4a3e3d;
    border: 0.0625rem solid rgba(117, 103, 87, 0.3);
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn-cart-continue:hover {
    background-color: #f3f0e8;
    border-color: rgba(117, 103, 87, 0.5);
}
.btn-cart-goto {
    flex: 1;
    background-color: var(--tema-renk-primary, #8b1d1d);
    color: #ffffff;
    border: none;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cart-goto:hover {
    background-color: #721818;
}

/* --- Sipariş İade Modalı Özel Stilleri --- */
.return-modal-content {
    max-width: 32rem !important;
}
.return-modal-body {
    align-items: stretch !important;
    text-align: left !important;
    margin-bottom: 1.5rem !important;
}

/* --- Adres Düzenleme Modalı Özel Kompakt Stilleri --- */
.address-edit-modal-content {
    max-width: 44rem !important;
    max-height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(0.625rem) !important;
    border-radius: 1rem !important;
}
.address-edit-modal-content form {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    flex-grow: 1 !important;
}
.address-edit-modal-content .cart-modal-body {
    overflow-y: auto !important;
    max-height: calc(90vh - 8.5rem) !important;
    padding-right: 0.5rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
    align-items: stretch !important;
    text-align: left !important;
}
.address-edit-modal-content .auth-form-group {
    margin-bottom: 0.75rem !important;
    gap: 0.25rem !important;
}
.address-edit-modal-content .auth-form-group label {
    font-size: 0.8rem !important;
    color: var(--tema-renk-secondary, #756757) !important;
}
.address-edit-modal-content .auth-form-group input[type="text"],
.address-edit-modal-content .auth-form-group input[type="tel"],
.address-edit-modal-content .auth-form-group textarea {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
    border-radius: 0.25rem !important;
}
.address-edit-modal-content .auth-form-group textarea {
    min-height: 4rem !important;
}
.address-edit-modal-content .auth-form-row-2col {
    gap: 0.75rem !important;
}
.address-edit-modal-content .fatura-turu-selectors {
    display: flex !important;
    gap: 0.5rem !important;
    margin-top: 0.25rem !important;
}
.address-edit-modal-content .fatura-radio-card {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    height: auto !important;
    flex: 1 !important;
}
.address-edit-modal-content .checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    width: 100% !important;
}
.address-edit-modal-content .checkout-form-grid.product-hidden-data {
    display: none !important;
}
.address-edit-modal-content .checkout-form-grid .form-group-full {
    grid-column: span 2 !important;
}
.address-edit-modal-content .checkout-form-grid .form-group-half {
    grid-column: span 1 !important;
}
.address-edit-modal-content .cart-modal-footer {
    border-top: 0.0625rem solid rgba(117, 103, 87, 0.1) !important;
    padding-top: 1rem !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 0.75rem !important;
}
.address-edit-modal-content .btn-cart-continue,
.address-edit-modal-content .btn-modal-submit {
    max-width: 8rem !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
}
.return-product-summary {
    background-color: var(--tema-renk-bg);
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.25rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik);
}
.return-product-summary p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--tema-renk-text);
}
#returnProductVariationRow {
    margin: 0.25rem 0 0 0;
    font-size: 0.8rem;
    color: var(--tema-renk-secondary);
}

/* --- Şifremi Unuttum & E-Bülten Stilleri --- */
.auth-footer-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
}
.auth-footer-links a {
    color: var(--tema-renk-birincil, #8b1d1d);
    font-weight: 600;
    text-decoration: underline;
}
.auth-forgot-password-row {
    margin-top: 0.5rem;
}
.newsletter-send-form {
    max-width: 48rem;
    margin: 0 auto;
}
.newsletter-progress-bar {
    width: 100%;
    background-color: var(--admin-kenarlik, #e2dcd5);
    border-radius: 0.25rem;
    overflow: hidden;
    margin-top: 1rem;
    height: 1.25rem;
    position: relative;
}
.newsletter-progress-bar-fill {
    height: 100%;
    background-color: var(--admin-yesil, #2e7d32);
    width: 0%;
    transition: width 0.3s ease;
}
.newsletter-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--admin-koyu, #2c2520);
}

/* --- Gelişmiş Filtreleme ve Sıralama Stilleri --- */
.category-sorting-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.category-sorting-box label {
    font-weight: 500;
    color: var(--tema-renk-text, #4a3e3d);
}

.sort-select {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.875rem;
    font-family: var(--tema-font-family), sans-serif;
    color: var(--tema-renk-text, #4a3e3d);
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.2);
    border-radius: 0.25rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
}

.sort-select:focus {
    border-color: var(--tema-renk-primary);
}

.price-filter-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.price-input-fields {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.price-field {
    display: flex;
    align-items: center;
    position: relative;
    border: 0.0625rem solid rgba(117, 103, 87, 0.2);
    border-radius: 0.25rem;
    background-color: #ffffff;
    padding: 0.35rem 0.5rem;
    flex: 1;
}

.price-field .price-currency {
    font-size: 0.75rem;
    color: var(--tema-renk-secondary, #756757);
    margin-right: 0.25rem;
}

.price-num-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.875rem;
    font-family: var(--tema-font-family), sans-serif;
    color: var(--tema-renk-text, #4a3e3d);
    text-align: right;
    -moz-appearance: textfield;
}

.price-num-input::-webkit-outer-spin-button,
.price-num-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-separator {
    color: var(--tema-renk-secondary, #756757);
    font-weight: 500;
}

/* Dual Range Slider Styling */
.dual-range-slider {
    position: relative;
    width: 100%;
    height: 1.5rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 0.25rem;
    background-color: rgba(117, 103, 87, 0.15);
    border-radius: 0.125rem;
    z-index: 1;
}

.dual-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 0.25rem;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
    margin: 0;
    padding: 0;
}

/* Styles for range thumbs */
.dual-range-slider input[type="range"]::-webkit-slider-thumb {
    height: 1.125rem;
    width: 1.125rem;
    border-radius: 50%;
    background-color: var(--tema-renk-primary, #8b1d1d);
    border: 0.125rem solid #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.dual-range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background-color: var(--tema-renk-secondary, #756757);
}

.dual-range-slider input[type="range"]::-moz-range-thumb {
    height: 1.125rem;
    width: 1.125rem;
    border-radius: 50%;
    background-color: var(--tema-renk-primary, #8b1d1d);
    border: 0.125rem solid #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.dual-range-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    background-color: var(--tema-renk-secondary, #756757);
}

.btn-filter-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem;
    font-size: 0.875rem;
    font-family: var(--tema-font-family), sans-serif;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--tema-renk-primary, #8b1d1d);
    border: 0.08rem solid var(--tema-renk-primary, #8b1d1d);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter-apply:hover {
    background-color: var(--tema-renk-secondary, #756757);
    border-color: var(--tema-renk-secondary, #756757);
}

.btn-filter-apply .material-symbols-outlined {
    font-size: 1.125rem;
}

/* --- Google Giriş & Kayıt Stilleri --- */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
}

.auth-divider-text {
    padding: 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tema-renk-secondary, #756757);
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: #ffffff;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    color: var(--tema-renk-text, #4a3e3d);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.125rem 0.5rem rgba(117, 103, 87, 0.03);
}

.google-login-btn:hover {
    background-color: var(--tema-renk-bg, #faf9f6);
    border-color: var(--tema-renk-secondary, #756757);
    color: var(--tema-renk-text, #2c2520);
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 1rem rgba(117, 103, 87, 0.08);
}

.google-login-btn svg {
    flex-shrink: 0;
}

/* ==========================================================================
   26. S.S.S (Sıkça Sorulan Sorular) & Destek Modülü Stilleri
   ========================================================================== */

/* S.S.S Akordiyon */
.faq-accordion-wrapper {
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background-color: #ffffff;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion-item.active {
    border-color: var(--tema-renk-primary);
    box-shadow: 0 0.5rem 1.25rem rgba(139, 29, 29, 0.04);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-question {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    transition: color 0.3s ease;
}

.faq-accordion-header:hover .faq-question,
.faq-accordion-item.active .faq-question {
    color: var(--tema-renk-primary);
}

.faq-icon {
    color: var(--tema-renk-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
    user-select: none;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--tema-renk-primary);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-accordion-content-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--tema-renk-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    border-top: 0.0625rem solid rgba(226, 220, 213, 0.5);
    padding-top: 1rem;
}

/* Destek Paneli */
.support-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-card {
    background-color: #ffffff;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-0.25rem);
    border-color: var(--tema-renk-primary);
    box-shadow: 0 0.5rem 1.5rem rgba(139, 29, 29, 0.05);
}

.support-card-icon {
    font-size: 2.25rem;
    color: var(--tema-renk-primary);
    margin-bottom: 0.75rem;
}

.support-card h4 {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.15rem;
    color: var(--tema-renk-text);
    margin-bottom: 0.5rem;
}

.support-card p {
    font-size: 0.85rem;
    color: var(--tema-renk-secondary);
    margin-bottom: 0.5rem;
}

.support-card a, 
.support-card strong {
    color: var(--tema-renk-primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
}

.support-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding-top: 2.5rem;
}

.support-section-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.5rem;
    color: var(--tema-renk-primary);
    margin-bottom: 1.5rem;
}

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-item h5 {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tema-renk-text);
    margin-bottom: 0.5rem;
}

.guide-item p {
    font-size: 0.875rem;
    color: var(--tema-renk-secondary);
    line-height: 1.5;
}

.support-ticket-form {
    background-color: #fcfbfa;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.support-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.support-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.support-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tema-renk-secondary);
}

.support-form-group input,
.support-form-group select,
.support-form-group textarea {
    padding: 0.75rem 1rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.25rem;
    background-color: #ffffff;
    color: var(--tema-renk-text);
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-form-group input:focus,
.support-form-group select:focus,
.support-form-group textarea:focus {
    border-color: var(--tema-renk-primary);
    box-shadow: 0 0 0 0.125rem rgba(139, 29, 29, 0.05);
}

.support-form-group textarea {
    height: 7rem;
    resize: vertical;
}

.btn-support-submit {
    width: 100%;
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    border: 0.0625rem solid transparent;
    border-radius: 0.25rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--tema-font-family), sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-support-submit:hover {
    background-color: #ffffff;
    color: var(--tema-renk-primary);
    border-color: var(--tema-renk-primary);
}

.btn-support-submit .rotating-loader {
    animation: spin 1s linear infinite;
}

/* İletişim Harita Bölümü */
.contact-map-wrapper {
    margin-top: 3.5rem;
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding-top: 2.5rem;
}

.contact-map-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.6rem;
    color: var(--tema-renk-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-map-container {
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    overflow: hidden;
    height: 24rem;
    background-color: #f7f4ed;
}

.contact-map-action-row {
    text-align: center;
    margin-top: 1.25rem;
}

.btn-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff;
    border: 0.0625rem solid var(--tema-renk-primary);
    color: var(--tema-renk-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-family: var(--tema-font-family), sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* .page-body a genel link stillerini ezmek icin seciciligi artiriyoruz */
.page-body a.btn-directions-link {
    color: var(--tema-renk-primary);
    text-decoration: none;
}

.btn-directions-link:hover,
.page-body a.btn-directions-link:hover {
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    text-decoration: none;
}

/* Footer Alt Bar Geliştirici İmzası */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Ödeme Yöntemleri Barı (Abonelik Şeridi Üstü) */
.footer-payment-wrapper {
    max-width: 75rem;
    margin: 0 auto 1.5rem auto;
    padding: 0 1.5rem;
    width: 100%;
}

.footer-payment-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--tema-renk-kenarlik, #e2dcd5); /* Gri/Bej dolgu */
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 2rem;
    padding: 0.25rem 0.25rem 0.25rem 1.25rem;
    box-shadow: 0 0.125rem 0.5rem rgba(117, 103, 87, 0.02);
}

.payment-text-side {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-sec-icon {
    font-size: 1.2rem;
    color: var(--tema-renk-primary, #8b1d1d);
}

.payment-bar-text {
    font-family: var(--tema-font-family), sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.025rem;
    color: var(--tema-renk-text, #4a3e3d);
}

.payment-logos-side {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background-color: #ffffff; /* Beyaz Zemin */
    border-radius: 1.75rem;
    padding: 0.3rem 1.25rem 0.3rem 0.3rem; /* Sol taraftaki ağ grubu sığsın diye sol padding küçük, sağ büyük */
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.04);
}

.payment-networks-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background-color: var(--tema-renk-bg, #f7f4ed); /* Farklı/Krem-Gri zemin rengi */
    border-radius: 1.5rem;
    padding: 0.3rem 0.875rem;
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
}

.payment-banks-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.payment-logo {
    height: 1.125rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Visa, Mastercard ve Troy logolarını görsel olarak dengelemek için büyütiyoruz */
.payment-logo.payment-network-logo {
    height: 1.5rem;
}

/* Visa logosunun daha dengeli görünmesi için ekstra büyütüyoruz */
.payment-logo.payment-network-logo[alt="Visa"] {
    height: 1.625rem;
}

/* Troy logosunu bir tık küçültüyoruz */
.payment-logo.payment-network-logo[alt="Troy"] {
    height: 1.35rem;
}

/* Paraf logosunun beyaz boşluğu fazla olduğu için yüksekliğini artırıyoruz */
.payment-logo[alt="Paraf"] {
    height: 1.45rem;
}

.payment-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-0.0625rem);
}

.developer-signature {
    display: flex;
    align-items: center;
}

.sig-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--tema-renk-secondary);
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.sig-icon {
    font-size: 1.15rem;
    color: var(--tema-renk-secondary);
    transition: transform 0.4s ease, color 0.3s ease;
    margin-left: 0.2rem; /* margin-left because text is on the left now */
}

.sig-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    font-family: var(--tema-font-family), sans-serif;
    font-weight: 500;
}

.sig-link:hover {
    color: var(--tema-renk-primary);
}

.sig-link:hover .sig-icon {
    transform: rotate(90deg);
    color: var(--tema-renk-primary);
}

.sig-link:hover .sig-text {
    max-width: 15rem;
    opacity: 1;
}

/* Responsive Kurallar */
@media (max-width: 48rem) {
    .support-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .support-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-payment-wrapper {
        margin-bottom: 1rem;
    }
    .footer-payment-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 0.75rem;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    .payment-text-side {
        justify-content: center;
        text-align: center;
        padding: 0.25rem 0;
    }
    .payment-logos-side {
        flex-direction: column;
        gap: 0.75rem;
        border-radius: 0.5rem;
        padding: 0.625rem;
        width: 100%;
    }
    .payment-networks-group {
        justify-content: center;
        width: 100%;
        padding: 0.5rem;
        border-radius: 0.375rem;
    }
    .payment-banks-group {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 0.5rem;
    }
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
    }
    
    .developer-signature {
        justify-content: center !important;
        margin-top: 0.25rem !important;
    }

    .sig-text {
        display: none !important;
    }
    
    .sig-icon {
        margin-left: 0 !important;
    }
    
    @keyframes sigPulse {
        0% { opacity: 0.6; }
        50% { opacity: 1; color: var(--tema-renk-primary); }
        100% { opacity: 0.6; }
    }
    
    .sig-link {
        animation: sigPulse 4s infinite ease-in-out !important;
    }
}

/* Ticket Sohbet Arayüzü Stilleri */
.ticket-chat-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 30rem;
    overflow-y: auto;
    padding: 1.25rem;
    background-color: #faf9f6;
    border: 0.0625rem solid var(--tema-renk-kenarlik);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.chat-message-row {
    display: flex;
    width: 100%;
}

.chat-message-row.msg-incoming {
    justify-content: flex-start;
}

.chat-message-row.msg-outgoing {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
    position: relative;
    box-shadow: 0 0.0625rem 0.125rem rgba(0,0,0,0.05);
}

.msg-incoming .message-bubble {
    background-color: #ffffff;
    border: 0.0625rem solid var(--tema-renk-kenarlik);
    color: var(--tema-renk-text);
    border-top-left-radius: 0;
}

.msg-outgoing .message-bubble {
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    border-top-right-radius: 0;
}

.message-meta {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
    border-bottom: 0.0625rem solid rgba(0,0,0,0.05);
    padding-bottom: 0.2rem;
}

.msg-outgoing .message-meta {
    border-bottom-color: rgba(255,255,255,0.15);
}

.message-meta .sender-name {
    font-weight: 700;
}

.message-meta .message-time {
    opacity: 0.8;
}

.message-text {
    word-break: break-word;
}

/* User Ticket Detail Layout Helpers */
.user-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.user-ticket-header .title-sub {
    margin-bottom: 0.25rem;
}

.user-ticket-header .subject-meta {
    font-size: 0.85rem;
    color: var(--tema-renk-secondary, #756757);
}

.user-ticket-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-back-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.user-back-link .arrow-icon {
    font-size: 1.1rem;
}

.ticket-no-messages-placeholder {
    text-align: center;
    color: var(--tema-renk-secondary, #756757);
    font-style: italic;
    padding: 2rem 0;
}

.ticket-reply-form-wrapper {
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.ticket-reply-form-wrapper .form-group-margin {
    margin-bottom: 1rem;
}

.ticket-reply-textarea {
    height: 6rem;
    padding: 0.75rem;
}

.ticket-submit-wrapper {
    display: flex;
    justify-content: flex-end;
}

.ticket-submit-btn-width {
    max-width: 12rem;
}

.ticket-alert-lock-box {
    background-color: #fcf8e3;
    border: 0.0625rem solid #faf2cc;
    color: #8a6d3b;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Destek Talepleri Kart Tasarımı */
.user-tickets-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.ticket-card {
    background-color: var(--tema-renk-kutu-bg, #ffffff);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: all 0.2s ease;
}

.ticket-card:hover {
    box-shadow: 0 0.25rem 1rem rgba(117, 103, 87, 0.06);
    border-color: var(--tema-renk-primary, #8b1d1d);
}

.ticket-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ticket-id-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ticket-id {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
}

.ticket-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #8c7f7e;
}

.ticket-date .date-icon {
    font-size: 0.95rem;
}

.ticket-card-body {
    padding: 0.1rem 0;
}

.ticket-subject {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--tema-renk-text, #4a3e3d);
    line-height: 1.4;
    margin: 0;
}

.ticket-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    padding-top: 0.85rem;
    gap: 1rem;
}

.ticket-created-at {
    font-size: 0.75rem;
    color: #8c7f7e;
}

.btn-ticket-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.725rem;
    font-weight: 500;
    color: var(--tema-renk-birincil, #8b1d1d);
    border: 0.0625rem solid var(--tema-renk-birincil, #8b1d1d);
    border-radius: 0.25rem;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-ticket-detail:hover {
    background-color: var(--tema-renk-birincil, #8b1d1d);
    color: #ffffff;
    transform: translateY(-0.0625rem);
}

.btn-ticket-detail span.material-symbols-outlined {
    font-size: 0.95rem;
}

.empty-tickets-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    color: #8c7f7e;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 0.0625rem dashed var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    gap: 0.5rem;
}

.empty-tickets-box .icon {
    font-size: 2.5rem;
    color: var(--tema-renk-secondary, #756757);
}

/* --- Kullanıcı Sipariş Detayı Finansal Özet Kartı Stilleri --- */
.user-order-totals-flex-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.user-order-totals-card {
    width: 100%;
    max-width: 20rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-order-totals-card .total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--tema-renk-text, #4a3e3d);
}

.user-order-totals-card .total-row strong {
    font-weight: 600;
}

.user-order-totals-card .total-row-havale {
    color: #2e7d32;
}

.user-order-totals-card .total-row-kapida {
    color: var(--tema-renk-birincil, #8b1d1d);
}

.user-order-totals-card .total-row-discount {
    color: #2e7d32;
}

.user-order-totals-card .total-row-divider {
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    margin: 0.25rem 0;
}

.user-order-totals-card .total-row-final {
    font-size: 0.9375rem;
    color: var(--tema-renk-text, #4a3e3d);
    font-weight: 700;
    align-items: baseline;
}

.user-order-totals-card .total-row-final strong {
    color: var(--tema-renk-birincil, #8b1d1d);
    font-size: 1.0625rem;
    font-weight: 700;
}

/* --- Sipariş Detayı Header ve İptal Butonu Stilleri --- */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-header-flex .card-title {
    margin-bottom: 0;
}

.card-header-flex .card-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-header-flex .card-header-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-header-flex .card-header-link .icon-back {
    font-size: 1.1rem;
}

.btn-user-cancel-order {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2rem !important;
    height: 2rem !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: none !important;
    background-color: rgba(139, 29, 29, 0.08) !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.btn-user-cancel-order:hover {
    background-color: var(--tema-renk-birincil, #8b1d1d) !important;
    color: white !important;
}

.btn-user-cancel-order span {
    font-size: 1.2rem !important;
}

.btn-user-return-request {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2rem !important;
    height: 2rem !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: none !important;
    background-color: rgba(117, 103, 87, 0.08) !important;
    color: var(--tema-renk-secondary, #756757) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.btn-user-return-request:hover {
    background-color: var(--tema-renk-secondary, #756757) !important;
    color: white !important;
}

.btn-user-return-request span {
    font-size: 1.2rem !important;
}

/* --- Sipariş Detayı Tablosu Görünüm Düzeltmeleri --- */
.user-order-items-table th:first-child,
.user-order-items-table td:first-child {
    width: auto !important;
    white-space: normal !important;
    text-align: left !important;
}

.user-order-action-cell-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    width: 100% !important;
}

.user-order-item-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    align-items: flex-start !important;
}

.user-order-item-name {
    font-weight: 600 !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
}

.user-order-item-variation {
    display: inline-flex !important;
    align-items: center !important;
    background-color: var(--tema-renk-bg-light, #faf9f6) !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    font-size: 0.7rem !important;
    padding: 0.15rem 0.4rem !important;
    border-radius: 0.25rem !important;
    width: fit-content !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}
.user-returns-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    width: 100% !important;
}

@media (min-width: 48rem) {
    .user-returns-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.user-return-card {
    background-color: var(--tema-renk-kutu-bg, #ffffff) !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    border-radius: 0.5rem !important;
    padding: 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    transition: all 0.2s ease !important;
    position: relative !important;
}

.user-return-card:hover {
    box-shadow: 0 0.25rem 1rem rgba(117, 103, 87, 0.06) !important;
    border-color: var(--tema-renk-primary, #8b1d1d) !important;
}

.user-return-card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    padding-bottom: 0.75rem !important;
}

.user-return-id-date {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
}

.user-return-id {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
}

.user-return-date {
    font-size: 0.725rem !important;
    color: #8c7f7e !important;
}

.user-return-card-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.user-return-product-title {
    font-size: 0.925rem !important;
    font-weight: 600 !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
    line-height: 1.3 !important;
}

.user-return-order-info {
    font-size: 0.8rem !important;
    color: var(--tema-renk-secondary, #756757) !important;
}

.user-return-order-info a {
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.user-return-order-info a:hover {
    text-decoration: underline !important;
}

.user-return-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    background-color: var(--tema-renk-bg-light, #faf9f6) !important;
    padding: 0.75rem !important;
    border-radius: 0.375rem !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
}

.user-return-detail-row {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 0.775rem !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
}

.user-return-detail-row strong {
    font-weight: 600 !important;
}

.user-return-desc-box {
    margin-top: 0.25rem !important;
    border-top: 0.0625rem dashed var(--tema-renk-kenarlik, #e2dcd5) !important;
    padding-top: 0.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
}

.user-return-desc-text {
    font-style: italic !important;
    color: var(--tema-renk-secondary, #756757) !important;
    font-size: 0.75rem !important;
}

.user-return-store-note {
    background-color: #fffde7 !important;
    border: 0.0625rem solid #fff59d !important;
    color: #f57f17 !important;
    padding: 0.75rem !important;
    border-radius: 0.375rem !important;
    font-size: 0.775rem !important;
    line-height: 1.4 !important;
}

.user-return-store-note-title {
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
    display: block !important;
}

/* Custom changes to remove inline styles */
.user-returns-title {
    margin-bottom: 2rem !important;
}

.user-no-tracking {
    color: var(--tema-renk-secondary, #756757) !important;
    font-style: italic !important;
}

.user-order-items-title {
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
}

.btn-profile-edit {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    padding: 0.4rem 0.8rem !important;
    background-color: var(--tema-renk-bg-light, #faf9f6) !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    border-radius: 0.25rem !important;
    font-size: 0.8rem !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.btn-profile-edit:hover {
    background-color: var(--tema-renk-birincil, #8b1d1d) !important;
    color: white !important;
    border-color: var(--tema-renk-birincil, #8b1d1d) !important;
    transform: translateY(-0.0625rem) !important;
}

.btn-profile-edit span.material-symbols-outlined {
    font-size: 1.1rem !important;
}

/* Premium Confirm Dialog */
.confirm-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 37, 32, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(0);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.confirm-dialog-overlay.show {
    background-color: rgba(44, 37, 32, 0.6);
    backdrop-filter: blur(0.25rem);
}

.confirm-dialog-card {
    background-color: var(--tema-renk-bg, #f7f4ed);
    border: 0.0625rem solid rgba(139, 29, 29, 0.15);
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 90%;
    max-width: 28rem;
    box-shadow: 0 1rem 3rem rgba(44, 37, 32, 0.25);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.confirm-dialog-card.show {
    transform: scale(1);
    opacity: 1;
}

.confirm-dialog-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--tema-renk-primary, #8b1d1d);
}

.confirm-dialog-header .confirm-icon {
    font-size: 2rem;
}

.confirm-dialog-header .confirm-title {
    font-family: var(--tema-font-headings, "Cormorant Garamond", serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.confirm-dialog-body {
    font-family: var(--tema-font-family, "Outfit", sans-serif);
    font-size: 1rem;
    color: var(--tema-renk-text, #2c2520);
    line-height: 1.5;
}

.confirm-dialog-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-confirm-cancel, .btn-confirm-ok {
    font-family: var(--tema-font-family, "Outfit", sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-confirm-cancel {
    background-color: transparent;
    border: 0.0625rem solid rgba(117, 103, 87, 0.3);
    color: var(--tema-renk-secondary, #756757);
}

.btn-confirm-cancel:hover {
    background-color: rgba(117, 103, 87, 0.08);
    border-color: var(--tema-renk-secondary, #756757);
}

.btn-confirm-ok {
    background-color: var(--tema-renk-primary, #8b1d1d);
    border: 0.0625rem solid var(--tema-renk-primary, #8b1d1d);
    color: #ffffff;
}

.btn-confirm-ok:hover {
    background-color: #721616;
    border-color: #721616;
    box-shadow: 0 0.25rem 0.75rem rgba(139, 29, 29, 0.25);
}

.confirm-dialog-input {
    width: 100%;
    font-family: var(--tema-font-family, "Outfit", sans-serif);
    font-size: 0.95rem;
    padding: 0.6rem;
    border: 0.0625rem solid rgba(117, 103, 87, 0.3);
    border-radius: 0.375rem;
    background-color: #ffffff;
    color: var(--tema-renk-text, #2c2520);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-top: 0.5rem;
    box-sizing: border-box;
}

.confirm-dialog-input:focus {
    border-color: var(--tema-renk-primary, #8b1d1d);
    box-shadow: 0 0 0 0.125rem rgba(139, 29, 29, 0.15);
}

/* --- Mobil Uyumlu Header Stilleri --- */
@media (max-width: 48rem) {
    /* Kampanya & Duyuru Barı */
    .announcement-bar {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.5rem !important;
        letter-spacing: 0.02rem !important;
    }

    /* Header Inner Grid */
    .header-inner {
        padding: 0.35rem 1rem !important;
        grid-template-columns: 1fr auto 1fr !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }

    .header-logo-center {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .header-nav-left {
        display: flex !important;
        justify-content: flex-start !important;
    }

    /* Sol Menü: Metinleri gizle, sadece hamburger ikonu kalsın */
    .header-nav-left .nav-mega-trigger {
        padding: 0.4rem 0 !important;
    }
    .header-nav-left .nav-mega-trigger span:not(.menu-icon) {
        display: none !important;
    }
    .header-nav-left .nav-mega-trigger .menu-icon {
        font-size: 1.5rem !important;
    }

    /* Orta Logo Alanı Küçültme */
    .header-logo-box {
        width: 5.4rem !important;
        height: 2.4rem !important;
    }
    .header-logo-wrapper {
        width: 5.6rem !important;
        height: 5.6rem !important;
        min-width: 5.6rem !important;
        min-height: 5.6rem !important;
        border: none !important;
    }
    .header-logo-img {
        width: 4.6rem !important;
        height: 4.6rem !important;
    }

    /* Kaydırılmış Durumda Logo (Shrink) */
    .header-logo-wrapper.shrink {
        width: 3.6rem !important;
        height: 3.6rem !important;
        min-width: 3.6rem !important;
        min-height: 3.6rem !important;
    }
    .header-logo-wrapper.shrink .header-logo-img {
        width: 2.8rem !important;
        height: 2.8rem !important;
    }

    /* Sağ Aksiyon Butonları */
    .header-actions {
        gap: 0.75rem !important;
        display: flex !important;
        justify-content: flex-end !important;
    }
    .action-btn .material-symbols-outlined {
        font-size: 1.35rem !important;
    }
    .cart-count-badge {
        width: 1rem !important;
        height: 1rem !important;
        font-size: 0.6rem !important;
        top: -0.3rem !important;
        right: -0.3rem !important;
    }

    /* Mobil Mega Menü */
    .mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: calc(100vh - 4.5rem) !important;
        overflow-y: auto !important;
        background-color: #ffffff !important;
        padding: 1.5rem !important;
        border-radius: 0 0 0.5rem 0.5rem !important;
        box-shadow: 0 1rem 2rem rgba(117, 103, 87, 0.15) !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.12) !important;
        
        /* Slide down animasyon başlangıcı */
        transform: translateY(-0.5rem) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
        pointer-events: none !important;
    }

    .mega-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .mega-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .mega-col {
        gap: 0.5rem !important;
    }

    .mega-cat-title {
        font-size: 1.1rem !important;
        padding-bottom: 0.25rem !important;
        border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08) !important;
    }

    .mega-sub-list {
        gap: 0.4rem !important;
        padding-left: 0.5rem !important;
    }

    .mega-sub-link {
        font-size: 0.9rem !important;
    }

    .mega-child-list {
        gap: 0.3rem !important;
        padding-left: 0.8rem !important;
    }

    .mega-child-list a {
        font-size: 0.8rem !important;
    }

    .promo-col {
        display: none !important; /* Mobilde promosyon kartı gizlensin */
    }
}

/* --- Premium Sözleşme Checkbox ve Modal Stilleri --- */
.auth-agreement-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.25rem 0;
}

.agreement-row {
    display: flex;
    align-items: flex-start;
}

.agreement-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--tema-renk-text, #4a3e3d);
    line-height: 1.4;
    user-select: none;
    text-align: left;
}

/* Standart onay kutusunu gizle */
.agreement-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Özel Onay Kutusu (Custom Checkbox) */
.custom-checkbox {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.25rem;
    background-color: #ffffff;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 0.1rem;
}

/* Onaylı Durum */
.agreement-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox {
    background-color: var(--tema-renk-primary, #8b1d1d);
    border-color: var(--tema-renk-primary, #8b1d1d);
}

/* Onay İkonu */
.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 0.375rem;
    top: 0.15rem;
    width: 0.35rem;
    height: 0.65rem;
    border: solid white;
    border-width: 0 0.125rem 0.125rem 0;
    transform: rotate(45deg);
}

.agreement-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox::after {
    display: block;
}

/* Üzerine Gelme (Hover) */
.agreement-checkbox-label:hover .custom-checkbox {
    border-color: var(--tema-renk-primary, #8b1d1d);
}

.agreement-text a {
    color: var(--tema-renk-primary, #8b1d1d);
    text-decoration: underline;
    font-weight: 600;
}

.agreement-text a:hover {
    color: var(--tema-renk-secondary, #756757);
}

.form-help-text {
    font-size: 0.75rem;
    color: #8c7f7e;
    margin-top: 0.25rem;
    display: block;
}

/* --- Premium Sözleşme Modalı --- */
.agreement-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(74, 62, 61, 0.4);
    backdrop-filter: blur(0.25rem);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.agreement-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.agreement-modal-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 0.0625rem solid rgba(117, 103, 87, 0.1);
    box-shadow: 0 1.5rem 4rem rgba(117, 103, 87, 0.18);
    width: 90%;
    max-width: 35rem;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: translateY(-2rem);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.agreement-modal-card.show {
    transform: translateY(0);
}

.agreement-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08);
}

.agreement-modal-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tema-renk-primary, #8b1d1d);
}

.agreement-modal-close-btn {
    background: transparent;
    border: none;
    color: var(--tema-renk-secondary, #756757);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}

.agreement-modal-close-btn:hover {
    color: var(--tema-renk-primary, #8b1d1d);
    transform: rotate(90deg);
}

.agreement-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--tema-renk-text, #4a3e3d);
}

.agreement-modal-body h1, 
.agreement-modal-body h2, 
.agreement-modal-body h3 {
    color: var(--tema-renk-primary, #8b1d1d);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.agreement-modal-body p {
    margin-bottom: 1rem;
}

.agreement-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 0.0625rem solid rgba(117, 103, 87, 0.08);
    display: flex;
    justify-content: flex-end;
}

.btn-agreement-ok {
    padding: 0.625rem 1.5rem;
    background-color: var(--tema-renk-primary, #8b1d1d);
    color: #ffffff;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-agreement-ok:hover {
    background-color: var(--tema-renk-secondary, #756757);
}

/* --- Apple Giriş & Kayıt Stilleri --- */
.apple-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: #000000;
    border: 0.0625rem solid #000000;
    border-radius: 0.375rem;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
}

.apple-login-btn:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.25);
}

.apple-login-btn svg {
    flex-shrink: 0;
}

/* --- Sosyal Giriş Wrapper & Yan Yana Yerleşim Stilleri --- */
.social-login-wrapper {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Eğer iki buton da varsa, yan yana sığması için padding ve font küçültülür */
.social-login-wrapper .google-login-btn,
.social-login-wrapper .apple-login-btn {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Eğer wrapper içinde sadece tek bir buton varsa, tam genişlikte ve normal boyutta kalır */
.social-login-wrapper > a:only-child {
    flex: 0 0 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
}

/* --- Apple Giriş Simülatörü (Mock) Tasarımı --- */
.apple-mock-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    padding: 1.5rem;
}

.apple-mock-card {
    background-color: #1c1c1e;
    border-radius: 1rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 28rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.5);
    border: 0.0625rem solid #2c2c2e;
}

.apple-mock-header {
    text-align: center;
    margin-bottom: 2rem;
}

.apple-mock-logo {
    margin-bottom: 1rem;
}

.apple-mock-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02rem;
    margin-bottom: 0.5rem;
}

.apple-mock-subtitle {
    font-size: 0.875rem;
    color: #aeaeae;
    line-height: 1.4;
}

.apple-mock-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.apple-mock-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.apple-mock-input-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #aeaeae;
}

.apple-mock-input {
    background-color: #2c2c2e;
    border: 0.0625rem solid #3a3a3c;
    border-radius: 0.5rem;
    color: #ffffff;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s;
}

.apple-mock-input:focus {
    border-color: #007aff;
}

.apple-mock-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: #2c2c2e;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #3a3a3c;
}

.apple-mock-checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: #007aff;
    cursor: pointer;
}

.apple-mock-checkbox-desc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.apple-mock-checkbox-desc .title {
    font-size: 0.875rem;
    font-weight: 600;
}

.apple-mock-checkbox-desc .subtitle {
    font-size: 0.75rem;
    color: #aeaeae;
    line-height: 1.3;
}

.apple-mock-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.apple-mock-btn-submit {
    background-color: #007aff;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.apple-mock-btn-submit:hover {
    background-color: #0062cc;
}

.apple-mock-btn-cancel {
    background-color: transparent;
    color: #007aff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    text-align: center;
    text-decoration: none;
}

.apple-mock-btn-cancel:hover {
    color: #0056b3;
}

.apple-mock-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #8e8e93;
    line-height: 1.4;
}

/* Footer Akordiyon Artı/Eksi Göstergesi (Varsayılan - Masaüstü Gizli) */
.footer-col-title .accordion-toggle-indicator {
    display: none;
}

@media (max-width: 48rem) {
    /* Footer Akordiyon Mobil Yapısı */
    .footer-col-title {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        padding-bottom: 0.75rem !important;
        border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
        margin-bottom: 0 !important;
    }

    /* Footer Akordiyon Gösterge Yapısı */
    .footer-col-title .accordion-toggle-indicator {
        display: inline-block !important;
        position: relative;
        width: 0.75rem;
        height: 0.75rem;
    }

    .footer-col-title .accordion-toggle-indicator::before,
    .footer-col-title .accordion-toggle-indicator::after {
        content: '';
        position: absolute;
        background-color: var(--tema-renk-primary, #8b1d1d);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    /* Yatay Çizgi */
    .footer-col-title .accordion-toggle-indicator::before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 0.08rem;
        transform: translateY(-50%);
    }

    /* Dikey Çizgi */
    .footer-col-title .accordion-toggle-indicator::after {
        top: 0;
        left: 50%;
        width: 0.08rem;
        height: 100%;
        transform: translateX(-50%);
    }

    /* Aktif durumda dikey çizgiyi gizle/döndür (eksi kalsın) */
    .footer-col.active .accordion-toggle-indicator::after {
        transform: translateX(-50%) rotate(90deg);
        opacity: 0;
    }

    .footer-col.active .accordion-toggle-indicator::before {
        transform: translateY(-50%) rotate(180deg);
    }

    .footer-links-list,
    .footer-contact-list {
        max-height: 0 !important;
        overflow: hidden !important;
        padding-left: 0.5rem !important;
        margin-top: 0 !important;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
    }

    .footer-col.active .footer-links-list,
    .footer-col.active .footer-contact-list {
        max-height: 30rem !important;
        opacity: 1;
        transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .footer-col {
        margin-bottom: 1rem !important;
    }

    main {
        padding: 0 0.5rem !important;
        margin: 1rem auto !important;
    }

    /* Mobil Tekli Ürün Grid Düzeni */
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        padding: 0 !important;
    }

    .product-card {
        border-radius: 0.75rem !important;
        padding: 0.75rem !important;
        border: none !important;
        box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.05) !important;
        background-color: #ffffff !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }

    .product-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 0.25rem 0.75rem rgba(117, 103, 87, 0.03) !important;
    }

    .product-image-container {
        border-radius: 0.5rem !important;
        height: 18rem !important;
    }

    .product-image-container img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .product-info {
        padding: 0.75rem 0.25rem 0 0.25rem !important;
    }

    .product-category {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }

    .product-name {
        font-size: 0.95rem !important;
        height: auto !important;
        line-height: 1.35 !important;
        margin-bottom: 0.5rem !important;
        color: var(--tema-renk-text) !important;
        font-weight: 500 !important;
        white-space: normal !important;
    }

    .product-price-box {
        margin-bottom: 0.75rem !important;
        font-size: 1rem !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    .product-price-box .price {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: var(--tema-renk-primary) !important;
    }

    .product-price-box .old-price {
        font-size: 0.85rem !important;
        color: var(--tema-renk-muted) !important;
    }

    .price-tax-label {
        display: none !important;
    }

    /* Ürün Kartı Aksiyon Butonları */
    .product-card-actions {
        gap: 0.5rem !important;
        margin-top: 0.75rem !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Sepete Ekle Butonu Metinli ve Geniş */
    .btn-card-main {
        flex-grow: 1 !important;
        width: auto !important;
        height: 2.5rem !important;
        padding: 0 1.25rem !important;
        border-radius: 0.375rem !important;
        background-color: var(--tema-renk-primary) !important;
        color: #ffffff !important;
        box-shadow: 0 0.25rem 0.75rem rgba(139, 29, 29, 0.15) !important;
        justify-content: center !important;
        align-items: center !important;
        transition: transform 0.2s ease, background-color 0.2s ease !important;
    }

    .btn-card-main span:not(.material-symbols-outlined) {
        display: inline !important;
    }

    .btn-card-main .material-symbols-outlined {
        font-size: 1.2rem !important;
        margin-right: 0.25rem !important;
    }

    .btn-card-main:active {
        transform: scale(0.95) !important;
        background-color: #711515 !important;
    }

    /* İncele ve Favori Butonları Kareye Yakın */
    .btn-card-icon-action {
        width: 2.5rem !important;
        height: 2.5rem !important;
        border-radius: 0.375rem !important;
        background-color: #f7f5f2 !important;
        border: 0.0625rem solid rgba(117, 103, 87, 0.1) !important;
        transition: transform 0.2s ease, background-color 0.2s ease !important;
    }

    .btn-card-icon-action .material-symbols-outlined {
        font-size: 1.15rem !important;
    }

    .btn-card-icon-action:active {
        transform: scale(0.9) !important;
        background-color: #ece9e4 !important;
    }

    /* Mobil Slider İyileştirmeleri */
    .slider-wrapper {
        margin-bottom: 0 !important;
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
        width: calc(100% + 1rem) !important;
        max-width: calc(100% + 1rem) !important;
    }

    .premium-frame {
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .premium-frame::before,
    .premium-frame::after,
    .premium-frame-inner::before,
    .premium-frame-inner::after {
        display: none !important;
    }

    .slider-container {
        height: 18rem !important;
        border-radius: 0 !important;
    }

    .slide-item {
        height: 18rem !important;
    }

    /* Slider üzerine premium koyu degrade overlay çekildi */
    .slide-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 100%) !important;
        z-index: 1;
        pointer-events: none;
    }

    .slide-content {
        padding: 1.5rem !important;
        width: 90% !important;
        max-width: 90% !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 2 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* Giriş animasyonu */
        animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translate(-50%, calc(-50% + 1rem)) !important;
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) !important;
        }
    }

    .slide-ust-baslik {
        font-size: 0.75rem !important;
        letter-spacing: 0.08rem !important;
        color: #ffffff !important;
        text-shadow: 0 0.0625rem 0.25rem rgba(0,0,0,0.3) !important;
    }

    .slide-ana-baslik {
        font-size: 1.45rem !important;
        margin-bottom: 0.35rem !important;
        line-height: 1.25 !important;
        color: #ffffff !important;
        font-family: var(--tema-font-family-serif), serif !important;
        font-weight: 700 !important;
        text-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.4) !important;
    }

    .slide-aciklama {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
        text-shadow: 0 0.0625rem 0.25rem rgba(0,0,0,0.3) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .slide-btn {
        padding: 0.6rem 1.25rem !important;
        font-size: 0.75rem !important;
        border-radius: 0.25rem !important;
        background-color: #ffffff !important;
        color: var(--tema-renk-primary) !important;
        font-weight: 700 !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }
    
    .slide-btn:active {
        transform: scale(0.95) !important;
    }

    /* Mobil Kategori Izgara Düzeni (2 Sütun, Boşluksuz ve Küçük Tipografi) */
    .home-categories-grid-section {
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
        width: calc(100% + 1rem) !important;
        max-width: calc(100% + 1rem) !important;
    }

    .categories-grid-container {
        flex-wrap: wrap !important;
    }
    
    .category-grid-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 1.5rem 1rem !important;
    }

    .category-grid-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.4rem !important;
    }

    .category-grid-action-label {
        font-size: 0.6rem !important;
        letter-spacing: 0 !important;
    }

    .section-title {
        font-size: 1.45rem !important;
    }

    .section-header {
        margin-bottom: 1.2rem !important;
    }

    .section-divider {
        margin-bottom: 0.5rem !important;
    }

    .home-product-section {
        margin: 2.5rem auto !important;
    }
}

/* ==========================================================================
   Home Page Dynamic Modules & Premium Blocks
   ========================================================================== */

/* 1. Category Grid */
.home-categories-grid-section {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.categories-grid-container {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0;
}

.category-grid-item {
    flex: 1 1 0;
    min-width: 0;
    display: block;
    padding: 1.2rem 2rem;
    border-radius: 0;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-grid-item:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
}

.category-grid-item:hover::before {
    opacity: 1;
}

.category-grid-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.category-grid-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01rem;
    line-height: 1.2;
}

.category-grid-action-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: gap 0.3s ease;
}

.category-grid-item:hover .category-grid-action-label {
    gap: 0.75rem;
}

.category-grid-action-label span.material-symbols-outlined {
    font-size: 1.1rem;
}

/* Cyclic Pastel Color Schemes */
.category-grid-item:nth-child(7n+1) {
    background-color: #f5ebe0;
    color: #6d5a49;
}
.category-grid-item:nth-child(7n+1) .category-grid-action-label {
    color: #8b1d1d;
}

.category-grid-item:nth-child(7n+2) {
    background-color: #e9edc9;
    color: #4f603c;
}
.category-grid-item:nth-child(7n+2) .category-grid-action-label {
    color: #606c38;
}

.category-grid-item:nth-child(7n+3) {
    background-color: #faedcd;
    color: #7c603a;
}
.category-grid-item:nth-child(7n+3) .category-grid-action-label {
    color: #d4a373;
}

.category-grid-item:nth-child(7n+4) {
    background-color: #fcd5ce;
    color: #8b4b45;
}
.category-grid-item:nth-child(7n+4) .category-grid-action-label {
    color: #e76f51;
}

.category-grid-item:nth-child(7n+5) {
    background-color: #e0e9f4;
    color: #4a5b6d;
}
.category-grid-item:nth-child(7n+5) .category-grid-action-label {
    color: #5c768d;
}

.category-grid-item:nth-child(7n+6) {
    background-color: #f0e6ef;
    color: #7b5a76;
}
.category-grid-item:nth-child(7n+6) .category-grid-action-label {
    color: #9d6b90;
}

.category-grid-item:nth-child(7n+7) {
    background-color: #fdf0d5;
    color: #704f24;
}
.category-grid-item:nth-child(7n+7) .category-grid-action-label {
    color: #c38e4a;
}

/* 2. Product Sections */
.home-product-section {
    max-width: 75rem;
    margin: 4.5rem auto;
    padding: 0 1.5rem;
}

.no-products-msg {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--tema-font-headings), serif;
    font-style: italic;
    color: var(--tema-renk-secondary);
    font-size: 1.1rem;
    padding: 2.5rem 0;
}

/* 3. Trust Badges */
.home-trust-badges {
    max-width: 75rem;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    background-color: rgba(117, 103, 87, 0.03);
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
}

.trust-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-badge-item .material-symbols-outlined {
    font-size: 2.25rem;
    color: var(--tema-renk-primary);
    flex-shrink: 0;
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.trust-badge-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tema-renk-text);
}

.trust-badge-text {
    font-size: 0.85rem;
    color: var(--tema-renk-secondary);
    line-height: 1.4;
}

/* 4. Testimonials Section */
.home-testimonials-section {
    max-width: 75rem;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-container {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0.5rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-x: visible;
}

.testimonials-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 0.0625rem solid rgba(117, 103, 87, 0.15);
    color: var(--tema-renk-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(117, 103, 87, 0.05);
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-nav-btn:hover {
    background-color: var(--tema-renk-primary);
    color: #ffffff;
    border-color: var(--tema-renk-primary);
    box-shadow: 0 0.75rem 1.5rem rgba(139, 29, 29, 0.2);
}

.testimonials-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    background-color: #f7f4ed;
    color: var(--tema-renk-secondary);
    border-color: rgba(117, 103, 87, 0.1);
}

.testimonials-nav-btn.prev-btn {
    left: -1.5rem;
}

.testimonials-nav-btn.next-btn {
    right: -1.5rem;
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.testimonials-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(117, 103, 87, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dot.active {
    background-color: var(--tema-renk-primary);
    transform: scale(1.25);
}

.testimonial-card {
    flex: 0 0 22rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    border: 0.0625rem solid rgba(117, 103, 87, 0.08);
    border-radius: 0.75rem;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-family: var(--tema-font-headings), serif;
    font-size: 4rem;
    color: rgba(139, 29, 29, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(139, 29, 29, 0.15);
    box-shadow: 0 0.75rem 2rem rgba(117, 103, 87, 0.06);
}

.testimonial-rating {
    display: flex;
    gap: 0.15rem;
}

.testimonial-rating .star-icon {
    font-size: 1.15rem;
    color: #ffb300;
    font-variation-settings: 'FILL' 1;
}

.testimonial-text {
    font-family: var(--tema-font-headings), serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--tema-renk-text);
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-top: 0.0625rem solid rgba(117, 103, 87, 0.08);
    padding-top: 1rem;
}

.author-name {
    font-family: var(--tema-font-headings), serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tema-renk-primary);
}

.author-product {
    font-size: 0.75rem;
    color: var(--tema-renk-secondary);
}

/* 5. Mobile Adjustments */
@media (max-width: 64rem) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 1.75rem 1.25rem;
        gap: 1.5rem;
    }
}

@media (max-width: 48rem) {
    .categories-ribbon-container {
        justify-content: flex-start;
        gap: 1.25rem;
        padding: 0.75rem 0.25rem;
    }
    
    .category-ribbon-circle {
        width: 3.75rem;
        height: 3.75rem;
    }
    
    .category-ribbon-circle .material-symbols-outlined {
        font-size: 1.5rem;
    }
    
    .category-ribbon-name {
        font-size: 0.85rem;
    }
    
    .home-product-section {
        margin: 3rem auto;
    }
    
    .home-trust-badges {
        margin: 3.5rem auto;
    }
    
    .home-testimonials-section {
        margin: 3.5rem auto;
    }
    
    .testimonials-nav-btn {
        display: none !important;
    }
    
    .testimonials-container {
        overflow-x: auto !important;
        scrollbar-width: none;
    }
    
    .testimonials-container::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-track {
        transform: none !important;
        overflow-x: visible;
    }
    
    .testimonial-card {
        flex: 0 0 17.5rem;
        padding: 1.75rem 1.25rem;
    }

    /* Kategori Sayfası Responsive Override */
    .category-layout {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    /* Mobil Filtreleme Çekmecesi */
    .category-sidebar {
        position: fixed !important;
        left: -100% !important;
        top: 0 !important;
        width: 18.75rem !important;
        height: 100vh !important;
        z-index: 1001 !important;
        background-color: #ffffff !important;
        box-shadow: 0.25rem 0 1.5rem rgba(117, 103, 87, 0.15) !important;
        transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
    }
    
    .category-sidebar.show {
        left: 0 !important;
    }
    
    /* Yarı şeffaf overlay maskesi */
    .category-sidebar-overlay {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: rgba(0, 0, 0, 0.4) !important;
        z-index: 1000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .category-sidebar-overlay.show {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobil Sidebar Başlığı ve Kapatma Butonu */
    .sidebar-mobile-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 1.25rem !important;
        border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08) !important;
        background-color: var(--tema-renk-bg-light, #faf9f6) !important;
    }
    
    .sidebar-mobile-header .mobile-header-title {
        font-family: var(--tema-font-headings), serif !important;
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        color: var(--tema-renk-primary, #8b1d1d) !important;
    }
    
    .btn-sidebar-close {
        background: transparent !important;
        border: none !important;
        color: var(--tema-renk-text, #4a3e3d) !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 2rem !important;
        height: 2rem !important;
        border-radius: 50% !important;
        transition: background-color 0.2s ease !important;
    }
    
    .btn-sidebar-close:active {
        background-color: rgba(117, 103, 87, 0.1) !important;
    }
    
    .btn-sidebar-close .material-symbols-outlined {
        font-size: 1.25rem !important;
    }
    
    /* Sidebar içerikleri için kutu düzenlemeleri */
    .category-sidebar .sidebar-box {
        border: none !important;
        box-shadow: none !important;
        border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.05) !important;
        padding: 1.5rem 1.25rem !important;
    }
    
    .category-sidebar .sidebar-box:last-child {
        border-bottom: none !important;
    }
    
    /* Mobil Filtre Butonu */
    .btn-mobile-filter {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        background-color: var(--tema-renk-bg-light, #faf9f6) !important;
        border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
        color: var(--tema-renk-text, #4a3e3d) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 2rem !important;
        font-family: var(--tema-font-family), sans-serif !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }
    
    .btn-mobile-filter:active {
        background-color: rgba(117, 103, 87, 0.05) !important;
    }
    
    .btn-mobile-filter .material-symbols-outlined {
        font-size: 1.1rem !important;
    }
    
    .category-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
        width: 100% !important;
        border-bottom: 0.0625rem solid rgba(117, 103, 87, 0.08) !important;
        padding-bottom: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .category-sorting-box {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        align-items: center !important;
        width: 100% !important;
    }

    .category-sorting-box label {
        display: none !important;
    }

    .category-sorting-box .sort-select {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .btn-mobile-filter {
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .category-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }

    .products-count {
        font-size: 0.85rem !important;
        margin-top: 0.25rem !important;
    }

    /* Ürün Detay Sayfası Mobil Fiyat Kutusu Revizyonu */
    .product-purchase-card .product-price-box {
        margin-bottom: 1.5rem !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
        background-color: rgba(117, 103, 87, 0.03) !important;
        border-radius: 0.5rem !important;
    }

    .product-purchase-card .price-row-inclusive {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    .product-purchase-card .price-value-inclusive {
        font-size: 1.6rem !important;
        font-weight: 600 !important;
        color: var(--tema-renk-primary) !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
    }

    .product-purchase-card .price-row-inclusive .old-price {
        font-size: 0.95rem !important;
        text-decoration: line-through !important;
        color: var(--tema-renk-muted, #a89f95) !important;
        white-space: nowrap !important;
    }

    .product-purchase-card .badge-tax-inclusive {
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        padding: 0.15rem 0.45rem !important;
        border-radius: 0.2rem !important;
        white-space: nowrap !important;
        background-color: var(--tema-renk-primary) !important;
        color: #ffffff !important;
    }

    .product-purchase-card .price-row-exclusive {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .product-purchase-card .price-row-exclusive .old-price {
        font-size: 0.8rem !important;
        text-decoration: line-through !important;
        color: var(--tema-renk-muted, #a89f95) !important;
        white-space: nowrap !important;
    }

    .product-purchase-card .price-value-exclusive {
        font-size: 0.95rem !important;
        color: var(--tema-renk-secondary) !important;
        white-space: nowrap !important;
    }

    .product-purchase-card .label-tax-exclusive {
        font-size: 0.75rem !important;
        color: var(--tema-renk-secondary-light, #756757) !important;
        white-space: nowrap !important;
    }

    /* Ürün Detay Satın Alma & Aksiyon Alanı Mobil Grid Tasarımı */
    .product-purchase-card .purchase-action-container {
        display: grid !important;
        grid-template-columns: 1fr 3.25rem !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }

    .product-purchase-card .quantity-picker {
        grid-row: 1 !important;
        grid-column: 1 !important;
        width: 100% !important;
        height: 3.25rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-radius: 0.375rem !important;
        background-color: #ffffff !important;
        border: 0.0625rem solid rgba(117, 103, 87, 0.2) !important;
        overflow: hidden !important;
    }

    .product-purchase-card .quantity-control-btn {
        flex: 1 !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
    }

    .product-purchase-card .quantity-input-box {
        width: 2.5rem !important;
        text-align: center !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border: none !important;
        background: transparent !important;
    }

    .product-purchase-card .wishlist-toggle-btn {
        grid-row: 1 !important;
        grid-column: 2 !important;
        width: 3.25rem !important;
        height: 3.25rem !important;
        border-radius: 50% !important;
        border: 0.0625rem solid rgba(117, 103, 87, 0.2) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #ffffff !important;
        color: var(--tema-renk-secondary, #756757) !important;
        padding: 0 !important;
    }

    .product-purchase-card .add-to-cart-submit-btn {
        grid-row: 2 !important;
        grid-column: 1 / span 2 !important;
        width: 100% !important;
        height: 3.25rem !important;
        border-radius: 0.375rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 1rem !important;
        background-color: var(--tema-renk-primary) !important;
        color: #ffffff !important;
        border: none !important;
        font-weight: 600 !important;
        box-shadow: 0 0.25rem 1rem rgba(139, 29, 29, 0.15) !important;
    }

    /* Ödeme Sayfası Mobil 360px Taşma & Hizalama Düzeltmeleri */
    html, body {
        max-width: 100% !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .checkout-page-layout {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }

    .checkout-forms-column,
    .checkout-summary-column {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .checkout-summary-item-row {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .checkout-card-box {
        padding: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* IBAN Taşmasını Engelle */
    .bank-account-box p {
        word-break: break-all !important;
        font-size: 0.85rem !important;
    }

    /* Kupon kodunun sığmasını sağla */
    .coupon-input-group {
        display: flex !important;
        width: 100% !important;
    }

    .coupon-input-group input {
        flex: 1 !important;
        min-width: 0 !important;
    }

    /* Ödeme yöntemleri sekmelerinin mobilde tam oturması */
    .payment-tab-btn {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.85rem !important;
        padding: 0.75rem 1rem !important;
    }

    /* Sepet Kargo Takip Barı Premium Tasarım */
    .summary-shipping-tracker-box {
        background-color: var(--tema-renk-kutu-bg, #ffffff) !important;
        border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
        border-radius: 0.5rem !important;
        padding: 0.75rem 1rem !important;
        box-shadow: 0 0.125rem 0.5rem rgba(117, 103, 87, 0.02) !important;
        margin-top: 0.75rem !important;
    }

    .tracker-message {
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    .tracker-progress-bar-track {
        height: 0.45rem !important;
        border-radius: 0.25rem !important;
        background-color: rgba(117, 103, 87, 0.08) !important;
        overflow: hidden !important;
        margin-top: 0.25rem !important;
    }

    .tracker-progress-bar-fill {
        background-color: var(--tema-renk-primary, #8b1d1d) !important;
        border-radius: 0.25rem !important;
        height: 100% !important;
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    /* Sepet Kartı Mobil Premium Yerleşimi */
    .cart-item-card {
        background-color: #ffffff !important;
        border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
        box-shadow: 0 0.125rem 0.5rem rgba(117, 103, 87, 0.02) !important;
        gap: 1rem !important;
        padding: 1rem !important;
        border-radius: 0.5rem !important;
    }

    .item-image-box {
        border-radius: 0.5rem !important;
        border: 0.0625rem solid rgba(117, 103, 87, 0.08) !important;
    }

    .item-details-box {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.35rem !important;
    }

    .item-name-link {
        font-family: var(--tema-font-headings), serif !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: var(--tema-renk-birincil, #8b1d1d) !important;
        line-height: 1.3 !important;
    }

    .item-cat-label {
        font-size: 0.7rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05rem !important;
    }

    .quantity-picker-small {
        border-radius: 0.25rem !important;
        border-color: rgba(117, 103, 87, 0.15) !important;
        height: 2rem !important;
        box-shadow: inset 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.02) !important;
    }

    .qty-btn-s {
        width: 1.85rem !important;
    }

    .item-total-price-val {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: var(--tema-renk-birincil, #8b1d1d) !important;
    }

    /* Sepet Silme Butonu Hover & Active */
    .cart-item-remove-btn {
        width: 2rem !important;
        height: 2rem !important;
        border-radius: 50% !important;
        background-color: rgba(117, 103, 87, 0.03) !important;
        transition: all 0.2s ease !important;
    }

    .cart-item-remove-btn:hover {
        background-color: rgba(139, 29, 29, 0.08) !important;
        color: var(--tema-renk-primary, #8b1d1d) !important;
    }
}

@media (max-width: 36rem) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* Misafir Alışverişi UX Tasarım Stilleri */
.checkout-misafir-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--tema-renk-primary, #8b1d1d);
    background-color: rgba(139, 29, 29, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-left: 0.75rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(139, 29, 29, 0.1);
    vertical-align: middle;
}

.success-register-box {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #fcfbfa;
    border: 1px solid rgba(139, 29, 29, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.04);
    text-align: left;
    animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-box-title {
    font-family: var(--tema-font-headings), serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tema-renk-primary, #8b1d1d);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.register-box-title .material-symbols-outlined {
    font-size: 1.6rem;
}

.register-box-desc {
    font-size: 0.9rem;
    color: #756757;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.success-register-form {
    display: block;
}

.register-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.register-input-group .input-wrapper {
    position: relative;
    flex: 1;
    min-width: 15rem;
}

.register-input-group .input-wrapper input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border: 1px solid rgba(117, 103, 87, 0.2);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.register-input-group .input-wrapper input:focus {
    border-color: var(--tema-renk-primary, #8b1d1d);
    box-shadow: 0 0 0 3px rgba(139, 29, 29, 0.15);
}

.register-input-group .input-wrapper .input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a39689;
    font-size: 1.2rem;
}

.btn-register-complete {
    padding: 0.85rem 2rem;
    background-color: var(--tema-renk-primary, #8b1d1d);
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-register-complete:hover {
    background-color: #6d1515;
}

.btn-register-complete:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.btn-register-complete .material-symbols-outlined {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.register-message {
    padding: 0.85rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.register-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.register-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

@media (max-width: 48rem) {
    .register-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .register-input-group .input-wrapper {
        width: 100%;
    }
    .btn-register-complete {
        width: 100%;
        justify-content: center;
    }
}

/* --- Sağ Sütun Sözleşme Kutuları --- */
.checkout-agreements-right {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem dashed var(--tema-renk-kenarlik, #e2dcd5);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.checkout-agreements-right .form-checkbox-option {
    margin-top: 0;
}
.checkout-agreements-right .checkbox-container-custom {
    font-size: 0.8125rem;
    line-height: 1.45;
}
.checkout-agreements-right .checkbox-checkmark-custom {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.0625rem;
}
.checkout-agreements-right .checkbox-container-custom input[type="checkbox"]:checked + .checkbox-checkmark-custom::after {
    font-size: 0.75rem;
}

#paytr_taksit_tablosu,
#product_paytr_taksit_tablosu {
    clear: both;
    font-size: 0.75rem;
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.5rem auto 0 auto !important;
    padding-top: 1rem;
    border-top: 0.0625rem dashed var(--tema-renk-kenarlik, #e2dcd5);
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
}
#paytr_taksit_tablosu::before,
#paytr_taksit_tablosu::after {
    display: none !important;
}
.taksit-tablosu-wrapper {
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 1rem 0.5rem !important;
    cursor: default !important;
    text-align: center !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    border-radius: 0.5rem !important;
    background-color: var(--tema-renk-kutu-bg, #ffffff) !important;
    transition: border-color 0.2s ease !important;
    display: inline-block !important;
    box-shadow: 0 0.125rem 0.5rem rgba(117, 103, 87, 0.03) !important;
}
.taksit-tablosu-wrapper:hover {
    border-color: var(--tema-renk-birincil, #8b1d1d) !important;
}
.taksit-logo img {
    max-height: 1.75rem !important;
    padding-bottom: 0.625rem !important;
}
.taksit-tutar-wrapper {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    background-color: var(--tema-renk-bg-light, #faf9f6) !important;
    border-radius: 0.25rem !important;
    overflow: hidden !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    margin-bottom: 0.5rem !important;
    box-sizing: border-box !important;
}
.taksit-tutar-wrapper:hover {
    background-color: var(--tema-renk-ikincil-light, #faf6f0) !important;
}
.taksit-tutari-text {
    flex: 1 1 50% !important;
    width: 50% !important;
    float: left !important;
    color: var(--tema-renk-secondary, #756757) !important;
    margin-bottom: 0.3125rem !important;
    font-weight: 500 !important;
    padding: 0.375rem 0.25rem !important;
    text-align: center !important;
    box-sizing: border-box !important;
}
.taksit-tutar-wrapper .taksit-tutari-text {
    margin-bottom: 0 !important;
}
.taksit-tutari {
    flex: 1 1 50% !important;
    width: 50% !important;
    float: left !important;
    padding: 0.375rem 0.25rem !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
    border: none !important;
    text-align: center !important;
    box-sizing: border-box !important;
}
.taksit-tutari-bold {
    font-weight: bold !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
}
@media (max-width: 64rem) {
    #paytr_taksit_tablosu,
    #product_paytr_taksit_tablosu {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}
@media (max-width: 40rem) {
    #paytr_taksit_tablosu,
    #product_paytr_taksit_tablosu {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
}

/* --- Ürün Sayfası Taksit Sekmesi Stilleri --- */
.installments-panel-title {
    margin-bottom: 1rem;
    color: var(--tema-renk-birincil, #8b1d1d);
}
.installments-panel-desc {
    margin-bottom: 1.5rem;
    color: var(--tema-renk-secondary, #756757);
}

/* --- Dinamik Sözleşme Modalı Stilleri --- */
.modal-content-large {
    max-width: 55rem !important;
    height: 80vh !important;
}

.contract-modal-body {
    padding: 1.5rem 2rem !important;
    overflow-y: auto !important;
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
}

.contract-modal-body h3, 
.contract-modal-body h4 {
    font-family: var(--tema-font-headings), serif !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.75rem !important;
}

.contract-modal-body p {
    margin-bottom: 1rem !important;
}

.modal-footer-custom {
    display: flex !important;
    justify-content: flex-end !important;
    padding: 1.25rem 1.5rem !important;
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    background-color: var(--tema-renk-bg-light, #faf9f6) !important;
    border-bottom-left-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
}

.btn-primary-custom {
    background-color: var(--tema-renk-birincil, #8b1d1d) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.375rem !important;
    padding: 0.75rem 1.5rem !important;
    font-family: var(--tema-font-main), sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.btn-primary-custom:hover {
    background-color: #6b1414 !important;
}

/* --- Sözleşme Eki ve Dinamik Tablo Stilleri --- */
.contract-dynamic-summary-box {
    margin-top: 2.5rem !important;
    padding: 1.5rem !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    border-radius: 0.5rem !important;
    background-color: var(--tema-renk-bg-light, #faf9f6) !important;
}

.contract-annex-title {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
    border-bottom: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    padding-bottom: 0.5rem !important;
}

.contract-annex-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

@media (max-width: 48rem) {
    .contract-annex-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

.contract-annex-col strong {
    display: block !important;
    font-size: 0.875rem !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}

.contract-annex-col p {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
}

.contract-annex-products {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.contract-annex-products strong {
    display: block !important;
    font-size: 0.875rem !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    margin-bottom: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}

.contract-products-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 1rem !important;
    background-color: #ffffff !important;
}

.contract-products-table th,
.contract-products-table td {
    padding: 0.75rem 1rem !important;
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    font-size: 0.875rem !important;
}

.contract-products-table th {
    background-color: var(--tema-renk-bg-light, #faf9f6) !important;
    color: var(--tema-renk-text, #4a3e3d) !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.contract-products-table td.text-center {
    text-align: center !important;
}

.contract-products-table td.text-right {
    text-align: right !important;
}

.contract-annex-totals {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
}

.contract-totals-row {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 18rem !important;
    font-size: 0.875rem !important;
    color: var(--tema-renk-secondary, #756757) !important;
}

.contract-totals-grand {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--tema-renk-birincil, #8b1d1d) !important;
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    padding-top: 0.5rem !important;
}

.contract-annex-date {
    display: flex !important;
    justify-content: space-between !important;
    border-top: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5) !important;
    padding-top: 1rem !important;
    font-size: 0.875rem !important;
    color: var(--tema-renk-secondary, #756757) !important;
}

.contract-annex-date p {
    margin: 0 !important;
}

/* Modalların mobilde daha iyi oturması için */
@media (max-width: 48rem) {
    .modal-content-large {
        width: 95% !important;
        height: 85vh !important;
    }
    .contract-modal-body {
        padding: 1rem 1.25rem !important;
    }
}

/* --- Sağ Sütun Ödeme Yöntemi Seçim Butonları --- */
.checkout-payment-selection-summary {
    margin: 1.5rem 0 1.25rem 0;
}

.payment-selection-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tema-renk-text, #4a3e3d);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.summary-payment-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.summary-payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.875rem 0.5rem;
    background-color: var(--tema-renk-bg-light, #faf9f6);
    border: 0.0625rem solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--tema-renk-secondary, #756757);
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.summary-payment-btn .material-symbols-outlined {
    font-size: 1.375rem;
    color: var(--tema-renk-secondary, #756757);
    transition: color 0.2s ease;
}

.summary-payment-btn .btn-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.summary-payment-btn:hover {
    background-color: var(--tema-renk-ikincil-light, #faf6f0);
    border-color: var(--tema-renk-birincil, #8b1d1d);
}

.summary-payment-btn.active {
    background-color: var(--tema-renk-birincil-light, #fdf6f6);
    border-color: var(--tema-renk-birincil, #8b1d1d);
    color: var(--tema-renk-birincil, #8b1d1d);
}

.summary-payment-btn.active .material-symbols-outlined {
    color: var(--tema-renk-birincil, #8b1d1d);
}

.summary-payment-method-info {
    margin-bottom: 0.75rem;
    min-height: 2.25rem;
}

.method-info-text {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--tema-renk-secondary, #756757);
    margin: 0;
}

/* PayTR Iframe Çerçevesi */
.paytr-checkout-iframe-wrapper {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 48rem) {
    .summary-payment-buttons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }
    .summary-payment-btn {
        padding: 0.625rem 0.25rem;
        border-radius: 0.375rem;
    }
    .summary-payment-btn .material-symbols-outlined {
        font-size: 1.25rem;
    }
    .summary-payment-btn .btn-text {
        font-size: 0.6875rem;
    }
}

/* Autocomplete Combobox Stilleri */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 12.5rem;
    overflow-y: auto;
    background-color: #ffffff;
    border: 1px solid var(--tema-renk-kenarlik, #e2dcd5);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1.5rem rgba(117, 103, 87, 0.1);
    z-index: 9999;
    margin-top: 0.25rem;
    display: none;
    padding: 0.25rem 0;
}

.autocomplete-dropdown.show {
    display: block;
}

/* Autocomplete Dropdown Elemanları */
.autocomplete-item {
    padding: 0.625rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--tema-renk-text, #4a3e3d);
    transition: all 0.15s ease;
    display: block;
    text-align: left;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: var(--tema-renk-birincil-light, #fdf6f6);
    color: var(--tema-renk-birincil, #8b1d1d);
}

.autocomplete-item-highlight {
    font-weight: 700;
    color: var(--tema-renk-birincil, #8b1d1d);
}

/* Scrollbar Tasarimi */
.autocomplete-dropdown::-webkit-scrollbar {
    width: 0.35rem;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(117, 103, 87, 0.25);
    border-radius: 0.25rem;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(117, 103, 87, 0.4);
}