/* Trendyol Clone - Mobil Öncelikli Tasarım */

:root {
    --trendyol-orange: #f27a1a;
    --trendyol-dark-orange: #e6691a;
    --trendyol-light-gray: #f5f5f5;
    --trendyol-dark-gray: #666;
    --trendyol-text: #333;
    --trendyol-border: #e6e6e6;
    --star-color: #ffa500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--trendyol-text);
    background-color: #fff;
    line-height: 1.5;
}

/* Header */
.header {
    background-color: var(--trendyol-orange);
    color: white;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-arrow {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 4px;
}

.header .logo {
    height: 28px;
    width: auto;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 28px;
    width: auto;
    max-width: 120px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-back,
.btn-search,
.btn-cart {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-back:hover,
.btn-search:hover,
.btn-cart:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #fff;
    color: var(--trendyol-orange);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon {
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #fff;
    color: var(--trendyol-orange);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--trendyol-dark-gray);
    border-bottom: 1px solid #e6e6e6;
    margin: 0;
    order: -1; /* İlk sırada görünsün */
}

.breadcrumb-item {
    color: var(--trendyol-text);
}

.breadcrumb-separator {
    margin: 0 6px;
    color: var(--trendyol-dark-gray);
}

/* Ürün Detay Sayfası */
.product-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sol Üst Rozetler */
.product-badges-left {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: white;
    min-width: 45px;
}

.badge.kargo-bedava {
    background-color: #666;
}

.badge.hizli-teslimat {
    background-color: #28a745;
}

.badge.segirdataya-uygula {
    background-color: #007bff;
}

.badge-icon {
    font-size: 10px;
}

.badge-text {
    font-size: 7px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Sağ Üst İkonlar */
.product-actions-right {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.action-icon:hover {
    background-color: white;
    transform: scale(1.1);
}

.action-icon span {
    font-size: 16px;
}

/* Görsel Navigasyon */
.image-nav-left,
.image-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
}

.product-images:hover .image-nav-left,
.product-images:hover .image-nav-right {
    opacity: 1;
}

.image-nav-left {
    left: 12px;
}

.image-nav-right {
    right: 12px;
}

.image-nav-left:hover,
.image-nav-right:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Video Butonu */
.video-button {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--trendyol-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(242, 122, 26, 0.3);
}

.video-button:hover {
    background-color: var(--trendyol-dark-orange);
    transform: translateX(-50%) scale(1.05);
}

.video-icon {
    font-size: 14px;
}

.video-text {
    font-weight: 500;
}

/* Görsel Göstergeleri */
.image-indicators {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 6px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Popüler Ürün Bilgisi */
.popular-product-info {
    margin-bottom: 12px;
}

.popular-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid var(--trendyol-orange);
}

.popular-icon {
    font-size: 16px;
}

.popular-text {
    font-size: 13px;
    color: var(--trendyol-dark-gray);
    line-height: 1.4;
}

/* Kullanıcıların Beğeniyor */
.users-like-section {
    margin: 20px 0;
}

.likes-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--trendyol-text);
}

.likes-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.like-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.like-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

.like-text {
    font-size: 14px;
    color: var(--trendyol-text);
}

.product-images {
    position: relative;
    background-color: #f8f8f8;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--trendyol-orange);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 0;
    position: relative;
    z-index: 2;
    background-color: white;
}

.product-content {
    padding: 16px;
}

.product-ranking {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--trendyol-dark-gray);
}

.ranking-number {
    background-color: var(--trendyol-light-gray);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.product-brand {
    font-size: 16px;
    font-weight: 600;
    color: var(--trendyol-orange);
    margin-bottom: 4px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Satıcı Bilgisi */
.seller-info {
    margin-bottom: 16px;
}

.seller-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
}

.seller-icon {
    font-size: 16px;
}

.seller-text {
    color: var(--trendyol-dark-gray);
}

.verified-badge {
    color: #28a745;
    font-weight: bold;
    margin-right: 4px;
}

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

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

.star {
    color: var(--star-color);
    font-size: 16px;
}

.star.empty {
    color: #ddd;
}

.rating-text {
    font-size: 14px;
    color: var(--trendyol-dark-gray);
}

/* Sevilen Ürün */
.loved-product {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 6px 8px;
    background-color: #fff3e0;
    border-radius: 6px;
    border-left: 3px solid var(--trendyol-orange);
}

.loved-icon {
    font-size: 14px;
}

.loved-text {
    font-size: 12px;
    color: var(--trendyol-dark-gray);
}

/* Son X Ürün Uyarısı */
.stock-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 6px 8px;
    background-color: #fff3cd;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

.warning-icon {
    font-size: 14px;
}

.warning-text {
    font-size: 12px;
    color: #856404;
    font-weight: 600;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--trendyol-text);
    margin-bottom: 8px;
}

/* Kargo Bedava */
.shipping-free {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Renk Seçenekleri */
.color-options {
    margin-bottom: 20px;
}

.color-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    color: var(--trendyol-text);
}

.color-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.color-option.selected {
    border-color: var(--trendyol-orange);
    transform: scale(1.1);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

/* Dahili Hafıza Seçenekleri */
.storage-options {
    margin-bottom: 20px;
}

.storage-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    color: var(--trendyol-text);
}

.storage-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.storage-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
}

.storage-option.selected {
    border-color: var(--trendyol-orange);
    background-color: #fff5f0;
}

.storage-option:hover {
    border-color: var(--trendyol-orange);
}

.storage-size {
    font-size: 14px;
    font-weight: 500;
    color: var(--trendyol-text);
}

.storage-stock {
    font-size: 12px;
    color: var(--trendyol-dark-gray);
}

.storage-option.selected .storage-stock {
    color: var(--trendyol-orange);
    font-weight: 500;
}

/* Sepete Ekleme Bölümü */
.add-to-cart-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.add-to-cart-section .btn-add-cart {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.add-to-cart-section .btn-primary {
    background-color: var(--trendyol-orange);
    color: white;
}

.add-to-cart-section .btn-primary:hover {
    background-color: #e77d00;
    transform: translateY(-2px);
}

.add-to-cart-section .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.add-to-cart-section .stock-warning {
    margin-top: 12px;
    padding: 10px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 14px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-section .stock-alert {
    margin-top: 12px;
    padding: 10px;
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
    font-size: 14px;
    color: #721c24;
    text-align: center;
}

/* Öne Çıkanlar */
.product-highlights {
    margin: 24px 0;
}

.highlights-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--trendyol-text);
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
}

.highlight-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--trendyol-dark-gray);
}

/* Ürün Özellikleri */
.product-specs {
    margin: 24px 0;
}

.specs-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--trendyol-text);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.spec-label {
    font-size: 14px;
    color: var(--trendyol-dark-gray);
    flex: 1;
}

.spec-value {
    font-size: 14px;
    color: var(--trendyol-text);
    font-weight: 500;
    text-align: right;
    flex: 1;
}

/* Butonlar */
.btn {
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

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

.btn-primary:hover {
    background-color: var(--trendyol-dark-orange);
}

.btn-secondary {
    background-color: #fff;
    color: var(--trendyol-orange);
    border: 2px solid var(--trendyol-orange);
}

.btn-secondary:hover {
    background-color: var(--trendyol-orange);
    color: white;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.btn-group .btn {
    flex: 1;
}

/* Stok Durumu */
.stock-status {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.stock-status.low {
    background-color: #f8d7da;
    color: #721c24;
}

/* Yorumlar Bölümü */
.reviews-section {
    margin-top: 32px;
    padding: 16px;
    background-color: #fff;
    border-top: 8px solid var(--trendyol-light-gray);
}

.reviews-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--trendyol-text);
}

.review-item {
    background-color: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-weight: 500;
    color: var(--trendyol-text);
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: var(--trendyol-dark-gray);
}

.review-status {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
}

.review-rating {
    margin-bottom: 8px;
}

.review-rating .stars {
    gap: 1px;
}

.review-rating .star {
    font-size: 14px;
    color: var(--star-color);
}

.review-comment {
    font-size: 14px;
    line-height: 1.5;
    color: var(--trendyol-text);
    margin-bottom: 8px;
}

.review-actions {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--trendyol-dark-gray);
}

.review-action {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.review-action:hover {
    color: var(--trendyol-orange);
}

.show-more-reviews {
    text-align: center;
    margin-top: 16px;
}

.show-more-btn {
    background: none;
    border: 1px solid var(--trendyol-orange);
    color: var(--trendyol-orange);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.show-more-btn:hover {
    background-color: var(--trendyol-orange);
    color: white;
}

/* Sepet Sayfası */
.cart-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px;
    min-height: 100vh;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--trendyol-border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-color {
    font-size: 12px;
    color: var(--trendyol-dark-gray);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--trendyol-orange);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--trendyol-border);
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
}

.cart-summary {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    padding: 16px;
    border-top: 1px solid var(--trendyol-border);
    margin: 0 -16px -16px -16px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

/* APK İndirme Sayfası */
.download-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 16px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-icon {
    font-size: 64px;
    color: var(--trendyol-orange);
    margin-bottom: 24px;
}

.download-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.download-message {
    font-size: 16px;
    color: var(--trendyol-dark-gray);
    margin-bottom: 32px;
    line-height: 1.5;
}

.download-progress {
    margin: 24px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--trendyol-light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--trendyol-orange);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    margin-top: 8px;
    font-size: 14px;
    color: var(--trendyol-dark-gray);
}

/* Responsive Tasarım */
@media (max-width: 480px) {
    .product-container,
    .cart-container,
    .download-container {
        max-width: 100%;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Bildirimleri */
.toast {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--trendyol-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    opacity: 1;
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

.toast.info {
    background-color: #17a2b8;
}

/* Onay Modal */
.confirm-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.close-modal {
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 24px;
    text-align: center;
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.modal-body p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.modal-body h4 {
    font-size: 22px;
    color: var(--trendyol-orange);
    margin: 16px 0 8px;
    font-weight: 600;
}

.modal-subtitle {
    font-size: 14px !important;
    color: #888 !important;
    margin-bottom: 24px !important;
}

.price-comparison {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.new-price {
    font-size: 18px;
    color: var(--trendyol-orange);
    font-weight: 600;
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px 24px;
}

.btn-cancel {
    flex: 1;
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background-color: #e9ecef;
}

.btn-confirm {
    flex: 2;
    background-color: var(--trendyol-orange);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-confirm:hover {
    background-color: var(--trendyol-dark-orange);
}

/* Sabit Alt Çubuk */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #e6e6e6;
    padding: 12px 16px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.bottom-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 480px;
    margin: 0 auto;
}

.bottom-price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bottom-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--trendyol-text);
}

.bottom-shipping {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.bottom-buttons {
    flex: 1;
    margin-left: 16px;
}

.btn-bottom {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.btn-add-cart {
    background-color: var(--trendyol-orange);
    color: white;
}

.btn-add-cart:hover {
    background-color: var(--trendyol-dark-orange);
}

.btn-disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    font-weight: 600;
}

.btn-stock {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #fff;
    color: var(--trendyol-orange);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    border: 1px solid var(--trendyol-orange);
}

/* Ana içeriğe alt padding ekle */
.product-container {
    padding-bottom: 80px;
}

/* Header Title */
.header-title {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* Basit Sepet Tasarımı */
.seller-info-simple {
    background-color: white;
    margin-bottom: 2px;
}

.seller-badge-simple {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
}

.seller-icon {
    margin-right: 8px;
    color: var(--trendyol-orange);
    font-size: 16px;
}

.seller-text {
    flex: 1;
    font-size: 14px;
    color: var(--trendyol-text);
    font-weight: 500;
}

.seller-arrow {
    color: #ccc;
    font-size: 16px;
}

.shipping-badge {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #e8f5e8;
    color: #28a745;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.shipping-icon {
    margin-right: 8px;
}

/* Basit Sepet Ürün Tasarımı */
.cart-items-simple {
    background-color: white;
}

.cart-item-simple {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.item-checkbox-simple {
    padding-top: 4px;
}

.item-checkbox-simple input {
    width: 16px;
    height: 16px;
    accent-color: var(--trendyol-orange);
}

.item-image-wrapper {
    flex-shrink: 0;
}

.cart-item-image-simple {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
}

.item-info-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-brand-simple {
    font-size: 12px;
    color: var(--trendyol-orange);
    font-weight: 600;
}

.item-title-simple {
    font-size: 14px;
    font-weight: 500;
    color: var(--trendyol-text);
    line-height: 1.3;
    margin-bottom: 4px;
}

.item-color-simple {
    font-size: 12px;
    color: var(--trendyol-dark-gray);
    margin-bottom: 4px;
}

.item-delivery-simple {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--trendyol-dark-gray);
    margin-bottom: 8px;
}

.item-controls-simple {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn-simple {
    width: 28px;
    height: 28px;
    border: 1px solid #e6e6e6;
    background-color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--trendyol-text);
}

.quantity-simple {
    min-width: 32px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.remove-btn-simple {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 16px;
    cursor: pointer;
    margin-left: 8px;
    padding: 4px;
}

.item-price-simple {
    flex-shrink: 0;
    text-align: right;
    padding-top: 4px;
}

.price-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--trendyol-text);
}

/* Basit Uyarı ve Bilgi Kutuları */
.stock-alert-simple {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #fff3cd;
    margin: 0;
    font-size: 12px;
}

.alert-icon {
    color: #856404;
}

.alert-text {
    color: #856404;
    font-weight: 600;
}

.warranty-simple {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.warranty-icon {
    margin-right: 12px;
    font-size: 16px;
}

.warranty-text {
    flex: 1;
    font-size: 14px;
    color: var(--trendyol-text);
}

.warranty-arrow {
    color: #ccc;
    font-size: 16px;
}

.item-left {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.item-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--trendyol-orange);
}

.cart-item-image-new {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-brand {
    font-size: 12px;
    color: var(--trendyol-orange);
    font-weight: 600;
}

.item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--trendyol-text);
    line-height: 1.3;
}

.item-variant {
    font-size: 12px;
    color: var(--trendyol-dark-gray);
}

.item-delivery {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--trendyol-dark-gray);
    margin-top: 4px;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.quantity-btn-new {
    width: 28px;
    height: 28px;
    border: 1px solid #e6e6e6;
    background-color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.quantity-display {
    min-width: 32px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 16px;
    cursor: pointer;
    margin-left: 8px;
}

.item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.price-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--trendyol-text);
}

.price-unit {
    font-size: 12px;
    color: var(--trendyol-dark-gray);
    margin-top: 2px;
}

/* Ek Bilgi Bölümleri */
.stock-warning-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #fff3cd;
    margin: 0 16px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.warning-icon-cart {
    font-size: 14px;
}

.warning-text-cart {
    font-size: 12px;
    color: #856404;
    font-weight: 600;
}

.warranty-info,
.discount-section {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.warranty-icon,
.discount-icon {
    margin-right: 12px;
    font-size: 16px;
}

.warranty-text,
.discount-text {
    flex: 1;
    font-size: 14px;
    color: var(--trendyol-text);
}

.warranty-arrow,
.discount-arrow {
    color: #ccc;
    font-size: 16px;
}

/* Sepet Özeti Yeni */
.cart-summary-new {
    background-color: white;
    padding: 16px;
    margin-top: 8px;
    border-top: 1px solid #e6e6e6;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.summary-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--trendyol-text);
}

.summary-shipping {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

/* Alt Sepet Onay Butonu */
.btn-confirm-cart {
    background-color: var(--trendyol-orange);
    color: white;
    position: relative;
}

.btn-confirm-cart:hover {
    background-color: var(--trendyol-dark-orange);
}

/* Ürün İstatistikleri */
.product-stats {
    margin: 16px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin: 8px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out;
}

.stat-item.loved-product {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #856404;
}

.stat-item.cart-stat {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #155724;
}

.stat-item.stock-warning {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
    animation: pulse 2s infinite;
}

.stat-item.popular-product {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: #004085;
}

.stat-icon {
    margin-right: 8px;
    font-size: 16px;
}

.stat-text {
    flex: 1;
}

.stat-text strong {
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Gönderim Bilgisi */
.shipping-info {
    margin: 12px 0;
}

.shipping-badge {
    display: flex;
    align-items: center;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 6px 0;
    font-size: 13px;
    color: #004085;
}

.shipping-icon {
    margin-right: 8px;
    font-size: 14px;
}

.shipping-text {
    font-weight: 500;
}

/* Yorumları İncele Tıklanabilir */
.like-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.like-item:hover {
    background: rgba(242, 122, 26, 0.1);
    transform: translateX(5px);
}

.like-item:active {
    transform: translateX(2px);
}
