:root {
    --gold: rgba(135, 94, 44, 1);
    --black: rgba(46, 46, 46, 1);
    --prg-black: rgba(38, 38, 38, 1);
    --footer-bg: rgba(246, 246, 246, 1);
    --input-border: rgba(204, 204, 204, 1);
    --btn-bg: rgba(28, 28, 28, 1);
    --price-color: rgba(102, 102, 102, 1);
    --banner-bg: rgba(246, 246, 246, 1);
    --number-input: rgba(217, 217, 217, 1);
    --checked-radio: #f6f6f6;
    --badge-bg: #d6d6d6;
}

body * {
    font-family: "Montserrat", sans-serif;
}

.btn:has(img):hover {
    background-color: transparent;
}

.form-check:has(.checked-radio:checked) {
    background-color: var(--checked-radio);
    border-color: var(--prg-black);
}
.checked-radio:checked {
    background-color: var(--prg-black);
    border: 0.75px solid var(--prg-black);
}
/* .form-check-input:checked[type=radio]{
    --bs-form-check-bg-image:var(--prg-black)!important;
} */
.form-check-input:focus {
    box-shadow: none !important;
}
.radio-wrapper {
    min-height: 55px;
}

.money-transfer-info {
    display: none;
}

#moneyTransfer:checked ~ .money-transfer-info {
    display: block !important;
}
.badge-bg {
    background-color: var(--badge-bg);
}
.black-prg {
    color: var(--btn-bg);
}
.prg-black {
    color: var(--prg-black);
}

.banner-bg {
    background-color: var(--banner-bg);
}

.color-black {
    color: var(--black);
}
.price-color {
    color: var(--price-color);
}

hr {
    color: var(--price-color);
}

.nav-item .collections {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    z-index: 1000;
    width: auto;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-item.dropdown:hover .collections {
    display: block;
}

.navbar .dropdown-item {
    padding: 10px 20px;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
}

.color-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.custom-select {
    display: none;
}
.select-selected {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
}
.select-selected:after {
    content: "";
    position: absolute;
    top: 14px;
    right: 10px;
    border: 6px solid transparent;
    border-color: #ccc transparent transparent transparent;
}
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #ccc transparent;
    top: 7px;
}
.select-items {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 99;
    width: 100%;
}
.select-items div {
    padding: 10px;
    cursor: pointer;
}
.select-items div:hover {
    background-color: #e9e9e9;
}

.float-wtsp {
    right: 35px;
    bottom: 15%;
}

.float-wtsp img {
    width: 60px;
}

.shopping-bag-img {
    height: 200px;
    object-fit: contain;
}

.remove-item {
    transition: color, font-weight 0.3s ease-in-out;
}
.remove-item:hover {
    color: var(--gold);
    font-weight: 500;
}

p.smaller-p {
    font-size: 14px;
}

div.modal-dialog {
    max-width: 90%;
}
.page-link {
    color: var(--badge-bg);
    border: 0;
    font-size: 18px;
    padding: 3px 15px;
}

.active > .page-link,
.page-link.active {
    background-color: transparent;
    border-color: transparent;
    color: var(--black);
    font-weight: 600;
}

.disabled > .page-link,
.page-link.disabled {
    background-color: transparent;
    border-color: transparent;
    color: var(--badge-bg);
}

.page-item:first-child:not(.disabled) > a.page-link,
.page-item:last-child:not(.disabled) > a.page-link {
    background-color: var(--black);
    border-color: transparent;
    color: #fff;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.laravel-pagination .text-muted {
    display: none;
}

.page-link:hover {
    z-index: 2;
    color: var(--prg-black);
    background-color: transparent;
    border-color: transparent;
}

.page-link:focus {
    box-shadow: none !important;
}

.black-bag {
    display: none;
}
.nav-primary-color .black-bag {
    display: block !important;
}
.white-bag {
    display: block;
}
.nav-primary-color .white-bag {
    display: none !important;
}

.montserrat-normal {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.montserrat-semibold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.montserrat-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.montserrat-black {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.form-control {
    height: 54px;
    border: 0.5px solid var(--input-border);
    border-radius: 0;
}

.modal select.form-control {
    height: 54px;
    border: 0.75px solid var(--price-color);
    border-radius: 0;
}

.black-btn {
    background-color: var(--btn-bg);
    color: #fff;
}
.black-btn:hover {
    background-color: transparent !important;
    color: var(--btn-bg);
    border-color: var(--btn-bg);
}

input.form-control:focus {
    border-color: var(--black);
    box-shadow: none !important;
}

select.form-control:focus {
    border-color: var(--gold);
    box-shadow: none !important;
}

.title-black {
    color: var(--black);
    font-weight: 500;
}

.text-gold {
    color: var(--gold);
    font-weight: 400;
}
p {
    font-size: 18px;
}
@media (min-width: 992px) {
    nav:not(.nav-primary-color) .nav-link {
        text-shadow: 1px 0px 10px rgba(121, 117, 121, 0.7);
    }

    nav:not(.nav-primary-color) .navbar-brand > img {
        filter: invert(1) contrast(1.5);
        text-shadow: 1px 0px 10px rgba(121, 117, 121, 0.7);
    }
}

.share img {
    width: 30px;
    aspect-ratio: 1/1;
}

.view-more {
    color: var(--black);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.max-w-100 {
    max-width: 100% !important;
}
.text-balance {
    text-wrap: balance;
}

.fabric-type {
    color: var(--prg-black);
    font-size: 16px;
}

/* .item-featured-img{
    width: 100%;
    min-height: 416px;
    max-height: 416px;
    aspect-ratio: 9 / 16;
    object-fit: fill;
} */

.item-featured-img {
    width: 100% !important;
    object-fit: cover !important;
    max-height: 408px;
    min-height: 408px;
}

.large-image-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.large-image-container img {
    transition: transform 0.2s ease;
}

.large-image-container:hover img {
    transform: scale(1.5); /* Zoom factor */
    cursor: zoom-in;
}

.desc-hps > p {
    text-align: justify;
}
.item-modal-img {
    height: auto;
    object-fit: contain;
}

.item-detail-img {
    height: 650px;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .carousel-item {
        height: 550px !important;
        max-height: 550px !important;
    }

    .carousel-item > img {
        max-height: 550px;
        height: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    b,
    strong {
        font-weight: bold !important;
    }
}
.item-modal-img-small {
    width: 45px;
    height: 60px;
}

.borer-grey {
    border: 0.75px solid var(--input-border);
}

.w-15 {
    width: 15% !important;
}
.w-40 {
    width: 45% !important;
}

@media (max-width: 1200px) {
    .w-40 {
        width: 80% !important;
    }

    #navbarText .nav-link,
    .bag-text {
        font-size: 14px !important;
    }
    .float-wtsp {
        right: 10px;
    }
}
@media (max-width: 991px) {
    .carousel-inner {
        height: 100vh !important;
    }

    .carousel-item > img {
        height: 100vh !important;
    }
    .item-modal-img {
        height: 70vh;
        object-fit: contain;
    }
}
@media (max-width: 545px) {
    .item-featured-img {
        width: 100% !important;
        object-fit: contain;
        /* height:320px!important;
        min-height: 320px;
        max-height: 320px;
        aspect-ratio: 9 / 16; */
    }

    .item-detail-img {
        height: 500px;
        object-fit: contain;
    }
    .float-wtsp img {
        width: 50px;
    }
    .item-modal-img {
        height: auto;
        object-fit: contain;
    }
    .prag {
        font-size: 16px;
    }
    .w-40 {
        width: 95% !important;
    }

    .modal-btn-wrapper .btn {
        width: 100% !important;
    }

    div.modal-dialog {
        max-width: 100% !important;
    }

    .dropdown-menu {
        border: 0px solid #ddd !important;
    }

    .dropdown-toggle.show {
        border-bottom: 1px solid #ddd !important;
    }

    .nav-link {
        color: #000;
    }
}

.item-details {
    max-height: 200px;
}

.view-ic {
    right: 20px;
    bottom: 20px;
    display: none;
    transition: display 0.2s ease-in-out;
}
@media (min-width: 991px) {
    .item-featured-img-redcarpet {
        width: 100% !important;
        object-fit: cover !important;
        max-height: 408px;
        min-height: 408px;
    }

    img.item-featured-img {
        /* width: 100%!important;
        object-fit: contain;
       */
        width: 100% !important;
        object-fit: cover !important;
        max-height: 408px;
        min-height: 408px;
    }
}

@media (max-width: 1200px) and (min-width: 991px) {
    img.item-featured-img {
        /* width: 100%!important;
        object-fit: contain;
       */
        width: 100% !important;
        object-fit: contain !important;
        max-height: 300px;
        min-height: 300px;
    }
}

.item-featured-img-redcarpet {
    width: 100% !important;
    object-fit: contain;
}

.item-featured-img:hover,
.item-featured-img-redcarpet:hover {
    cursor: pointer;
}

.nav-primary-color {
    background-color: #fff !important;
    color: #000;
}

.nav-primary-color #navbarText .nav-link,
.bag-text {
    color: #000;
}

.img-containner:hover .view-ic {
    display: block !important;
}

.bi-arrow-right-short {
    color: var(--gold);
    font-size: 24px;
}
.carousel-item {
    height: 100%;
    max-height: 100%;
}

.carousel-item > img {
    object-fit: cover;
    aspect-ratio: 16/9;
    height: 80vh;
}

.carousel-inner {
    height: 80vh;
}

.carousel-info {
    bottom: 75px;
    left: 75px;
    color: #fff;
    font-size: 18px;
}

@media (max-width: 1199px) {
}

@media (max-width: 1350px) {
    .item-detail-img {
        height: 600px !important;
        object-fit: contain;
    }
}

.radius-0 {
    border-radius: 0;
}

.btn-wrapper .btn {
    width: 184px;
    height: 59px;
}

.modal-btn-wrapper .btn {
    width: 49%;
    height: 59px;
}
.reg-btn-wrapper .btn {
    width: 96%;
    height: 59px;
}

.order-summary {
    max-height: 300px;
}

.badge {
    top: 5px;
    right: -8px;
    clip-path: circle();
    font-size: 8px;
}
.badge-checkout {
    top: -5px;
    right: 5px;
    font-size: 8px;
    padding: 4px 8px;
    color: #fff;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none !important;
}

#navbarText .nav-link,
.bag-text {
    color: #fff;
    font-weight: 700;
}
.active-nav {
    color: var(--gold) !important;
}
#navbarText .nav-link:hover {
    color: var(--gold);
}
.carousel-indicators [data-bs-target] {
    clip-path: circle();
    width: 10px;
    height: 10px;
    border: 1px solid #fff !important;
    background-color: transparent !important;
}

.carousel-indicators .active {
    background-color: #fff !important;
}

.title-border {
    border-bottom: 2px solid rgba(217, 217, 217, 1);
    width: 50px;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: var(--footer-bg) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-item {
    border: none !important;
}

.accordion-item:not(:first-of-type) {
    margin-block: 10px;
}

.footer-body {
    background-color: var(--footer-bg);
}
footer li::marker {
    content: " ";
}
footer a {
    text-decoration: none;
    color: #000;
}
.socials > img {
    width: 22px;
    aspect-ratio: 1/1;
}

.footer-link:hover {
    font-weight: 700;
}
.footer-link {
    transition: font-weight 0.3s ease-in-out;
}
.footer-ic {
    width: 212px;
    height: 102px;
}

/* img hover display */

.item-modal-img {
    transition: all 0.3s ease-in-out;
}

.img-option {
    cursor: pointer;
}

.item-modal-img-small:hover {
    opacity: 0.7;
}
.item-modal-img-small.active {
    border: 2px solid var(--gold);
    opacity: 0.7;
}

/* Hide the built-in arrows in number input */
.quantity-input {
    -moz-appearance: textfield; /* Firefox */
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* Safari and Chrome */
}

/* Flexbox for alignment */
.quantity-wrapper {
    display: flex;
    align-items: center;
}

.quantity-input {
    text-align: center;
    width: 50px;
    font-weight: 500;
    padding: 5px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 0.75px solid var(--number-input);
    border-bottom: 0.75px solid var(--number-input);
}

.quantity-btn {
    padding: 5px 10px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 500;
}

.quantity-btn:focus {
    outline: none;
}

.quantity-btn:first-child {
    border-left: 0.75px solid var(--number-input);
    border-right: none;
    border-top: 0.75px solid var(--number-input);
    border-bottom: 0.75px solid var(--number-input);
}

.quantity-btn:last-child {
    border-right: 0.75px solid var(--number-input);
    border-top: 0.75px solid var(--number-input);
    border-bottom: 0.75px solid var(--number-input);
    border-left: none;
}

.w-70p {
    width: 70px;
}

.min-cont {
    width: min-content;
}

@media (min-width: 991px) {
    .offcanvas.offcanvas-end {
        width: 500px !important;
    }
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: var(--number-input);
}

thead > tr > th {
    background-color: var(--footer-bg) !important;
    border-width: 0 !important;
}
