.product-hero {
    padding: 150px 0 30px;
    background: var(--bg-cream);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--text-muted);
}
.breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb span {
    color: var(--text-muted);
}
.product-detail {
    padding: 60px 0;
    overflow: hidden;
}
.product-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Gallery - Sınırlandırılmış */
.product-gallery {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* Main Image Wrapper with Navigation */
.main-image-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.main-image {
    background: var(--bg-cream);
    padding: 20px;
    overflow: hidden;
}
.main-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

.gallery-nav:hover svg {
    stroke: #fff;
}

.gallery-nav svg {
    stroke: var(--text-dark);
    transition: stroke 0.3s ease;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

/* Slide Animations */
@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-30px);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(30px);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.main-image img.slide-out-left {
    animation: slideOutLeft 0.2s ease forwards;
}

.main-image img.slide-out-right {
    animation: slideOutRight 0.2s ease forwards;
}

.main-image img.slide-in-left {
    animation: slideInLeft 0.3s ease forwards;
}

.main-image img.slide-in-right {
    animation: slideInRight 0.3s ease forwards;
}

/* Thumbnail List - Scrollable */
.thumbnail-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Scrollbar Styling */
.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}
.thumbnail-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.thumbnail-list::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}
.thumbnail-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

.thumbnail {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail.active {
    border-color: var(--accent);
    opacity: 1;
}

/* Product Info */
.product-info {
    min-width: 0;
}
.product-info .product-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    word-wrap: break-word;
}
.product-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.product-specs {
    background: var(--bg-cream);
    padding: 30px;
    margin-bottom: 30px;
}
.product-specs h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}
.product-specs table {
    width: 100%;
    border-collapse: collapse;
}
.product-specs table tr {
    border-bottom: 1px solid #e0e0e0;
}
.product-specs table td {
    padding: 12px 0;
    font-size: 0.95rem;
}
.product-specs table td:first-child {
    color: var(--text-muted);
    width: 40%;
}
.product-specs table td:last-child {
    font-weight: 500;
}
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.product-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
}
.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}
.product-content {
    padding: 60px 0;
    background: var(--bg-cream);
}
.content-box {
    max-width: 800px;
    margin: 0 auto;
}
.content-box h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.content-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.similar-products {
    padding: 80px 0;
}
.similar-products .section-header {
    margin-bottom: 40px;
}
.similar-products .section-header h2 {
    font-size: 2rem;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .product-info h1 {
        font-size: 1.8rem;
    }
    
    .thumbnail-list {
        gap: 10px;
    }
    
    .thumbnail {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }
    
    .gallery-nav {
        width: 36px;
        height: 36px;
    }
    
    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }
}