/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
    }


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn.btn-primary {
        color: #FFFFFF;
    }

.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;
}

/*====== TOP CONTACT ======*/

.top-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

    .top-contact a {
        display: flex;
        align-items: center;
        color: #FDF5EB;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: .35s ease;
    }

        .top-contact a i {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            color: var(--primary);
            margin-right: 10px;
            transition: .35s;
        }

        .top-contact a:hover {
            color: var(--primary);
            text-decoration: none;
        }

            .top-contact a:hover i {
                background: var(--primary);
                color: #fff;
                transform: rotate(360deg);
            }

    .top-contact span {
        color: rgba(255, 255, 255, .35);
        font-size: 18px;
        font-weight: 300;
    }

/*---- Laptop ----*/

@media (max-width:1199px) {
    .top-contact {
        gap: 14px;
    }

        .top-contact a {
            font-size: 14px;
        }

            .top-contact a i {
                width: 32px;
                height: 32px;
                margin-right: 8px;
            }
}

/*----- Tablet ----*/
@media (max-width:991px) {
    .top-contact {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px 0;
    }

        .top-contact span {
            display: none;
        }
}

/*---- Mobile ----*/
@media (max-width:576px) {
    .top-contact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

        .top-contact a {
            font-size: 14px;
        }

            .top-contact a i {
                width: 34px;
                height: 34px;
                margin-right: 8px;
                font-size: 14px;
            }
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

        .navbar .navbar-nav .nav-link {
            padding: 10px 0;
        }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*---- NAVBAR LOGO ----*/
.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-logo {
    width: 150px;
    height: auto;
    transition: .35s ease;
}

    .navbar-logo:hover {
        transform: scale(1.05);
    }

/* Laptop */
@media(max-width:1199px) {
    .navbar-logo {
        width: 160px;
    }
}

/* Tablet */
@media(max-width:991px) {
    .navbar-logo {
        width: 145px;
    }
}

/* Mobile */
@media(max-width:576px) {
    .navbar-logo {
        width: 125px;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

        .header-carousel .owl-carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .header-carousel .owl-carousel-item p {
            font-size: 16px !important;
        }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .header-carousel .owl-nav::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #FFFFFF;
        transform: rotate(45deg);
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        position: relative;
        font-size: 40px;
        color: var(--primary);
        transition: .5s;
        z-index: 1;
    }

        .header-carousel .owl-nav .owl-prev:hover,
        .header-carousel .owl-nav .owl-next:hover {
            color: var(--dark);
        }

/*.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../Image/carousel10.png) center center no-repeat;
    background-size: cover;
}*/
.page-header {
    margin-bottom: 6rem;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
    /* About */
    .page-header.about-header {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../Image/carousel24.png");
        background-position: 50% 30%;
    }
    /* Contact */
    .page-header.contact-header {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../Image/carousel22.png");
        background-position: 50% 35%;
    }
    /* Gallery */
    .page-header.gallery-header {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../Image/carousel19.png");
        background-position: 50% 65%;
    }
    /* Kurta */
    .page-header.kurta-header {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../Image/carousel17.png");
        background-position: 60% 30%;
    }
    /* Pants */
    .page-header.pant-header {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../Image/carousel23.png");
        background-position: 50% 10%;
    }
    /* Product Details */
    .page-header.product-details-header {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../Image/carousel18.png");
        background-position: 55% 40%;
    }
    /* Shirts */
    .page-header.shirts-header {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../Image/carousel20.png");
        background-position: 70% 50%;
    }
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

    .fact-item:hover {
        margin-top: -10px;
        background: #FFFFFF !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    }


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

    .product-item:hover {
        background: var(--primary) !important;
    }

        .product-item:hover * {
            color: var(--light);
        }

        .product-item:hover .border-primary {
            border-color: var(--light) !important;
        }

    .product-item .product-overlay {
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .5);
        overflow: hidden;
        opacity: 0;
        transition: .5s;
    }

    .product-item:hover .product-overlay {
        height: 100%;
        opacity: 1;
    }

    /* PRODUCT CARD IMAGE */

    .product-item img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 520px;
        object-fit: contain;
        object-position: center;
        background: #ffffff;
        image-rendering: auto;
    }


/****************************
      HOME GALLERY
*****************************/
.gallery-section {
    padding: 90px 0;
    background: #f8f8f8;
}

.gallery-content {
    padding-right: 40px;
}

.gallery-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #D4AF37;
    color: #111;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
}

.gallery-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.gallery-content p {
    font-size: 16px;
    color: #666;
    line-height: 30px;
    margin-bottom: 35px;
}

.gallery-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #111;
    color: #fff;
    border-radius: 40px;
    transition: .4s;
}

    .gallery-btn:hover {
        background: #D4AF37;
        color: #111;
        text-decoration: none;
    }

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

    .gallery-item.large {
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
        transition: .5s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    /* Heights */
    .gallery-item.large {
        height: 520px;
    }

.gallery-item {
    height: 250px;
}

    .gallery-item.wide {
        height: 250px;
    }

/* Responsive */
@media(max-width:991px) {
    .gallery-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    .gallery-content h2 {
        font-size: 32px;
    }
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #F2D6A2 0%, #E1B15A 45%, #C98A2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

    .team-item .team-social .btn {
        margin: 0 3px;
    }

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

    .testimonial-carousel .owl-item.center .testimonial-item * {
        color: #FFFFFF !important;
    }

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        font-size: 22px;
        color: var(--light);
        background: var(--primary);
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            color: var(--primary);
            background: var(--dark);
        }

/*---- Home Contact ----*/

.fashion-contact {
    background: linear-gradient(135deg,#111,#2f2f2f);
    border-radius: 20px;
    padding: 60px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    padding: 45px 50px;
}

    .fashion-contact h2 {
        font-size: 42px;
        font-weight: 700;
        color: #fff;
        margin: 20px 0;
    }

    .fashion-contact p {
        color: #ddd;
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .fashion-contact .btn-primary {
        background: #EAA636;
        border: none;
        color: #fff;
        font-weight: 600;
        transition: .35s;
    }

        .fashion-contact .btn-primary:hover {
            background: #fff;
            color: #111;
        }

@media(max-width:991px) {

    .fashion-contact {
        padding: 40px 25px;
        text-align: center;
    }

        .fashion-contact h2 {
            font-size: 30px;
        }

        .fashion-contact .btn {
            margin-top: 25px;
        }
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .75);
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .3s ease;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--primary);
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--primary);
        padding-left: 6px;
        letter-spacing: .5px;
        text-decoration: none;
        box-shadow: none;
    }

/* Copyright */
.copyright {
    background: #111111;
    margin-top: 0;
    padding: 0;
}

    .copyright p {
        margin-bottom: 0;
    }

    .copyright a {
        color: var(--primary);
        text-decoration: none;
    }

        .copyright a:hover {
            color: var(--light);
        }

/*---- GALLERY SECTION ----*/

.gallery-section {
    background: #faf8f5;
    padding: 80px 0;
}

.gallery-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

    .gallery-heading .subtitle {
        color: #b8864a;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .gallery-heading h2 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        font-weight: 700;
        color: #1f1f1f;
        margin-bottom: 15px;
    }

    .gallery-heading p {
        color: #666;
        margin-bottom: 0;
    }

/*---- FILTER BUTTONS ----*/

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.gallery-filter-btn {
    border: 1px solid #b8864a;
    background: transparent;
    color: #333;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .gallery-filter-btn:hover,
    .gallery-filter-btn.active {
        background: #b8864a;
        color: #fff;
    }

/*---- GALLERY CARD ----*/

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    height: 390px;
    margin-bottom: 30px;
}

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

/*---- OVERLAY ----*/

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.35), transparent );
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    width: 100%;
}

.gallery-category {
    color: #d4a65a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-info h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 7px 0 15px;
}

/*---- VIEW BUTTON ----*/

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d4a65a;
    background: #b8864a;
    color: #fff;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .gallery-view-btn:hover {
        background: #fff;
        color: #b8864a;
    }

/*---- LIGHTBOX ----*/

.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

    .gallery-lightbox.show {
        display: flex;
    }

.gallery-lightbox-content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    object-fit: contain;
}

.gallery-lightbox-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-top: 18px;
    font-size: 26px;
}

.gallery-close {
    position: fixed;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

    .gallery-close:hover {
        background: #b8864a;
        border-color: #b8864a;
    }

/*---- RESPONSIVE ----*/

@media (max-width: 768px) {
    .gallery-heading h2 {
        font-size: 32px;
    }

    .gallery-card {
        height: 350px;
    }

    .gallery-overlay {
        opacity: 1;
    }
}

.gallery-description {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0 15px;
    opacity: 0.9;
}
