/* shn custom css */


.wd-external-btn:hover {
    background: #000;
    color: #fff;
    transition: .3s ease-in-out;
}

.wd-external-btn {
    transition: .3s ease-in-out;
}

.wd-checkbox {
    margin-bottom: 30px;
    display: inline-block;
}

.wd-checkbox input {
    margin-right: 10px;
}

.qodef-bridal-contact-form .qodef-phone:after {
    content: "\e830";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2e2e2e;
    position: absolute;
    right: 17px;
    bottom: 31px;
}

.qodef-bridal-contact-form .qodef-date:after {
    content: "\e836";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2e2e2e;
    position: absolute;
    right: 17px;
    bottom: 31px;
}

#qodef-page-header .qodef-widget-holder {
    display: none;
}

.widget_search {
    display: none;
}

.qodef-social-icons-group {
    display: flex;
    justify-content: center;
}

.wd-checkbox label,
.wd-checkbox input {
    cursor: pointer;
}

#qodef-page-inner{
    padding: 0 !important;
}


@media only screen and (max-width: 480px) {
    #qodef-page-inner {
        padding: 50px 10px !important;
        max-width: 100% !important;
        width: 100%
    }
}

/* Liberté Designers Widget Styles */
.liberte-designers-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.single-designer-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.single-designer-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.single-designer-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.designer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
    z-index: 1;
}

.desingers-overlay-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    opacity: 0;
    visibility: hidden;
    margin: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 2;
    width: 90%;
}

.wd-designers-name {
    color: #fff;
    text-align: center;
}

.wd-designers-sub-texts{
    color: #fff;
    margin-top: 20px;
    text-align: center;
}

.single-designer-item:hover .designer-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.single-designer-item:hover .desingers-overlay-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.single-designer-item:hover img {
    transform: scale(1.1);
}



body.single .qodef-title--breadcrumbs {
    display: none !important;
}


body.single #qodef-page-inner {
    padding-top: 10px !important;
}

body.single #qodef-page-inner.qodef-content-grid {
    width: 100% !important;
}


/* Responsive */
@media (min-width: 1280px) {
    body.single #qodef-page-inner {
        padding-top: 50px !important;
    }

}



@media only screen and (min-width: 1441px) {
    body.single #qodef-page-inner.qodef-content-grid {
        width: 90% !important;
    }
}

@media (max-width: 1366px) {
    .wd-designers-name {
        font-size: 24px;
    }

}


@media (max-width: 1024px) {
    .liberte-designers-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wd-designers-name {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .liberte-designers-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .single-designer-item {
        max-width: 400px;
        margin: 0 auto;
    }

    .wd-designers-name {
        font-size: 20px;
    }
}

/* Single Designer Page Styles */
.wd-designer-single-container {
    display: flex;
    /* max-width: 1320px; */
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
}

.wd-designer-sidebar {
    width: 250px;
    flex-shrink: 0;
    margin-top: 2rem;
}

.wd-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.wd-designer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wd-designer-list li {
    margin-bottom: 12px;
}

.wd-designer-list li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
}

.wd-designer-list li a:hover {
    color: #000;
    font-weight: 500;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.wd-designer-main-content {
    flex-grow: 1;
    margin-bottom: 30px;
}

.wd-designer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.single-designer-name {
    font-size: 42px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.wd-designer-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.wd-insta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #000;
    color: #fff !important;
    border-radius: 6px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.wd-insta-link:hover {
    background: #333;
    transform: translateY(-2px);
}

.wd-designer-description-section {
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 80%;
    text-align: justify;
}

.wd-designer-description-section p {
    margin-bottom: 15px;
}

.wd-designer-gallery {
    /* column-count: 4;
    column-gap: 20px; */

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wd-gallery-item {
    break-inside: avoid;
}

.wd-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive for Single Page */
@media (max-width: 1024px) {
    .wd-designer-single-container {
        flex-direction: column;
        gap: 40px;
    }

    .wd-designer-sidebar {
        width: 100%;
        order: 2;
    }

    .wd-designer-main-content {
        order: 1;
    }

    .single-designer-name {
        font-size: 28px;
    }

    .wd-designer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wd-designer-gallery {
        /* column-count: 2; */
        grid-template-columns: repeat(2, 1fr);
    }

    .wd-designer-description-section {
        font-size: 18px;
        max-width: 100%;
    }

    .single-designer-name {
        font-size: 26px;
    }
      /* GLightbox Mobile Adjustments */
    .gclose {
        top: 30px !important;
        right: 30px !important;
        bottom: auto !important;
        left: auto !important;
    }

    .gprev,
    .gnext {
        top: auto !important;
        bottom: 40px !important;
    }

    .gprev {
        left: 30px !important;
    }

    .gnext {
        right: 30px !important;
    }
}

@media (max-width: 480px) {
    .wd-designer-gallery {
        /* column-count: 1; */
        grid-template-columns: 1fr;
    }

  
}



.long-img-section {
    height: 350vh !important;
}


#qodef-page-header{
    height: 120px !important;
    padding-top: 2vh;
}

#qodef-page-mobile-header{
    height: 90px;
    padding-top: 20px;
}