/* Product Details */

#details .prod-brand .brand-image {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 8px;
}

#details .prod-brand .brand-image img {
    max-width: 24px;
}

#details .brand-info .brand-name {
    font-weight: 600;
    font-size: 14px;
    padding-right: 5px;
    border-right: solid 1px #9D9D9D;
}

#details .brand-info a {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    transition: 0.3s ease-out;
}

#details .brand-info a:hover {
    color: var(--primary-hover);
}


#details .product-details {
    color: #000;
    max-width: 500px;
}

#details .category-link {
    position: relative;
    color: var(--secondary);
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
    display: block;
    width: fit-content;
    margin: 7px 0;
}

#details .category-link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
    vertical-align: middle;
    bottom: 3px;
    left: 0;
}

#details .product-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
}

#details .prod-price {
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
}

#details .prod-price strong,
.prod-price span {
    font-size: 32px;
}

#details .prod-price .old-prod-price {
    text-decoration: line-through;
    color: #6C6C6C;
    font-weight: 400;
    font-size: 18px;
}

#details .saving {
    margin: 20px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

#details .saving .saving-amount {
    color: #1FC16B;
    font-weight: 500;
    margin: 0px 5px;
}

#details .saving .saving-badge {
    color: #1FC16B;
    background-color: #1FC16B1A;
    border-radius: 4px;
    padding: 4px;
}

/* Dynamic otptions Colors & Storages */

.dynamic-options h5 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 8px;
}

.dynamic-options h5 span {
    font-weight: 700;
}


.dynamic-options .color-circle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.dynamic-options .color-circle.selected {
    border-color: var(--secondary);
}


.dynamic-options .color-circle::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-out;
}


.dynamic-options .color-circle.selected::before {
    opacity: 1;
    visibility: visible;
}

.dynamic-options .color-circle::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: #00000089;
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-out;
}

.dynamic-options .color-circle.selected::after {
    opacity: 0.5;
    visibility: visible;
}

.dynamic-options #storage-options label {
    margin-right: 10px;
    padding: 12px 32px;
    text-align: center;
    background-color: #FFFFFF;
    border: 1px solid var(--dark);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    color: var(--dark);
    cursor: pointer;
}

.dynamic-options #storage-options .form-check-input:checked+label {
    border-color: var(--secondary);
    color: var(--secondary);
}

.dynamic-options .form-check-input {
    display: none;
}

#details .product-buttons.fixed-buttons {
    position: fixed;
    bottom: -24px;
    background-color: #F8F8F8;
    padding: 12px;
    width: 100%;
    border-top: solid 1px #CECECE;
    z-index: 10000;
}

#details .product-buttons .qty-wrapper {
    max-width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    border: solid 1px var(--dark);
    border-radius: 8px;
    background-color: #fff;
}

#details .product-buttons .qty-wrapper button {
    border: none;
    outline: none;
    background: none;
    font-size: 34px;
    font-weight: 200;
    padding: 12px;
    line-height: 18px;
    transition: 0.3s ease;
}

#details .product-buttons .qty-wrapper button:hover,
#details .product-buttons .qty-wrapper button:focus {
    color: var(--primary);
}


#details .product-buttons .qty-wrapper input {
    width: 35px;
    background-color: transparent;
    text-align: center;
    border: none;
}

.product-buttons .enquiry-title {
    color: var(--secondary);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-buttons .enquiry-btn {
    max-width: 180px !important;
}



/* Chrome, Safari, Edge, Opera */
#details .product-buttons .qty-wrapper input::-webkit-outer-spin-button,
#details .product-buttons .qty-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
#details .product-buttons .qty-wrapper input[type=number] {
    -moz-appearance: textfield;
}

.product-buttons .primary-lg-btn {
    flex: 2;
    max-width: none;
    height: 44px;
}

/* Product Slider */

#details .product-container {
    max-width: 100%;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
}

.main-slider {
    margin-bottom: 20px;
}

.main-slider img {
    width: 100%;
    border-radius: 8px;
    max-width: 450px;
    margin: 0px auto;
}

.thumbnail-slider {
    margin: 0 -2px;
}

.thumbnail-slider .slick-slide {
    padding: 2px 5px;
}

.thumbnail-slider img {
    width: 100%;
    object-fit: cover;
    height: 120px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    border: solid 1px #CECECE;
    transition: all 0.3s ease-in-out;
}

.thumbnail-slider .slick-current img {
    opacity: 1;
    border-color: var(--secondary);
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev {
    left: 0px;
}

.slick-next {
    right: 0px;
}

.slick-next:before {
    content: '\f054' !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
}

.slick-prev:before {
    content: '\f053' !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
}

#details .prod-wishlist {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 20px;
    z-index: 2;
    background-color: #2222220D;
    padding: 8px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

#details .prod-wishlist .heart-icon {
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

#details .heart-icon:hover,
#details .heart-icon.active {
    color: var(--secondary);
}

#details .main-image-container {
    position: relative;
}


.slick-next:before,
.slick-prev:before {
    color: #CECECE !important;
}

.slick-next,
.slick-prev {
    background: #fff;
    border: solid 1px #CECECE;
    padding: 4px;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary);
    color: #fff !important;
}

/* Product info */
.product-info {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
}

.product-info h2 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.product-info hr {
    color: #CECECE;
}

/* Product Overview */

.product-info.overview ul li {
    list-style-type: disc !important;
    list-style-position: inside;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 5px;
}

.product-info.overview ul li::marker {
    font-size: 0.8em;
}

/* Product Specifications */


.spec-row {
    background-color: #2A7BB81A;
    margin-bottom: 0px !important;
    padding: 0 !important;
    display: flex;
    justify-content: space-between;
}

.spec-row:nth-child(even) {
    background-color: #fff;
}

.specs {
    overflow: hidden;
}

.spec-label {
    font-weight: 400;
    color: #6C6C6C;
}

.spec-value {
    font-weight: 500;
    color: #222222;
}

.spec-value,
.spec-label {
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0px;
    vertical-align: middle;
    padding: 11px 20px;
}


/* Enquiry price modal */

#enquiryPriceModal {
    background-color: #0000005c;
}

#enquiryPriceModal .modal-header {
    background-color: var(--secondary);
    color: #fff;
}


