﻿
/*#region product-detail-section*/
.product-detail-section {
    max-width: 1200px;
    width: 100%;
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: 7rem;
    overflow: hidden;
}
/*#region product-detail-header*/
.product-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .product-detail-header > h1 {
        display: flex;
        gap: 7px;
        font-size: 20px;
        flex-direction: column;
    }

        .product-detail-header > h1 span {
            font-size: 14px;
            background: var(--red);
            padding: 3px 5px;
            border-radius: 7px;
            color: white;
            width: max-content;
        }

    .product-detail-header > div {
        display: flex;
        gap: 2rem;
        width: 100%;
        height: max-content;
        border-radius: 5px;
    }

        .product-detail-header > div img {
            background: radial-gradient(circle,rgba(255, 255, 255, 1) 21%, rgba(214, 214, 214, 1) 100%);
            /* width: 100%; */
            height: 250px;
            object-fit: contain;
            padding: 3rem;
            width: calc(100% - 6rem);
        }

            .product-detail-header > div img:last-of-type {
                width: 36%;
            }

@media(max-width:800px) {
    .product-detail-header > div {
        flex-direction: column;
        height: max-content;
    }

        .product-detail-header > div img:last-of-type {
            /* width: 100%; */
            width: calc(100% - 6rem);
        }
}


/*#endregion*/

/*#region product-detail-description*/
.product-detail-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .product-detail-description h2 {
        display: flex;
        position: relative;
        font-size: 20px;
        width: max-content;
    }

        .product-detail-description h2::after {
            content: "";
            height: 1px;
            background: lightgray;
            position: absolute;
            left: 100%;
            top: 50%;
            margin-left: 1rem;
            width: calc(1200px - 100% - 1rem);
        }


.product-detail-description-content * {
    font-size: 13px;
    line-height: 30px;
    color: #434343;
    overflow-wrap: break-word;
}
/*#region product-detail-table*/
.product-detail-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .product-detail-table h2 {
        display: flex;
        position: relative;
        font-size: 20px;
        width: max-content;
    }

        .product-detail-table h2::after {
            content: "";
            height: 1px;
            background: lightgray;
            position: absolute;
            left: 100%;
            top: 50%;
            margin-left: 1rem;
            width: calc(1200px - 100% - 1rem);
        }


.product-detail-table-content {
}
/*#endregion*/

/*#endregion*/



:root {
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: auto;
    width: 100%;
}


.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

    .table thead th {
        text-align: left;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--red-700);
        background: var(--red-50);
        border-bottom: 1px solid var(--red-200);
        padding: 14px 16px;
        text-transform: uppercase;
        white-space: nowrap;
    }

        .table thead th span {
            font-size: 11px;
            font-weight: 700;
            color: var(--red-700);
        }
        /* Sipariş Kodu sütununu vurgula */
        .table thead th:first-child {
            color: var(--red-800);
        }


    .table thead tr:first-of-type {
        text-wrap-mode: nowrap;
    }


    .table thead th img {
        width: 50px !important;
        height: 50px !important;
        object-fit: contain;
    }

    .table tbody td {
        padding: 14px 16px;
        border-bottom: 1px solid var(--gray-200);
        color: var(--gray-700);
        font-size: 12px;
    }

    .table tbody tr:nth-child(even) td {
        background: var(--gray-100);
    }

    .table tbody tr:hover td {
        background: rgba(220, 38, 38, 0.06);
    }


.ProductVariantAttributeHead * {
    background: #fef2f2 !important;
}
