/* 
    Created on : 15 jul. 2025, 18:54:43
    Author     : Eric Palacios
*/

:root {
    --primary-color: #000000;
    --secondary-color: #ff0000;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --bs-body-font-family: 'Jost-Regular';
    --bs-body-font-medum: 'Jost-Medium';
    --bs-body-font-semibold: 'Jost-SemiBold';
    --bs-body-font-bold: 'Jost-Bold';
    --color-gray-50: #808080;

}

.fs-38 {
    font-size: 38px;
}

/*Breadcrumb*/

.breadcrumb {
    font-family: var(--bs-body-font-semibold);
    background-color: transparent;
    padding: 15px 0;
    font-size: 14px;
}
.breadcrumb-item a{
    color: var(--secondary-color);
    transition: all ease 0.3s;
}
.breadcrumb-item a:hover{
    color: var(--color-gray-50);
}
.breadcrumb-item.active {
    color: var(--primary-color);
}

/*Category Grid*/

.category-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card {
    border: none;
    border-radius: 0px;
    padding: 20px 20px 0px 20px;
    margin-bottom: 0px;
    transition: all 0.3s;
    background-color: transparent;
}
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.card-img, .card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.product-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    display: block;
    margin: 0 auto;
    border: 1px solid #e6e6e6;
}

.product-name {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--primary-color);
    margin-bottom: 10px;
}
.product-model{
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--color-gray-50);
    line-height: var(--bs-body-line-height);
    margin-bottom: 10px;
}
.product-ref {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spacer_line {
    background-color: #e6e6e6;
    width: 100%;
    position: relative;
    float: left;
    height: 1px;
    margin-bottom: 10px;
}
.product-specs li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.btn-detail {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--secondary-color);
    text-decoration: none;
}

.btn-detail:hover {
    color: var(--color-gray-50);
}

/*Product Detail*/

.product-model-detail-text{
    font-family: var(--bs-body-font-semibold);
    color: var(--primary-color);
    line-height: var(--bs-body-line-height);
    margin-bottom: 10px;
}
.product-model-model-text{
    font-family: var(--bs-body-font-medum);
    color: var(--secondary-color);
    line-height: var(--bs-body-line-height);
    margin-bottom: -5px;
}
.product-model-detail-number {
    font-family: var(--bs-body-font-medum);
    color: var(--secondary-color);
    line-height: var(--bs-body-line-height);
    margin-bottom: 0px;
}
.product-title-detail {
    font-family: var(--bs-body-font-semibold);
    color: var(--primary-color);
    margin: 5px 0 20px;
}

.product-image-detail {
    width: 100%;
    height: auto;
    max-height: 600px;
    min-height: 300px;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    display: block;
    margin: 0 auto 30px auto;
    border: 1px solid #e6e6e6;
}

.specs-table {
    width: 100%;
    margin: 20px 0;
}

.specs-table th {
    font-family: var(--bs-body-font-medum);
    color: var(--primary-color);
    font-size: var(--bs-body-font-size);
    padding: 5px 10px;
    text-align: left;
    width: 30%;
}

.specs-table td {
    font-family: var(--bs-body-font-family);
    color: var(--primary-color);
    font-size: var(--bs-body-font-size);
    line-height: var(--bs-body-line-height);
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}
.product-title-colors{
    font-family: var(--bs-body-font-family);
    color: var(--lt-color-text-very-light);
    text-align: center;
}


.colors-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.colors-table th, .colors-table td {
    font-family: var(--bs-body-font-family);
    color: var(--primary-color);
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.colors-table th {
    font-weight: 600;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
}
.additional-cost{
     font-family: var(--bs-body-font-medum);
    color: var(--secondary-color);
    position: relative;
    width: 100%;
    padding: 20px;
    border: 2px dashed red;
    text-align: center;
    margin: 35px 0;
    display: block;
}
.about-section {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 5px;
    margin: 40px 0;
    text-align: center;
    display: block;
}
