/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--light);
    padding: 12px 0;
    border-bottom: 1px solid var(--light-2);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.breadcrumb a, .breadcrumb span {
    padding: 5px 12px;
    border: 1px solid var(--light-2);
    border-radius: 6px;
    font-weight: 500;
    color: var(--gray);
    white-space: nowrap;
}

.breadcrumb a:hover {
    color: var(--primary);
    border-color: rgba(0, 102, 255, 0.2);
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
    background: var(--white);
}

.breadcrumb i {
    font-size: 8px;
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .breadcrumb { display: none; }
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    padding: 50px 0 60px;
    background: var(--white);
}

.product-detail .container {
    max-width: 1400px;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr minmax(0, 540px);
    gap: 40px;
    align-items: start;
}

.pd-info {
    min-width: 0;
}

/* Gallery */
.pd-gallery {
    position: sticky;
    top: 80px;
}

.pd-main-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    background: var(--light);
    border: 1px solid var(--light-2);
    cursor: zoom-in;
}

.pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pd-main-img:hover img {
    transform: scale(1.03);
}

.gallery-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.gallery-zoom:hover {
    background: var(--primary);
}

.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.thumb {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light);
}

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

.thumb:hover,
.thumb.active {
    border-color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.2);
}

/* Product Info */
.pd-info {
    padding-top: 6px;
}

.pd-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.pd-info h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.pd-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: justify;
    hyphens: auto;
}

/* Variant Tabs */
.mobile-variant {
    display: none !important;
}

.pd-variant-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.pv-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--light-2);
    color: var(--gray);
    background: var(--light);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.pv-tab:hover {
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--primary);
}

.pv-tab.active {
    background: linear-gradient(135deg, #0066ff, #0088ff);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.pv-tab i {
    font-size: 14px;
}

/* Highlights */
.pd-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 24px;
}

.pd-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--light);
    border-radius: 8px;
    border: 1px solid var(--light-2);
    min-width: 0;
}

.pd-highlight i {
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pd-highlight div {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.pd-highlight strong {
    display: block;
    font-size: 9px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-weight: 600;
    white-space: nowrap;
}

.pd-highlight span {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Actions */
.pd-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.pd-actions .btn {
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-share {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-outline-dark {
    border: 2px solid var(--light-2);
    color: var(--text-dark);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Trust */
.pd-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--light-2);
}

.pd-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-dark);
    padding: 8px 6px;
    border: 1px solid var(--light-2);
    border-radius: 8px;
    white-space: nowrap;
}

.pd-trust-item i {
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
}

/* ===== PRODUCT TABS ===== */
.product-tabs-section {
    padding: 60px 0 80px;
    background: var(--light);
}

.tabs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 4px;
    background: var(--white);
    padding: 6px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background: transparent;
    font-family: 'Exo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(0, 102, 255, 0.04);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.tab-btn i {
    font-size: 14px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.35s ease;
}

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

.tab-inner {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.tab-inner h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.tab-inner h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.tab-inner p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: justify;
    hyphens: auto;
}

/* Description features */
.desc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}

.desc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--light);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.desc-feature i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

/* Spec Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid var(--light-2);
}

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

.spec-table td {
    padding: 14px 16px;
    font-size: 14px;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 45%;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.spec-table td:first-child i {
    width: 30px;
    height: 30px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.spec-table td:last-child {
    color: var(--text-body);
    font-weight: 500;
}

.spec-table tr:hover {
    background: var(--light);
}

/* Material Grid */
.material-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--light);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.material-item i {
    color: var(--accent);
    font-size: 12px;
}

/* Software Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.software-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--light-2);
    text-align: center;
}

.software-item i {
    font-size: 28px;
    color: var(--primary);
}

.software-item strong {
    font-size: 14px;
    color: var(--text-dark);
}

.software-item span {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

/* Format Tags */
.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.format-tag {
    padding: 6px 16px;
    background: var(--light);
    border: 1px solid var(--light-2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* ===== RELATED PRODUCTS ===== */
.related-section {
    padding: 80px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.related-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.related-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-img img {
    transform: scale(1.05);
}

.related-info {
    padding: 16px;
}

.related-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.related-info span {
    font-size: 12px;
    color: var(--gray-light);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.lb-close, .lb-prev, .lb-next {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: var(--primary);
}

.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .pd-gallery { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .mobile-variant { display: flex !important; }
    .pd-info .pd-variant-tabs { display: none !important; }
}

@media (max-width: 768px) {
    .pd-info h1 { font-size: 24px; }
    .pd-highlights { grid-template-columns: 1fr 1fr; }
    .pd-trust { grid-template-columns: repeat(2, 1fr); }
    .pd-trust-item { white-space: normal; text-align: center; font-size: 10px; padding: 8px 4px; }
    .pd-variant-tabs { flex-direction: column; }
    .pv-tab { font-size: 13px; padding: 10px 14px; }
    .pd-thumbs { grid-template-columns: repeat(4, 1fr); }
    .tabs-nav { flex-wrap: wrap; }
    .tab-btn { flex: none; width: calc(50% - 2px); font-size: 12px; padding: 10px; }
    .tab-inner { padding: 24px 20px; }
    .desc-features { grid-template-columns: 1fr; }
    .material-grid { grid-template-columns: repeat(2, 1fr); }
    .software-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .spec-table td:first-child { width: 50%; }
}

@media (max-width: 480px) {
    .pd-actions { flex-direction: column; }
    .pd-actions .btn { width: 100%; justify-content: center; }
    .pd-thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ===== URUN SSS BOLUMU ===== */
.product-sss-section {
    padding: 70px 0 80px;
    background: var(--white);
}
.product-sss-section .section-header {
    text-align: center;
    margin-bottom: 36px;
}
.product-sss-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.product-sss-section h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}
.product-sss-section .section-header p {
    color: var(--text-body);
    font-size: 15px;
    margin: 0 auto;
    max-width: 640px;
    text-align: center;
}

.psss-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.psss-item {
    background: var(--light);
    border: 1px solid var(--light-2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.psss-item:hover {
    border-color: rgba(0, 102, 255, 0.2);
}
.psss-item.acik {
    background: var(--white);
    border-color: rgba(0, 102, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.08);
}
.psss-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Exo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}
.psss-q span {
    flex: 1;
}
.psss-q i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.psss-item.acik .psss-q i {
    transform: rotate(45deg);
}
.psss-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.psss-item.acik .psss-a {
    max-height: 600px;
}
.psss-a-inner {
    padding: 0 24px 22px;
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
    hyphens: auto;
}
.psss-a-inner p { margin: 0 0 10px; }
.psss-a-inner p:last-child { margin-bottom: 0; }
.psss-a-inner ul, .psss-a-inner ol { padding-left: 22px; margin: 8px 0; }
.psss-a-inner li { margin-bottom: 4px; }
.psss-a-inner strong { color: var(--text-dark); }

@media (max-width: 768px) {
    .product-sss-section { padding: 50px 0 60px; }
    .product-sss-section h2 { font-size: 24px; }
    .psss-q { padding: 14px 18px; font-size: 14px; }
    .psss-a-inner { padding: 0 18px 18px; font-size: 13px; }
}
