
/*** Copied from PCO Spinner ***/
.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
    z-index: 999;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}

.productsGallery_section p, .about_section p, .featuredProducts_section p {
    color: var(--bs-light);
}

.productsGallery_section h1, .about_section h1, .featuredProducts_section h1 {
    color: var(--bs-light);
}

.about_section h1.display-5{
    color: var(--bs-dark)
}
/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
    background-color: #000 !important;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(255 255 255 / 80%) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.navbar-toggler {
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
        text-align: center;
    }
    .navbar-nav.attr-nav {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
}

.navbar-nav .dropdown-menu.cart_box {
    width: 320px;
    position: absolute !important;
    transition: all .25s ease-in-out;
    padding: 0;
    top: 100% !important;
     right: 0; 
}

.navbar-nav.attr-nav li .nav-link {
    padding: 12px 10px;
    position: relative;
    white-space: nowrap;
}

.navbar-nav.attr-nav li .nav-link i {
    font-size: 20px;
}

.dark_skin .navbar-nav .dropdown-menu {
    background-color: #fff;
    box-shadow: 0 13px 42px 11px #0000000d;
}

.cart_box .cart_list {
    width: 100%;
    padding: 0 !important;
    max-height: 242px;
    overflow-y: auto;
}

.cart_total {
    color: #fff;
    margin: 0;
    padding: 10px 15px;
    font-weight: 600;
    text-align: right;
}

.cart_total strong {
    float: left;
    font-weight: 600;
}

.cart_total {
    color: #333;
}

.cart_buttons {
    margin: 0;
    padding: 10px 15px 20px;
    text-align: center;
}

.btn-fill-line {
    background-color: transparent;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
    color: #fff !important;
    transition: all .8s ease 0s;
    z-index: 1;
}

.cart_buttons .view-cart, .cart_buttons .checkout {
    padding: 8px 20px !important;
}

/*** Hero Header ***/
.hero-header {
    background: url(../img/bg_models-scaled.jpg) top left no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .spinner {
        top: 45%;
        left: 42%;
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1140px) / 20) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1500px) / 2) + .75rem);
    }
}

/*.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}*/

/* --- SLIDER WRAPPER --- */
.slider-container {
    position: relative;
    width: 100%;
    /*max-width: 900px;*/
    margin: auto;
    overflow: hidden;
    /*border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);*/
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
}

/* --- ARROWS --- */
/*.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    color: white;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    z-index: 100;
    transition: 0.3s;
}

.arrow:hover {
    opacity: 0.7;
}*/

.slider-container .arrow {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    z-index: 9;
    gap: 5px;
}

.slider-container .arrow #prev, .slider-container .arrow #next {
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.slider-container .arrow #prev:hover,
.slider-container .arrow #next:hover {
    color: var(--bs-white);
}

/* --- DOTS --- */
.dots {
    position: absolute;
    top: 40%;
    right: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--bs-primary);
}

@media (max-width: 600px) {
    .slide img {
        height: 45vh;
    }

    .arrow {
        font-size: 34px;
        padding: 6px 10px;
    }
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}

/*** Single Page Start ***/
.pagination {
    display: inline-block;
}

.pagination a {
    color: var(--bs-white);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
    font-size: 18px;
}

.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {
    background-color: var(--bs-primary)
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/

/*** featured-Products ***/
.featured-Products {
    position: relative;
}

/*.featured-Products::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}*/

.featured-Products-item {
    display: block;
    height: 350px;
}

.featured-Products-item img {
    transition: .5s;
    height: 100%;
}

.featured-Products-item:hover img {
    transform: scale(1.2);
}

.featured-Products-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.featured-Products-item:hover .featured-Products-overlay {
    background: rgba(255, 255, 255, .9);
}

.featured-Products-overlay p {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}

.featured-Products-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.featured-Products-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/* --- GALLERY GRID --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    /*border-radius: 12px;*/
    cursor: pointer;
    transition: transform .35s ease, opacity .35s ease;
}

.gallery img:hover {
    /*transform: scale(1.05);*/
    transform: scale(1.2);
    opacity: 0.85;
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    /*border-radius: 14px;*/
    box-shadow: 0 0 25px rgba(255,255,255,0.25);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 45px;
    color: #fff;
    line-height: 30px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    transition: 0.3s;
}

.close-btn:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.delete-icon {
    cursor: pointer;
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: #bf9456;
    justify-content: center;
}

/* Product Details */
.product-container {
    /*max-width: 1200px;*/
    /*background: #fff;*/
    margin: auto;
    display: flex;
    gap: 40px;
    border-radius: 14px;
}

.product_card_wish_icon {
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* Left Section */
.left-side {
    flex: 1;
}

.left-side >.main-image {
   display: none
}

.left-side >.active {
   display: block
}

.main-image-box img {
    width: 100%;
    /*height: 600px;*/
    height: 500px;
    border-radius: 14px;
}

.thumb-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumb-gallery img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    object-fit: cover;
}

.thumb-gallery img.active,
.thumb-gallery img:hover {
    border-color: #000;
}

/* Right Section */
.right-side {
    flex: 1;
}

.brand {
    font-size: 16px;
    color: var(--bs-white);
    margin-bottom: 5px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--bs-white);
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--bs-white);
}

.new-price {
    font-size: 24px;
    font-weight: bold;
    color: #e63946;
}

.rating {
    display: flex;
    gap: 5px;
    margin-left: auto;
    font-size: 18px;
    color: var(--bs-white);
}

.user-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-left: 10px;
}

.description {
    color: var(--bs-light);
    margin-bottom: 25px;
}

/* Colors */
.color-section h4 {
    margin-bottom: 8px;
    color: var(--bs-white);
}

.color-options {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--bs-white);
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-circle.selected {
    border-color: #000;
}

/* Sizes */
.size-section h4 {
    margin-bottom: 8px;
    color: var(--bs-white);
}

.sizes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sizes button {
    padding: 10px 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.sizes button.active {
    background: var(--bs-primary);
    color: #fff;
}

/* Buttons */
.buttons {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.add-cart {
    padding: 10px 22px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.checkout {
    padding: 10px 22px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    border: 1px solid var(--bs-primary);
    cursor: pointer;
}

/*.nav-description_content p {
    color: var(--bs-light);
}*/

.cart_count {
    position: relative;
    top: -3px;
    left: 0;
    font-size: 11px;
    background-color: #FF324D;
    border-radius: 50px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    min-width: 16px;
    text-align: center;
    padding: 0 5px;
    display: inline-block;
    vertical-align: top;
    margin-left: -5px;
    margin-right: -5px;
}

.cart_trigger .amount {
    margin-left: 8px;
    font-weight: 600;
    vertical-align: top;
    margin-right: -10px;
}

/* Responsive */
@media (max-width: 900px) {
    .product-container {
        flex-direction: column;
    }

    .thumb-gallery img {
        width: 70px;
        height: 70px;
    }
}


.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/img/bg_models-scaled.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);
}
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px;
    height: 130px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Products Start ***/
.products .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.products .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.products .products-categorie .products-name {
    line-height: 40px;
}

.products .products-categorie .products-name a {
    transition: 0.5s;
}

.products .products-categorie .products-name a:hover {
    color: var(--bs-secondary);
}

.products .products-item {
    background-color: #fff;
    height: 100%;
    transition: 0.5s;
}

.products .products-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.products .products-item .products-img {
    /*height: 400px;*/
    height: 300px;
    overflow: hidden;
    transition: 0.5s;
}

.products .products-item .products-img img {
    transition: 0.5s;
    height: 100%;
}

.products .products-item .products-img img:hover {
    transform: scale(1.3);
}

.product-meta{
    padding: 0;
}

.product-meta li {
    color: var(--bs-light);
    list-style: none;
    margin-top: 10px;
    gap: 10px;
}

/*** Products End ***/


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link:hover {
        color: var(--bs-primary);
        letter-spacing: 1px;
        box-shadow: none;
    }

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: rgba(255, 255, 255, .5);
        margin-right: 10px;
    }
