/* Modern Ürün Detay Sayfası Stilleri */

/* ========================================
   ÜRÜN GÖRSELLER - YENİ TASARIM
======================================== */

/* Ana wrapper */
.product-image-wrapper {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Slider container */
.product-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

/* Her bir slide */
.product-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Ürün görseli */
.product-slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Desktop hover */
@media (min-width: 769px) {
    .product-slide-image {
        transition: transform 0.4s ease;
    }
    
    .product-slide-image:hover {
        transform: scale(1.02);
    }
    
    .product-slider-container {
        aspect-ratio: 4 / 5;
        min-height: 500px;
    }
}

/* Eski class'ları koru (uyumluluk için) */
.product-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Discount Badge Styling */
.discount-badge-corner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Swipe-friendly Product Container */
[x-data*="currentSlide"] {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

[x-data*="currentSlide"]:active {
    cursor: grabbing;
}

/* Thumbnails */
.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #8B4789 #f0f0f0;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #8B4789;
    border-radius: 3px;
}

.thumbnail-btn {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
}

.thumbnail-btn:hover {
    border-color: #D946A6;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(217, 70, 166, 0.3);
}

.thumbnail-btn.active {
    border-color: #8B4789;
    box-shadow: 0 0 0 4px rgba(139, 71, 137, 0.2);
}

/* ========================================
   PAKET KARTLARI - MODERN
======================================== */

.package-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.package-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 3px solid #e0e0e0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 71, 137, 0.05) 0%, rgba(217, 70, 166, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: #8B4789;
    box-shadow: 0 20px 60px rgba(139, 71, 137, 0.2);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.selected {
    border-color: #8B4789;
    border-width: 5px;
    background: linear-gradient(135deg, #8B4789 0%, #D946A6 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 
        0 0 0 4px rgba(139, 71, 137, 0.3),
        0 20px 60px rgba(139, 71, 137, 0.4);
    animation: selected-pulse 2s ease-in-out infinite;
}

@keyframes selected-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(139, 71, 137, 0.3), 0 20px 60px rgba(139, 71, 137, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(139, 71, 137, 0.2), 0 25px 70px rgba(139, 71, 137, 0.5); }
}

.package-card.selected::before {
    opacity: 0;
}

/* Seçili Paket - İç İşaretleme */
.package-card.selected .package-check {
    display: flex;
}

.package-check {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
}

.package-check svg {
    width: 20px;
    height: 20px;
    color: #8B4789;
}

/* Seçili paketteki metin renkleri */
.package-card.selected .price-old {
    color: rgba(255,255,255,0.7);
}

.package-card.selected .price-new {
    color: white;
}

.package-card.selected .shipping-free,
.package-card.selected .shipping-paid {
    background: rgba(255,255,255,0.2);
    color: white;
}

.package-card.selected .border-gray-200 {
    border-color: rgba(255,255,255,0.3) !important;
}

.package-card.selected .text-gray-500,
.package-card.selected .text-gray-700 {
    color: rgba(255,255,255,0.9) !important;
}

/* Eski gift-badge kaldırıldı - artık gift-section kullanılıyor */

/* ========================================
   BUNDLE/COMBO PAKET - KOMPAKT TASARIM
======================================== */

.bundle-content-compact {
    padding: 1.125rem;
    background: linear-gradient(135deg, #faf9fb 0%, #f5f0f8 100%);
    border-radius: 0.875rem;
    border: 2px solid #e9d5f5;
}

/* Ürün Resimleri Yan Yana */
.bundle-images-row {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
}

.bundle-mini-item {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
    border: 2px solid #e9d5f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bundle-mini-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.375rem;
}

.bundle-mini-count {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #8B4789;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bundle-mini-gift {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 3px 10px rgba(236, 72, 153, 0.35);
}

.bundle-mini-gift .bundle-mini-count {
    background: white;
    color: #ec4899;
}

/* Kısa Açıklama */
.bundle-summary {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b5b7a;
    text-align: center;
    line-height: 1.5;
}

/* Hediye Bölümü */
.gift-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9d5f5, transparent);
    margin: 1rem 0 0.875rem 0;
}

.gift-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: linear-gradient(135deg, #fef3f8, #fdf4f7);
    border-radius: 0.75rem;
    border: 2px dashed #ec4899;
}

.gift-section-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Hediye Ürün Resimleri */
.gift-products-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.gift-product-item {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 0.625rem;
    overflow: hidden;
    background: white;
    border: 2px solid #ec4899;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
}

.gift-product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.gift-product-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ec4899;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(236, 72, 153, 0.3);
}

.gift-section-content {
    flex: 1;
    text-align: left;
}

.gift-section-title {
    font-size: 0.6875rem;
    font-weight: 800;
    color: #ec4899;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
}

.gift-section-text {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #9d174d;
    line-height: 1.3;
}

/* Seçili pakette */
.package-card.selected .bundle-content-compact {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.package-card.selected .bundle-summary {
    color: rgba(255, 255, 255, 0.95);
}

.package-card.selected .bundle-mini-item {
    border-color: rgba(255, 255, 255, 0.5);
}

.package-card.selected .gift-section {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.package-card.selected .gift-section-title,
.package-card.selected .gift-section-text {
    color: white;
}

/* Normal Paket (Bundle Olmayan) - Kompakt */
.normal-package-compact {
    padding: 1.125rem;
    background: linear-gradient(135deg, #faf9fb 0%, #f5f0f8 100%);
    border-radius: 0.875rem;
    border: 2px solid #e9d5f5;
}

.package-product-image {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 0.875rem;
    overflow: hidden;
    background: white;
    border: 2px solid #e9d5f5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.package-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.package-qty-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #8B4789;
    color: white;
    font-size: 0.9375rem;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(139, 71, 137, 0.35);
}

.package-qty-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #8B4789;
    margin-bottom: 0.25rem;
}

.package-product-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1.4;
}


/* Seçili normal paket */
.package-card.selected .normal-package-compact {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.package-card.selected .package-qty-text,
.package-card.selected .package-product-name {
    color: white;
}

.package-card.selected .package-product-image {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Eski package-quantity gizle (artık kullanılmıyor) */
.package-quantity {
    display: none !important;
}

/* Mobil */
@media (max-width: 768px) {
    .bundle-content-compact,
    .normal-package-compact {
        padding: 0.875rem;
    }
    
    .package-product-image {
        width: 72px;
        height: 72px;
    }
    
    .package-qty-badge {
        width: 26px;
        height: 26px;
        font-size: 0.8125rem;
        top: -5px;
        right: -5px;
    }
    
    .package-qty-text {
        font-size: 1.0625rem;
    }
    
    .package-product-name {
        font-size: 0.8125rem;
    }
    
    .bundle-images-row {
        gap: 0.5rem;
        margin-bottom: 0.625rem;
    }
    
    .bundle-mini-item,
    .bundle-mini-gift {
        width: 56px;
        height: 56px;
        border-radius: 0.625rem;
    }
    
    .bundle-mini-count {
        width: 20px;
        height: 20px;
        font-size: 0.6875rem;
        bottom: -4px;
        right: -4px;
    }
    
    .bundle-mini-gift {
        font-size: 1.5rem;
    }
    
    .bundle-summary {
        font-size: 0.75rem;
    }
    
    .gift-section {
        gap: 0.5rem;
        padding: 0.75rem;
        flex-wrap: wrap;
    }
    
    .gift-section-icon {
        font-size: 1.5rem;
    }
    
    .gift-products-row {
        gap: 0.375rem;
    }
    
    .gift-product-item {
        width: 48px;
        height: 48px;
    }
    
    .gift-product-count {
        width: 18px;
        height: 18px;
        font-size: 0.6875rem;
        top: -5px;
        right: -5px;
    }
    
    .gift-section-title {
        font-size: 0.625rem;
    }
    
    .gift-section-text {
        font-size: 0.75rem;
    }
}

/* Paket Altı Sepete Ekle Butonu */
.package-add-to-cart-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    position: relative;
    overflow: hidden;
}

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

.package-add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
}

.package-add-to-cart-btn:hover::before {
    left: 100%;
}

.package-add-to-cart-btn:active {
    transform: translateY(-1px);
}

/* Mobil için paket butonu */
@media (max-width: 768px) {
    .package-add-to-cart-btn {
        padding: 1rem 1.5rem;
        border-radius: 0.875rem;
    }
    
    .package-add-to-cart-btn .text-2xl {
        font-size: 1.5rem;
    }
    
    .package-add-to-cart-btn .text-lg {
        font-size: 1rem;
    }
    
    /* Package check - mobile */
    .package-check {
        width: 28px;
        height: 28px;
        top: 10px;
        right: 10px;
    }
    
    .package-check svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   STICKY SEPETE EKLE BAR - PREMIUM
======================================== */

.sticky-bar-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1rem 1rem;
}

.sticky-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 0.875rem 1rem;
    box-shadow: 
        0 -8px 40px rgba(139, 71, 137, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid #f0e8f5;
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

/* Ürün Bilgisi */
.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.sticky-product-image {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
    border: 2px solid #f0e8f5;
}

.sticky-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.sticky-product-details {
    min-width: 0;
}

.sticky-product-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2d2d2d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.sticky-product-quantity {
    margin-top: 0.125rem;
}

.sticky-quantity-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4789 0%, #D946A6 100%);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 2rem;
}

/* Fiyat Bölümü */
.sticky-price-section {
    text-align: center;
    flex-shrink: 0;
}

.sticky-price-old {
    font-size: 0.75rem;
    color: #888;
    text-decoration: line-through;
    line-height: 1;
}

.sticky-price-current {
    font-size: 1.375rem;
    font-weight: 900;
    color: #8B4789;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
}

.sticky-discount-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.5625rem;
    font-weight: 800;
    padding: 0.1875rem 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.25rem;
    letter-spacing: 0.01em;
}

/* Sepete Ekle Butonu */
.sticky-add-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 0.875rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

.sticky-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

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

.sticky-btn-icon {
    font-size: 1.125rem;
    line-height: 1;
}

.sticky-btn-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

/* Mobil */
@media (max-width: 640px) {
    .sticky-bar-wrapper {
        padding: 0 0.5rem 0.5rem;
    }
    
    .sticky-bar-inner {
        border-radius: 1rem;
        padding: 0.75rem;
    }
    
    .sticky-product-details {
        display: none;
    }
    
    .sticky-product-image {
        width: 44px;
        height: 44px;
    }
    
    .sticky-price-current {
        font-size: 1.125rem;
    }
    
    .sticky-add-btn {
        padding: 0.75rem 1rem;
    }
    
    .sticky-btn-text {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    
    .sticky-btn-icon {
        font-size: 1rem;
        line-height: 1;
    }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 768px) {
    .sticky-product-name {
        max-width: 150px;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .sticky-bar-inner {
        padding: 1rem 1.5rem;
    }
    
    .sticky-product-image {
        width: 56px;
        height: 56px;
    }
    
    .sticky-product-name {
        font-size: 0.9rem;
        max-width: 200px;
    }
    
    .sticky-quantity-badge {
        font-size: 0.7rem;
    }
    
    .sticky-price-current {
        font-size: 1.5rem;
    }
    
    .sticky-add-btn {
        padding: 1rem 2rem;
    }
    
    .sticky-btn-text {
        font-size: 0.9rem;
    }
}

.package-card.featured {
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.package-card.featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Badge */
.package-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
    z-index: 10;
}

.package-badge.featured {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

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

/* Quantity Display */
.package-quantity {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    color: #8B4789;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.package-card.selected .package-quantity {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.package-card.selected .package-quantity span {
    color: white;
}

/* Price Display */
.price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0;
    gap: 1rem;
}

.price-new {
    font-size: 2rem;
    font-weight: 900;
    color: #8B4789;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.package-card.selected .price-new {
    color: white;
}

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

.package-card.selected .price-old {
    color: rgba(255, 255, 255, 0.7);
}

.discount-badge {
    background: #FF6B6B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: bold;
}

.package-card.selected .discount-badge {
    background: rgba(255, 255, 255, 0.3);
}

/* Shipping Fee Display */
.shipping-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 1rem;
    margin-top: 1rem;
}

.shipping-free {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.125rem;
}

.shipping-paid {
    color: #FF9800;
    font-weight: bold;
}

.package-card.selected .shipping-info {
    background: rgba(255, 255, 255, 0.2);
}

.package-card.selected .shipping-free,
.package-card.selected .shipping-paid {
    color: white;
}

/* ========================================
   SEPETE EKLE BUTONU - MODERN
======================================== */

.add-to-cart-btn {
    background: linear-gradient(135deg, #8B4789 0%, #D946A6 100%);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(139, 71, 137, 0.3);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(139, 71, 137, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(-2px);
}

/* ========================================
   MOBİL ÜRÜN SAYFASI - PREMIUM TASARIM
======================================== */
@media (max-width: 768px) {
    
    /* Product Image Wrapper - Mobil */
    .product-image-wrapper {
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: white !important;
    }
    
    /* Slider Container - Mobil (Kare görünüm) */
    .product-slider-container {
        aspect-ratio: 1 / 1 !important;
        min-height: auto !important;
        max-height: 100vw !important;
        width: 100% !important;
    }
    
    /* Her slide - Mobil */
    .product-slide {
        padding: 0.75rem !important;
    }
    
    /* Slide Image - Mobil (Tam sığacak) */
    .product-slide-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    /* Eski class uyumluluğu */
    .product-image-container {
        padding: 0 !important;
        border-radius: 0 !important;
        min-height: auto !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 !important;
        background: white !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .product-main-image {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        padding: 0.75rem !important;
        filter: none !important;
    }
    
    /* Thumbnail Gallery - Mobil */
    .thumbnail-gallery {
        padding: 0.75rem 1rem !important;
        gap: 0.625rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        background: #fafafa !important;
    }
    
    .thumbnail-btn {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        border-radius: 0.5rem !important;
        border: 2px solid #e5e5e5 !important;
        background: white !important;
        box-shadow: none !important;
        padding: 0.25rem !important;
    }
    
    .thumbnail-btn.active {
        border-color: #8B4789 !important;
        background: white !important;
    }
    
    .thumbnail-btn img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    
    /* Trust Badges - Mobil Kompakt */
    .trust-badges {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
        margin: 0.75rem 0 !important;
        padding: 0 0.75rem !important;
    }
    
    .trust-badge {
        padding: 0.5rem 0.25rem !important;
        border-radius: 0.5rem !important;
        background: #f8f5f9 !important;
        border: none !important;
    }
    
    .trust-badge-icon {
        font-size: 1rem !important;
        margin-bottom: 0.125rem !important;
    }
    
    .trust-badge-text {
        font-size: 0.5rem !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
        color: #5a4a63 !important;
    }
    
    /* Fixed Bottom Button */
    .add-to-cart-mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-radius: 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        padding: 1.25rem;
        font-size: 1.125rem;
    }
}

/* ========================================
   FAYDALAR - MODERNimler
======================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #8B4789;
    box-shadow: 0 12px 40px rgba(139, 71, 137, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    color: #666;
    font-size: 0.9375rem;
}

/* ========================================
   YORUMLAR - MODERN
======================================== */

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-star {
    color: #FFD700;
    font-size: 1.25rem;
}

.review-author {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
}

/* ========================================
   TRUST BADGES - MODERN
======================================== */

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.trust-badge {
    background: white;
    padding: 0.875rem 0.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
    border-color: #8B4789;
    box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

.trust-badge-icon {
    font-size: 1.75rem;
    margin-bottom: 0.375rem;
}

.trust-badge-text {
    font-weight: bold;
    color: #333;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* ========================================
   MOBİL OPTİMİZASYON
======================================== */

@media (max-width: 768px) {
    .product-image-container {
        padding: 1.5rem 1rem;
    }
    
    .product-main-image {
        max-height: 350px;
    }
    
    .discount-badge-corner {
        transform: scale(0.85);
    }
    
    .thumbnail-btn {
        width: 80px;
        height: 80px;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-quantity {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .package-quantity span:first-child {
        font-size: 3rem !important;
    }
    
    .package-quantity span:last-child {
        font-size: 1.5rem !important;
    }
    
    .price-new {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .trust-badge {
        padding: 0.75rem 0.375rem;
    }
    
    .trust-badge-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .trust-badge-text {
        font-size: 0.6875rem;
    }
}

/* ========================================
   ANIMASYONLAR
======================================== */

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Stagger animation delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
