/* --- STIL REHBERİ (Global & Minimalist) --- */
:root {
    /* Tipografi */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    /* Renk Paleti */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text: #1a1a1a;
    --color-grey: #555555;
    --color-light-grey: #f5f5f5;
    --color-border: #eaeaea;
    /* Mizanpaj */
    --header-height: 80px;
    --section-padding: 5rem 2rem;
    --container-width: 1200px;
}

/* --- Genel Sıfırlama ve Temel Stiller --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
button, select, input, textarea { color: var(--color-text); font-family: var(--font-sans); }
body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 1rem;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; }
h3 { font-size: 1.5rem; font-weight: 400; }
p { margin-bottom: 1rem; }
a { color: var(--color-text); text-decoration: none; transition: color 0.3s ease; -webkit-tap-highlight-color: transparent; }
a:hover { color: var(--color-grey); }
img { max-width: 100%; height: auto; }
.section-padding { padding: var(--section-padding); }

/* --- Buton Stilleri (Global) --- */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: var(--color-grey);
    border-color: var(--color-grey);
    color: var(--color-white);
}
.btn-outline-white {
    border-color: var(--color-white);
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05); 
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}
.btn-full-width { width: 100%; text-align: center; }
.btn-link { display: block; text-align: center; font-size: 0.9rem; text-decoration: underline; }
.btn-mini {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 500;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--color-black);
    color: var(--color-white);
}
.btn-mini:hover {
    background-color: var(--color-grey);
    border-color: var(--color-grey);
}

/* --- HEADER (Global) --- */
/* ... (header, .main-nav, .logo vb. tüm stilleriniz burada, değişiklik yok) ... */
.main-header {
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-white);
    position: sticky; top: 0; z-index: 1000;
}
.header-content {
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.header-left {
    flex-shrink: 0;
}
.main-nav {
    flex: 1;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}
.logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-black);
}
.logo:hover { color: var(--color-black); }

/* Custom Logo Styles */
.custom-logo-link {
    display: inline-block;
    line-height: 1;
}
.custom-logo {
    display: block;
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.main-nav ul { list-style: none; display: flex; gap: 2rem; }
.main-nav a {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.main-nav a:hover { border-bottom: 1px solid var(--color-black); }
.header-right i, .menu-toggle i { width: 20px; height: 20px; stroke-width: 1.5px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

/* --- HESAP DROPDOWN (Giriş yapılmamış kullanıcı) --- */
.account-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.account-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: var(--color-black);
    line-height: 1;
}
.account-dropdown-toggle i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}
.account-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 200;
}
.account-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.account-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.15s ease;
}
.account-dropdown-link i {
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
    flex-shrink: 0;
}
.account-dropdown-link:hover {
    background-color: var(--color-light-grey);
    color: var(--color-black);
}
.account-dropdown-divider {
    border-top: 1px solid var(--color-border);
    margin: 0;
}
.account-dropdown-register {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.85rem 1.25rem 1rem;
}
.account-dropdown-register .register-prompt {
    font-size: 0.8rem;
    color: var(--color-grey);
    font-weight: 300;
}
.account-dropdown-register strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.3px;
}
.account-dropdown-register:hover strong {
    text-decoration: underline;
}

/* --- SEPET SAYACI (Global) --- */
.cart-icon-link { position: relative; display: block; }
.cart-badge {
    position: absolute;
    top: -8px; right: -8px; 
    background-color: #E60000;
    color: var(--color-white);
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    font-family: var(--font-sans);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* --- ALT MENÜ (Global Desktop) --- */
.main-nav .has-submenu a { display: flex; align-items: center; gap: 0.25rem; }
.menu-chevron { width: 16px; height: 16px; stroke-width: 1.5px; }
.main-nav .has-submenu { position: relative; }
.main-nav .sub-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 220px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.main-nav .has-submenu:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .sub-menu li { list-style: none; }
.main-nav .sub-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid var(--color-border);
}
.main-nav .sub-menu li:last-child a { border-bottom: none; }
.main-nav .sub-menu li a:hover {
    background-color: var(--color-light-grey);
    border-bottom-color: var(--color-border);
}


/* --- AÇILIR PANELLER (Global) --- */
/* ... (cart-overlay, mini-cart, search-overlay, mobile-menu vb. tüm stilleriniz burada) ... */
.cart-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mini-cart {
    position: fixed; top: 0; right: -450px;
    width: 450px; height: 100vh; height: 100dvh;
    background-color: var(--color-white);
    z-index: 1002;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex; flex-direction: column;
    overflow: hidden;
}
body.cart-open .cart-overlay { opacity: 1; visibility: visible; }
body.cart-open .mini-cart { right: 0; }
body.cart-open { overflow: hidden; }
.mini-cart-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem; border-bottom: 1px solid var(--color-border);
}
.mini-cart-header h3 { margin: 0; font-size: 1.2rem; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; }
.close-cart-btn { background: none; border: none; cursor: pointer; padding: 0; }
.close-cart-btn i { width: 24px; height: 24px; color: var(--color-black); }
.mini-cart-body { flex-grow: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.cart-item-image { width: 110px; min-width: 110px; max-width: 110px; height: 75px; background-color: var(--color-light-grey); flex-shrink: 0; overflow: hidden; position: relative; }
.cart-item-image a { display: block; width: 100%; height: 100%; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cart-item-details { flex-grow: 1; min-width: 0; overflow: hidden; }
.cart-item-details h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: var(--color-black); margin-bottom: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-details .price { font-size: 1rem; color: var(--color-grey); }
.cart-item-quantity { font-size: 0.9rem; margin-top: 0.5rem; }
.cart-item-remove { background: none; border: none; cursor: pointer; padding: 0; }
.cart-item-remove i { width: 18px; height: 18px; color: var(--color-grey); transition: color 0.3s ease; }
.cart-item-remove:hover i { color: var(--color-black); }
.mini-cart-footer { padding: 1.5rem; border-top: 1px solid var(--color-border); background-color: var(--color-white); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 500; margin-bottom: 1.5rem; }
body.search-open { overflow: hidden; }
.search-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 1003;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.close-search-btn {
    position: absolute; top: 2rem; right: 2.5rem;
    background: none; border: none; cursor: pointer; padding: 0;
}
.close-search-btn i { width: 32px; height: 32px; color: var(--color-black); stroke-width: 1.5px; }
.search-content { width: 90%; max-width: 700px; text-align: center; }
.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-black); 
    padding: 1rem 0;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-black);
    text-align: center;
    outline: none;
}
.search-input::placeholder { color: var(--color-grey); font-weight: 400; opacity: 1; }
.search-input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.search-hint { font-family: var(--font-sans); color: var(--color-grey); margin-top: 1.5rem; font-size: 0.9rem; }
body.menu-open { overflow: hidden; }
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: var(--color-white); 
    z-index: 1004;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s ease-in-out;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.close-menu-btn {
    position: absolute; top: 2rem; right: 2.5rem;
    background: none; border: none; cursor: pointer; padding: 0;
}
.close-menu-btn i { width: 32px; height: 32px; color: var(--color-black); stroke-width: 1.5px; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin-bottom: 2rem; }
.mobile-nav ul li a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-black);
    font-weight: 400;
    transition: color 0.3s ease;
}
.mobile-nav ul li a:hover { color: var(--color-grey); }
.mobile-nav .has-submenu > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}
.menu-toggle-icon { width: 28px; height: 28px; transition: transform 0.4s ease; }
.menu-toggle-icon.is-open { transform: rotate(45deg); }
.mobile-nav .sub-menu {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.mobile-nav .sub-menu.is-open { max-height: 500px; transition: max-height 0.4s ease-in; }
.mobile-nav .sub-menu li a {
    font-size: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-grey);
}
.mobile-nav .sub-menu li { margin-bottom: 1.5rem; }

/* --- FOOTER (Global) --- */
.main-footer {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    color: var(--color-grey);
}
.footer-grid {
    max-width: var(--container-width);
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.footer-column h4 {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.5rem; }
.footer-column a, .footer-column p { font-size: 0.9rem; color: var(--color-grey); }
.footer-column a:hover { color: var(--color-black); }
.newsletter-form { display: flex; border-bottom: 1px solid var(--color-border); }
.newsletter-form input { flex-grow: 1; border: none; padding: 0.5rem 0; font-size: 0.9rem; }
.newsletter-form input:focus { outline: none; }
.newsletter-form button { background: none; border: none; cursor: pointer; }
.newsletter-form button i { width: 20px; color: var(--color-black); }
.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-grey);
}
.footer-bottom a { color: var(--color-grey); }

/* --- YENİDEN KULLANILAN BİLEŞENLER (Global) --- */

/* Ürün Kartı (Ana Sayfa ve İlgili Ürünler'de kullanılır) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}
.product-card .product-image {
    background-color: var(--color-light-grey);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card a:hover .product-image img { transform: scale(1.05); }
.product-info { text-align: center; padding-top: 1.5rem; }
.product-info h3 { font-size: 1.2rem; color: var(--color-text); }
.product-info .price {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-grey);
    margin-top: 0.25rem;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* Adet Seçici (Ürün Detay ve Sepet'te kullanılır) */
.quantity-selector {
    display: flex;
    border: 1px solid var(--color-border);
    height: 48px;
}
.quantity-selector .qty-btn {
    background: var(--color-light-grey);
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-grey);
}
.quantity-selector .qty-btn:hover { background: #e0e0e0; }
.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-black);
    -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}

/* Global Form Stilleri (Checkout ve Account) */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-field {
    display: flex;
    flex-direction: column;
}
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="password"],
.form-field textarea,
.form-field select {
    width: 100%;
    height: 48px;
    padding: 0 0.75rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
}
.form-field textarea { height: auto; padding: 0.75rem; }
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-black);
    box-shadow: 0 0 0 1px var(--color-black);
}
.form-field-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}
.form-field-checkbox input[type="checkbox"] { width: 1.1rem; height: 1.1rem; }
.form-field-checkbox label { margin-bottom: 0; font-weight: 400; }

/* === YENİ EKLENDİ: GLOBAL Sıralama === */
.sort-dropdown label {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin-right: 0.5rem;
}
.sort-dropdown select {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 2rem 0.6rem 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%2Dwidth%3D%2712%27%20height%3D%278%27%20fill%3D%27none%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpath%20d%3D%27M1.41.59l4.59 4.58L10.59.59 12 2 6 8 0 2 1.41.59z%27%20fill%3D%27%23000%27%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}
.sort-dropdown select:focus {
    outline: none;
    border-color: var(--color-black);
}

/* === YENİ EKLENDİ: GLOBAL Sayfalama === */
.pagination {
    margin-top: 4rem;
    text-align: center;
}
.pagination ul {
    display: inline-flex;
    list-style: none;
    gap: 0.75rem;
    align-items: center;
}
.pagination .page-num,
.pagination .page-num-next {
    display: block;
    width: 42px;
    height: 42px;
    line-height: 40px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.pagination .page-num-next {
    display: flex;
    align-items: center; /* Dikey ortalama */
    justify-content: center; /* Yatay ortalama */
}
.pagination .page-num-next i {
    width: 18px;
    height: 18px;
    display: inline-flex; /* Bazen SVG hizalamasına yardımcı olur */
}
.pagination .page-num:hover,
.pagination .page-num-next:hover {
    background-color: var(--color-light-grey);
    border-color: var(--color-grey);
}
.pagination .page-num.active {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}


/* --- MOBİL UYUMLULUK (GLOBAL ELEMENTLER) --- */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-padding { padding: 3rem 1rem; }
    /* iOS Zoom Önleme — 16px altı input zoom tetikler */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    select,
    textarea { font-size: 1rem; }
    /* Mobil Header */
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .header-content { padding: 0 1rem; gap: 0; }
    .header-right { gap: 0.75rem; }
    .custom-logo { max-height: 40px; max-width: 150px; }
    .logo { font-size: 1.5rem; }
    /* Mobil Arama */
    .search-input { font-size: 1.8rem; }
    .close-search-btn { top: 1.5rem; right: 1.5rem; }
    /* Mobil Ürün Kartı */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    /* Mobil Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    /* Mobil Logo */
    .custom-logo { max-height: 35px; max-width: 120px; }
    .logo { font-size: 1.25rem; }
    /* Mobil Sepet */
    .mini-cart { width: 100%; right: -100%; }
    body.cart-open .mini-cart { right: 0; }
    /* Mobil Ürün Kartı */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    /* Mobil Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
    /* GLOBAL FORM MOBİL */
    .form-grid { grid-template-columns: 1fr; }
    .col-span-1 { grid-column: span 1; }
    
    /* YENİ EKLENDİ: GLOBAL Sıralama Mobil */
    .sort-dropdown select {
        width: 100%;
    }
}

/* --- TOAST NOTIFICATION SİSTEMİ --- */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: all;
    cursor: pointer;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(450px);
    opacity: 0;
}

/* Toast türleri */
.toast.success {
    border-left-color: #10b981;
}

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

.toast.info {
    border-left-color: #3b82f6;
}

/* Toast ikonu */
.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.toast.success .toast-icon {
    background: #d1fae5;
    color: #10b981;
}

.toast.error .toast-icon {
    background: #fee2e2;
    color: #ef4444;
}

.toast.info .toast-icon {
    background: #dbeafe;
    color: #3b82f6;
}

/* Toast içerik */
.toast-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
}

.toast-content a {
    color: var(--color-text);
    text-decoration: underline;
    font-weight: 500;
}

.toast-content a:hover {
    color: var(--color-black);
}

/* Toast aksiyon butonu (Sepete Git vb.) */
.toast-content a.toast-action {
    display: block;
    width: fit-content;
    margin-top: 12px;
    padding: 6px 16px;
    background: var(--color-text);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
}

.toast-content a.toast-action:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Toast kapatma butonu */
.toast-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-grey);
    font-size: 18px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: var(--color-black);
}

/* Progress bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    animation: toastProgress 5s linear forwards;
}

.toast.success .toast-progress {
    color: #10b981;
}

.toast.error .toast-progress {
    color: #ef4444;
}

.toast.info .toast-progress {
    color: #3b82f6;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Mobil responsive */
@media (max-width: 1024px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 80px;
    }

    .toast {
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }

    .toast.hide {
        transform: translateY(-100px);
    }
}