/* ============================================
   PRODUCT DETAIL PAGE ENHANCEMENTS
   ============================================ */

/* Mobil header logo - %20 küçültme */
@media (max-width: 768px) {
    .logo-image {
        max-width: 120px; /* 150px'den %20 küçültme = 120px */
    }
}

/* Mobil breadcrumbs - ürün ismini alt satıra indir */
@media (max-width: 768px) {
    .breadcrumb-list {
        flex-wrap: wrap;
    }
    
    .breadcrumb-item:last-child {
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border-color);
    }
}

/* Buybox padding güncellemesi */
.buybox__sticky {
    padding: 20px;
}

/* ============================================
   BUYBOX İÇERİK VE BUTON STİL İYİLEŞTİRMELERİ
   ============================================ */

.buybox .meta {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.buybox .title {
    line-height: 1.3;
    margin-bottom: 8px;
}

.buybox .subtitle {
    line-height: 1.4;
    margin-bottom: 16px;
}

.buybox .price-row {
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 16px 0;
}

.buybox .variants {
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.buybox .qty {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    max-width: 160px;
    width: 100%;
}

.buybox .qty:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.1);
}

.buybox .qty__btn {
    min-width: 36px;
    width: 36px;
    height: 36px;
    font-size: 18px;
    font-weight: 500;
    background: #f8f9fa;
    border: none;
    border-right: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.buybox .qty__btn:last-of-type {
    border-right: none;
    border-left: 1px solid var(--border-color);
}

.buybox .qty__btn:hover {
    background: var(--primary-color);
    color: white;
}

.buybox .qty__btn:active {
    background: var(--primary-dark);
    transform: scale(0.95);
}

.buybox .qty__btn:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(220, 53, 69, 0.3);
}

.buybox .qty__input {
    border: none;
    background: white;
    color: var(--text-color);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    padding: 0;
    min-width: 50px;
    width: 100%;
    height: 36px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    display: block;
    -moz-appearance: textfield;
}

.buybox .qty__input::-webkit-outer-spin-button,
.buybox .qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.buybox .qty__input:focus {
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--primary-color);
}

/* Desktop specific enhancements - Classic compact design */
@media (min-width: 769px) {
    .buybox .qty {
        grid-template-columns: 40px 1fr 40px;
        max-width: 140px;
        height: 40px;
        display: grid;
    }
    
    .buybox .qty__btn {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        display: flex;
    }
    
    .buybox .qty__input {
        font-size: 16px;
        font-weight: 600;
        height: 40px;
        display: block;
        width: 100%;
    }
}

.buybox .cta {
    margin: 16px 0;
    gap: 12px;
}

.buybox .btn {
    font-size: 15px;
    padding: 14px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.buybox .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.buybox .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.buybox .bullets {
    padding: 12px 12px 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 16px 0;
    list-style-position: inside;
}

.buybox .bullets li {
    padding: 4px 0;
    line-height: 1.5;
    list-style-type: disc;
}

.buybox .divider {
    margin: 16px 0;
    opacity: 0.3;
}

.buybox .trust {
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 16px 0;
}

.buybox .trust__item {
    padding: 10px 14px;
    transition: all 0.2s ease;
}

.buybox .trust__item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.buybox .share-section {
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 16px 0;
}

.buybox .share-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.buybox .share-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.buybox .share-btn:active {
    transform: translateY(-1px) scale(1.05);
}



