﻿:root {
    --brand: #2286c1;
    --brand-dark: #1b6e9f;
    --brand-light: #e8f4fb;
    --accent: #ff6b35;
    --ink: #1f2933;
    --ink-soft: #52606d;
    --muted: #9aa5b1;
    --line: #e6eaf0;
    --bg: #f4f6f9;
    --surface: #ffffff;
    --success: #1aa260;
    --success-bg: #e6f7ee;
    --danger: #e02d3c;
    --danger-bg: #fdecec;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(18, 38, 63, 0.06);
    --shadow-md: 0 8px 24px rgba(18, 38, 63, 0.08);
    --shadow-lg: 0 16px 40px rgba(18, 38, 63, 0.12);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


.product-details {
    padding-bottom: 30px;
}

.single-product {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    width: 100%;
}

    .single-product > .row {
        width: 100%;
        margin: 0;
        align-items: flex-start;
    }

.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-img > div {
        width: 100%;
        background: var(--bg);
        border-radius: var(--radius-sm);
        padding: 20px;
        display: grid;
        place-items: center;
    }

    .product-img img {
        max-height: 340px;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

.product-caption h1 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.7;
    margin: 0 0 14px;
}

.product-caption .review {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.product-caption .rating {
    display: inline-flex;
    gap: 3px;
    color: #f5a623;
    font-size: 15px;
}

.product-caption .review p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.product-caption > div,
.product-caption > p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 8px 0;
}

    .product-caption > div span {
        color: var(--brand);
        font-weight: 600;
    }

.price-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 22px;
}

#price-display {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand);
}

    #price-display.text-success {
        color: var(--brand) !important;
    }

#stock-status.alert {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

#stock-status.alert-success {
    background: var(--success-bg);
    color: var(--success);
}

#stock-status.alert-danger {
    background: var(--danger-bg);
    color: var(--danger);
}

#variant-selectors select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    margin-bottom: 10px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-family: inherit;
    font-size: 14px;
}

.btn-primary,
.price-box .btn-primary {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

    .btn-primary:hover {
        background: var(--brand-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(34, 134, 193, 0.35);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.tab-container {
    padding: 36px 0;
}

.nav-button {
    margin-bottom: 24px;
}

.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 0;
    background: var(--surface);
    padding: 8px;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    width: 100%;
    padding-bottom: 0px!important;
}

    .nav-tabs .nav-link {
        border: 0 !important;
        border-radius: 999px;
        padding: 10px 24px;
        font-weight: 600;
        font-size: 14px;
        color: var(--ink-soft);
        background: transparent;
        cursor: pointer;
        transition: all var(--transition);
    }

        .nav-tabs .nav-link:hover {
            color: var(--brand);
            background: var(--brand-light);
        }

        .nav-tabs .nav-link.active {
            color: #fff;
        }

.tab-content {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    margin-top: 8px;
}

.desc-tab p {
    color: var(--ink-soft);
    margin: 0 0 16px;
    text-align: justify;
}

    .desc-tab p:first-child::first-letter {
        font-weight: 700;
    }

.desc-tab > div > p:nth-of-type(8),
.desc-tab > div > p:nth-of-type(10) {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 26px;
}

.desc-tab ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 24px;
}

    .desc-tab ul li {
        position: relative;
        padding-inline-start: 3rem;
        color: var(--ink-soft);
        margin: 0;
    }

        .desc-tab ul li::before {
            content: "\2713";
            position: absolute;
            inset-inline-start: 0;
            top: 2px;
            width: 2rem;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--brand-light);
            color: var(--brand);
            font-size: 11px;
            font-weight: 700;
        }

.table-product .details {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .table-product .details th,
    .table-product .details td {
        padding: 14px 18px;
        text-align: start;
        font-size: 14px;
        border-bottom: 1px solid var(--line);
    }

    .table-product .details thead th {
        background: var(--brand-light);
        color: var(--brand-dark);
        font-weight: 700;
    }

    .table-product .details .first {
        width: 30%;
        color: var(--ink-soft);
    }

.comment-tab .panel {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 20px;
}

.comment-tab .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

    .comment-tab .form-control:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 4px var(--brand-light);
    }

.comment-tab textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.submit-btn3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

    .submit-btn3:hover {
        background: var(--brand-dark);
        transform: translateY(-1px);
    }

.mar-top {
    margin-top: 6px;
}

.media-block {
    color: var(--muted);
}

.section-bg {
    background: var(--bg);
}

.section-padding {
    padding: 50px 0;
}

.section-tittle span {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    padding-bottom: 14px;
}

    .section-tittle span::after {
        content: "";
        position: absolute;
        bottom: 0;
        inset-inline-start: 50%;
        transform: translateX(50%);
        width: 60px;
        height: 4px;
        border-radius: 999px;
        background: var(--brand);
    }

.mb-55 {
    margin-bottom: 40px;
}


.ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bottom-fixed-box {
    display: none;
}

    .bottom-fixed-box .outofstock {
        display: block;
        text-align: center;
        padding: 14px;
        background: var(--accent);
        color: #fff;
        font-weight: 700;
    }

@media (max-width: 1199px) {
    .related-products-box {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .related-products-box {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-info-left {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .form-box {
        max-width: 100%;
    }

    .single-product {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .related-products-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-caption h1 {
        font-size: 19px;
    }

    .nav-tabs {
        width: 100%;
        justify-content: center;
        margin:0!important;
    }

        .nav-tabs .nav-link {
            padding: 9px 16px;
            font-size: 13px;
        }

    .tab-content {
        padding: 20px;
    }

    .bottom-fixed-box {
        display: block;
        position: fixed;
        inset-inline: 0;
        z-index: 950;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
        background: white;
        height: 60px;
        justify-items: center;
    }

    body {
        padding-bottom: 56px;
    }

    #back-top, .footer.shopping-card {
        bottom: 70px;
    }
}

@media (max-width: 479px) {
    .related-products-box {
        grid-template-columns: 1fr;
    }

    .section-tittle span {
        font-size: 20px;
    }
}

.pb-20 {
    padding-bottom: 20px;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-25 {
    margin-bottom: 25px;
}

.fw-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.f-right {
    display: flex;
    justify-content: flex-end;
}
section.our-client.section-padding.best-selling.tab-container {
    padding: 0;
    margin: 0;
}
.nav-button.f-right {
    float: none;
    display: block;
}

element.style {
}

.slick-dots li {
    position: relative;
    display: inline-block !important;
    width: 20px;
    height: 20px;
    margin: 0 0;
    padding: 0;
    cursor: pointer;
    top: 0;
}