/* ===== TAKIM ÜRÜNLERİ STYLES ===== */

/* Container */
.team-products-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.team-product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #f97316;
}

.breadcrumb .separator {
    color: #cbd5e1;
}

.breadcrumb .current {
    color: #1e293b;
    font-weight: 500;
}

/* Hero Section */
.team-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #f97316 25%, #4a90d9 50%, #9b59b6 75%, #27ae60 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.emoji-row {
    display: block;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
}

/* Categories Grid */
.team-categories-section {
    margin-bottom: 4rem;
}

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

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--category-color, #f97316);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--category-color, #f97316);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.category-tagline {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.category-card:hover .category-count {
    background: var(--category-color, #f97316);
    color: white;
}

/* Products Grid */
.team-products-section {
    margin-bottom: 4rem;
}

/* Base Products Grid - uses same styling as normal product grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-products-grid.small {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Team Product Card - Normal product card benzeri tasarım */
.team-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.team-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.product-preview {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    padding: 0.75rem;
}

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

.preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Üst üste parça görselleri - hover'da açılır */
.pieces-preview {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.piece-mini {
    position: absolute;
    width: 70%;
    aspect-ratio: 3/4;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sol parça - önde, başlangıçta ortada */
.piece-mini:first-child {
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    z-index: 2;
}

/* Sağ parça - arkada, başlangıçta ortada */
.piece-mini:nth-child(2) {
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    z-index: 1;
}

/* 3. parça (varsa) */
.piece-mini:nth-child(3) {
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    z-index: 0;
    width: 60%;
}

/* 4. parça (varsa) */
.piece-mini:nth-child(4) {
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: -1;
    width: 55%;
}

/* Hover'da sola açılan sol parça */
.team-product-card:hover .piece-mini:first-child {
    left: 2%;
    transform: translateX(0) rotate(-5deg) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* Hover'da sağa açılan sağ parça */
.team-product-card:hover .piece-mini:nth-child(2) {
    left: auto;
    right: 2%;
    transform: translateX(0) rotate(5deg) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* 3. parça hover */
.team-product-card:hover .piece-mini:nth-child(3) {
    transform: translateX(-50%) translateY(-10%) scale(0.9);
    opacity: 0.7;
}

/* 4. parça hover */
.team-product-card:hover .piece-mini:nth-child(4) {
    transform: translateX(-50%) translateY(-15%) scale(0.85);
    opacity: 0.5;
}

.piece-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 10;
}

.piece-count-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.625rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 10;
}

.product-info {
    padding: 0.875rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.price-current {
    font-size: 1rem;
    font-weight: 700;
    color: #f97316;
}

.price-old {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.discount-badge {
    padding: 0.125rem 0.375rem;
    background: #10b981;
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Category Header */
.category-header {
    background: linear-gradient(135deg, var(--category-color, #f97316) 0%, color-mix(in srgb, var(--category-color, #f97316) 70%, black) 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.header-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.header-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    margin-bottom: 3rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-info h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s;
}

.page-btn:hover {
    background: #f97316;
    color: white;
}

.page-info {
    color: #64748b;
    font-size: 0.9rem;
}

/* Other Categories */
.other-categories-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.other-categories-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.other-category-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.other-category-card:hover {
    background: var(--category-color, #f97316);
    color: white;
    border-color: transparent;
}

.cat-icon {
    font-size: 1.25rem;
}

.cat-name {
    font-weight: 500;
    color: #475569;
}

.other-category-card:hover .cat-name {
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f97316;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-back:hover {
    background: #ea580c;
}

/* ===== PRODUCT DETAIL STYLES ===== */

.product-detail-section {
    margin-bottom: 3rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Product Visuals */
.product-visuals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.combined-preview-container {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.combined-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pieces-combined-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    height: 100%;
}

.piece-preview-item {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.piece-preview-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.piece-preview-item .piece-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.piece-connector {
    font-size: 2rem;
    color: #cbd5e1;
    font-weight: 300;
}

/* Pieces Gallery */
.gallery-title {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
}

.pieces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.piece-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.piece-card:hover {
    border-color: #f97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.piece-image {
    aspect-ratio: 1;
    background: #f8fafc;
}

.piece-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.piece-info {
    padding: 0.75rem;
    text-align: center;
}

.piece-order {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.piece-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    width: fit-content;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.product-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.meta-item svg {
    color: #94a3b8;
}

/* Price Section */
.product-price-section {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 12px;
    padding: 1.5rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price-old {
    font-size: 1.125rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.discount-tag {
    padding: 0.25rem 0.75rem;
    background: #10b981;
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-current-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f97316;
}

.price-per-piece {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Description */
.product-description h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.product-description p {
    color: #475569;
    line-height: 1.6;
}

/* Size Selection */
.size-selection-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
}

.size-selection-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.size-help {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.size-selectors {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.piece-size-selector {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
}

.piece-label-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.piece-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
}

.piece-size-selector .piece-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-option {
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-label {
    display: block;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s;
}

.size-option input:checked + .size-label {
    background: #f97316;
    border-color: #f97316;
    color: white;
}

.size-option:hover .size-label {
    border-color: #f97316;
}

.no-sizes {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Error state for size selection */
.piece-size-selector.error {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Quantity */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-section label {
    font-weight: 500;
    color: #475569;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8fafc;
    color: #475569;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #f1f5f9;
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Vendor Info */
.vendor-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.vendor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #e2e8f0;
}

.vendor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
}

.vendor-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.vendor-name {
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
}

.vendor-name:hover {
    color: #f97316;
}

/* Hashtags */
.hashtags-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hashtag {
    padding: 0.375rem 0.75rem;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #475569;
}

/* Kumaş Özellikleri */
.fabric-features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    border: 1px solid #e2e8f0;
}

.fabric-features-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
}

.fabric-features-section h4 svg {
    color: #667eea;
}

.fabric-features-content {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.fabric-features-content p {
    margin: 0 0 0.5rem 0;
}

.fabric-features-content p:last-child {
    margin-bottom: 0;
}

/* Related Products Slider */
.related-products-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.related-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.related-products-header .section-title {
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #475569;
}

.slider-btn:hover:not(:disabled) {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.slider-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.related-products-slider-container {
    overflow: hidden;
    position: relative;
}

.related-products-slider {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.related-product-card {
    flex: 0 0 calc(25% - 12px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.related-product-card .product-preview {
    aspect-ratio: 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.related-product-card .product-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-product-card .product-info {
    padding: 1rem;
}

.related-product-card .product-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-card .product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .related-product-card {
        flex: 0 0 calc(33.333% - 11px);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .team-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .team-products-grid.small {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .team-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .team-products-grid.small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .piece-mini {
        width: 65%;
    }
    
    .team-product-card:hover .piece-mini:first-child {
        left: 5%;
    }
    
    .team-product-card:hover .piece-mini:nth-child(2) {
        right: 5%;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .emoji-row {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .related-product-card {
        flex: 0 0 calc(50% - 8px);
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .team-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-preview {
        padding: 0.5rem;
    }
    
    .piece-mini {
        width: 60%;
        border-radius: 6px;
    }
    
    .team-product-card:hover .piece-mini:first-child {
        left: 8%;
        transform: translateX(0) rotate(-4deg) scale(1);
    }
    
    .team-product-card:hover .piece-mini:nth-child(2) {
        right: 8%;
        transform: translateX(0) rotate(4deg) scale(1);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .price-current-large {
        font-size: 2rem;
    }
    
    .pieces-combined-preview {
        flex-wrap: wrap;
    }
    
    .piece-preview-item {
        max-width: 150px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-name {
        font-size: 0.8rem;
    }
    
    .product-badge,
    .piece-count-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .team-products-container,
    .team-product-detail-container {
        padding: 1rem;
    }
    
    .team-hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .emoji-row {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .team-products-grid,
    .team-products-grid.small {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    .product-info {
        padding: 0.625rem;
    }
    
    .product-name {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
    }
    
    .price-current {
        font-size: 0.875rem;
    }
    
    .detail-grid {
        gap: 1.5rem;
    }
    
    .size-options {
        gap: 0.375rem;
    }
    
    .size-label {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ===== NORMAL ÜRÜN İÇİN EK STİLLER ===== */

/* Single Product Preview Container */
.combined-preview-container.single-product {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.combined-preview-container.single-product .combined-preview-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Thumbnail Grid */
.thumbnails-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.thumbnail-card {
    cursor: pointer;
}

.thumbnail-card.selected {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* Single Size Options */
.size-options.single-size {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-options.single-size .size-option.selected .size-label {
    background: #f97316;
    border-color: #f97316;
    color: white;
}

/* Fabric Section */
.fabric-section {
    margin-top: 0;
}

.fabric-section .required {
    color: #ef4444;
}

.fabric-option.selected .size-label {
    background: #f97316;
    border-color: #f97316;
    color: white;
}

/* Premium Badge Inline */
.premium-badge-inline {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #422d00;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.75rem;
    vertical-align: middle;
}

/* Wishlist Button Large */
.wishlist-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.wishlist-btn-large:hover {
    border-color: #f97316;
    color: #f97316;
}

.wishlist-btn-large.active {
    background: #fff1f0;
    border-color: #ef4444;
    color: #ef4444;
}

.wishlist-btn-large.active svg {
    fill: #ef4444;
}

/* Product Features List */
.product-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.product-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}

.product-features-list .feature-item svg {
    color: #10b981;
}

/* Disabled Add to Cart Button */
.add-to-cart-btn.disabled {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

.add-to-cart-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ==================== Zoom Lens Effect ==================== */
.zoom-container {
    position: relative;
    overflow: visible;
    cursor: crosshair;
}

.zoom-lens {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-repeat: no-repeat;
    pointer-events: none;
    display: none;
    border: 3px solid #f97316;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.8);
    z-index: 100;
}

.zoomable-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zoom lens responsive */
@media (max-width: 768px) {
    .zoom-lens {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .zoom-lens {
        width: 60px;
        height: 60px;
    }
}
