﻿/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.mainpgheader {
    background: #F5F5F5;
    color: var(--accent-color);
    border-left: 20px solid var(--accent-color);
    padding: 0 7px;
}

.PgHead {
    color: var(--accent-color);
    border-left: 5px solid var(--accent-color);
    padding: 12px 15px 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #000;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: start;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

    .page-title .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .page-title .breadcrumbs ol li + li::before {
            content: "/";
            display: inline-block;
            padding-right: 10px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
        }

.page-title .breadcrumbs a {
    color: #000;
    text-decoration: underline;
}

.minpght {
    min-height: 500px;
    padding: 40px 0;
}

.hidden {
    display: none;
}

.timg {
    margin-bottom: 20px;
}

.msgsuccess {
    text-align: center;
    padding: 20px 20px 40px;
    border-radius: 5px;
    background: #f4f4f4;
    outline-offset: -4px;
    outline: 1px solid #000;
    border: 1px solid #000;
}

    .msgsuccess h3 {
        margin-bottom: 20px;
    }

.BtnGeneral, .BtnGeneral:focus, .BtnGeneral:hover {
    background: var(--accent-color);
    color: #fff;
    padding: 5px 20px;
    font-size: 17px;
    margin-left: 5px;
    border: 1px solid var(--accent-color);
    text-decoration: none;
}



.cta {
    margin-bottom: 2pc;
}

    .cta p {
        font-size: 19px;
        text-align: center;
        margin: 0 0 2pc;
        line-height: 1.5;
    }

.cta-block,
.cta-block:active,
.cta-block:visited,
.cta-block:focus {
    color: #000;
    padding: 2pc 10px;
    width: 100%;
    text-align: center;
    font-size: 25px;
    display: block;
    border-radius: 4px;
    line-height: 1.2;
    font-weight: 400;
    box-shadow: 0 0 10px #e3e3e35e;
}

    .cta-block:hover {
        color: #fff;
        background: #000;
    }

.section-cta .cta-block:hover {
    background: #ddf3f2;
}

.cta-block i {
    display: block;
    margin-bottom: 20px;
    font-size: 30px;
}


/*Services Page */
.services {
    padding: 0 0 20px 0;
}

    .services .card-item {
        background-color: var(--surface-color);
        overflow: hidden;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        height: 100%;
        border: 1px solid #e0e0e0;
    }

        .services .card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

            .services .card-item:hover .card-img img {
                transform: scale(1.1);
            }

        .services .card-item .card-img {
            position: relative;
            overflow: hidden;
        }

            .services .card-item .card-img img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

        .services .card-item .card-content {
            padding: 2rem;
        }

            .services .card-item .card-content .card-category {
                display: inline-block;
                color: var(--accent-color);
                font-weight: 500;
                margin-bottom: 0.5rem;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .services .card-item .card-content h4 {
                margin-bottom: 1rem;
                color: var(--heading-color);
                font-weight: 600;
                line-height: 1.3;
            }

            .services .card-item .card-content p {
                color: #212529;
                line-height: 1.6;
                margin-bottom: 0;
            }

            .services .card-item .card-content ol {
                color: #212529;
                line-height: 1.6;
                margin-bottom: 0;
                padding-left: 0;
                list-style-position: inside;
            }

            .services .card-item .card-content .card-action {
                margin: 20px 0;
            }



/*CTA Section*/
.call-to-action-2 {
    position: relative;
    padding: 80px 0;
    background-color: #efefef;
    overflow: hidden;
    margin-bottom: 0;
}

    .call-to-action-2 h2 {
        font-weight: 600;
        margin-bottom: 14px;
        color: #000;
       
    }

.call-to-action-2 .leads {
    color: #000;
    margin-bottom: 1.5rem;
    padding: 10px 25px;
}


/*About Us Page*/
.mb-40 {
    margin-bottom: 40px;
}

.about-section .sec-title > p {
    width: 100%;
}

.about-description p {
    color: #000;
}

.member-name {
    color: #666666;
}

.about-description {
    padding-right: 50px;
    padding-bottom: 20px;
    position: relative;
    padding-top: 20px;
}

    .about-description::before {
        content: "";
        display: block;
        width: 100px;
        height: 100px;
        bottom: 0;
        border-right: 3px solid #4cc1b9;
        border-bottom: 3px solid #4cc1b9;
        position: absolute;
        right: 0;
    }

p-20 {
    padding: 20px;
}

.bg-img-1 {
    background: rgba(255, 255, 255, 0.5) url('../img/About/blog-photo-bg.png') repeat scroll 0 0;
    background-size: cover;
    padding: 20px;
    border: 10px solid transparent;
    box-sizing: border-box;
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}


.largeletter {
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
}

.about-desc {
    position: relative;
    font-weight: 500;
    left: -6pc;
    color: #fff;
    font-size: 22px;
    border-left: 2px solid #4cc1b9;
    padding: 5px 45px 10px 45px;
    background: #4cc1b9;
    margin-top: 40px;
    line-height: 24px;
}

    .about-desc:before {
        content: "\201c";
        font-family: Raleway, sans-serif;
        display: block;
        position: relative;
        font-size: 70px;
        left: -30px;
        width: min-content;
        top: 30px;
    }

    .about-desc span {
        font-style: italic;
        display: block;
        padding-top: 10px;
        text-align: right;
        font-size: 16px;
        margin-right: -19px;
    }

.txt-bottom {
    margin: 2pc 0;
}

.abut-header1 {
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
    font-size: 25px;
}

h3.abut-header2 {
    font-size: 35px;
    color: #000;
    font-weight: 700;
    margin-left: 45px;
}

.txt-bottom p {
    font-size: 17px;
    color: #000;
}

/*CTA*/
.about-cta {
    margin-bottom: 50px;
    background: #f7fffe;
    padding-top: 3pc;
    padding-bottom: 3pc;
}

.row-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .row-flex .flex-container-1 a {
        text-decoration: none !important;
    }

.cta-img-block {
    display: block;
    margin-bottom: 20px;
}

    .cta-img-block img {
        border-radius: 30px;
    }

.cta-content,
.cta-content:hover {
    background: #f1f1f1;
    color: #000;
    display: flex;
    padding: 30px;
    font-size: 22px;
    line-height: 1.5;
    border-radius: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 215px;
}

.cta-content-reverse,
.cta-content-reverse:hover {
    background: #4cc1b9;
    color: #fff !important;
    min-height: 400px;
}

.cta-img-block-reverse {
    margin-top: 20px;
    margin-bottom: 0;
}

.cta-content span {
    display: block;
    font-size: 18px;
}

.cta-content h3 {
    margin-top: 20px;
    font-weight: 600;
    color: #000;
}

.cta-content i {
    font-size: 35px;
}

.cta-content.cta-content-reverse h3 {
    font-size: 35px;
    color: #fff;
}

.cta-content.cta-content-reverse i {
    color: #fff;
}

/*section-details*/

.section-details {
    margin: 2pc 0;
}

    .section-details img {
        border-radius: 30px;
    }

    .section-details h3 {
        color: #000;
        margin-top: 20px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .section-details p {
        color: #000;
    }


    .section-details .btns {
        margin-top: 25px;
    }


/*For responsive*/
.flex-container {
    display: flex !important;
    flex-direction: row;
}

.flex-container-1 {
    display: flex !important;
    flex-direction: column;
}


/*Login Page*/
.loginform {
    position: relative;
}

    .loginform .leftpanel {
        padding: 50px 40px;
        background-color: var(--surface-color);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .loginform .leftpanel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
        }

        .loginform .leftpanel:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

    .loginform .helpblock a {
        color: #4cc1b9;
        text-decoration: none;
        font-weight: 600;
    }

        .loginform .helpblock a:hover {
            color: color-mix(in srgb, var(--accent-color), transparent 25%);
            text-decoration: underline;
        }

    .loginform .fplink a {
        color: #4cc1b9;
        text-decoration: none;
        font-weight: 600;
    }

        .loginform .fplink a:hover {
            color: color-mix(in srgb, var(--accent-color), transparent 25%);
            text-decoration: underline;
        }

    .loginform .cftxtbox {
        padding: 14px 18px;
        border-radius: 4px;
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
        background-color: var(--surface-color);
        font-size: 15px;
        transition: all 0.3s ease;
        color: var(--default-color);
    }

        .loginform .cftxtbox:focus {
            border-color: var(--accent-color);
            box-shadow: none;
        }

        .loginform .cftxtbox::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

    .loginform .hr-with-text {
        margin-top: 25px;
    }

    .loginform .bottompanel .hr-with-text span,
    .loginform .bottompanel h4,
    .loginform .bottompanel p {
        text-align: center;
    }

    .loginform .btnsignup {
        color: #4cc1b9;
        font-weight: 600;
        text-decoration: none;
        margin-left: 5px;
        transition: color 0.3s;
    }

        .loginform .btnsignup:hover {
            color: color-mix(in srgb, var(--accent-color), transparent 25%);
            text-decoration: underline;
        }
/*------------ My Account ------------*/
.completedorder {
    background-color: #00a65a;
    color: #fff;
    padding: .2em .6em .3em;
    border-radius: .25em;
    font-size: 14px;
}

.canceledorder {
    background-color: #dd4b39;
    color: #fff;
    padding: .2em .6em .3em;
    border-radius: .25em;
    font-size: 14px;
}

.otherorder {
    background-color: #f39c12;
    color: #fff;
    padding: .2em .6em .3em;
    border-radius: .25em;
    font-size: 14px;
}

.prodcheader {
    font-size: 20px;
    color: #4bc1b9;
    text-decoration: none;
    font-weight: 600
}

.giftdetails {
    padding-top: 15px;
}

.bckpnl1 {
    padding-right: 15px;
    text-align: right;
    padding-bottom: 15px;
}

    .bckpnl1 a img {
        position: relative;
        top: -2px;
        padding-right: 4px;
    }

.accounttab {
    border-bottom: 0;
}

    .accounttab > .active {
        background-color: #efefef;
        color: #000;
    }

    .accounttab > li.active > a, .accounttab > li.active > a:focus, .accounttab > li.active > a:hover {
        border: 0;
    }

.myaccountdb {
    border-right: 2px solid #ddd;
}

    .myaccountdb .nav > li > a {
        padding: 0;
        background-color: #4bc1b9;
        color: #fff;
        border: 0;
    }

        .myaccountdb .nav > li > a:focus, .myaccountdb .nav > li > a:hover {
            background-color: transparent;
            border: 0;
            color: #e1e1e1;
        }

    .myaccountdb ul li {
        padding: 5px 10px;
        background-color: #4bc1b9;
        color: #fff;
        margin-bottom: 2px;
        cursor: pointer;
        width: 100%;
    }

    .myaccountdb > ul > li.active > a {
        color: #4bc1b9;
        cursor: pointer;
        background-color: #efefef;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
    }

        .myaccountdb > ul > li.active > a:hover {
            background: #efefef;
            color: #4bc1b9;
        }

.accounttab {
    width: 97%;
}


.logintxt a {
    color: red;
}

.pico {
    width: 20px;
}

.imgprod {
    background: #fff;
}

.brline {
    border-top: 1px solid #ddd;
    margin: 5px 0;
}

.content-page .shop {
    font-size: 16px;
}

.shop {
    border: 1px solid #ccc;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    color: #292929;
}

    .shop .row {
        margin: 0;
    }

.fontw {
    font-weight: 600;
}

.pull-right {
    float: inline-end;
}

.gridordr {
    border: 0;
    width: 100%;
    background: #fff;
    border-collapse: separate !important;
    border-spacing: 0px 10px;
}

    .gridordr th {
        background: #eee;
        padding: 5px 15px !important;
        color: #000 !important;
        vertical-align: middle;
        border: 1px solid #eee;
        font-weight: 400;
    }

    .gridordr td {
        padding: 5px 15px !important;
        vertical-align: middle;
        border: 1px solid #fff;
        color: #000;
        background: #fff;
        border-bottom: 2px solid #eee;
        border-top: 1px solid #eee;
    }

.note {
    border-top: 1px solid #c52c2c;
    border-bottom: 1px solid #c52c2c;
    padding: 10px;
    background: #fff;
    border-left: 0;
    border-right: 0;
    display: flex;
    color: #c52c2c;
}

.noteicon {
    width: 40px;
    height: 40px;
    margin: 0px 10px;
}

.note-icon {
    width: 60px;
    height: 60px;
    background: #ffeded;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

.notetxt {
    margin-left: 15px;
}

.note ul {
    margin-bottom: 0.2rem;
}

.note a, .note a:focus, .note a:hover {
    font-weight: 600;
    color: #c52c2c;
    text-decoration: underline;
}

@media (min-width: 1800px) and (max-width: 2100px) {
    .cta-content,
    .cta-content:hover {
        min-height: 257px;
    }

    .cta-img-block-reverse {
        margin-top: 0;
        margin-bottom: 0;
    }

    .cta-content-reverse,
    .cta-content-reverse:hover {
        min-height: 530px;
        margin-bottom: 0;
    }

    .cta-content span {
        font-size: 25px;
    }

    .cta-content,
    .cta-content:hover {
        font-size: 33px;
    }

        .cta-content.cta-content-reverse h3 {
            font-size: 50px;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .section-title > p {
        max-width: 80% !important;
    }

    .about-desc {
        font-size: 19px;
        padding: 5px 35px 10px;
    }

    .about-description p,
    .txt-bottom p,
    .section-details p,
    .cta-content span {
        font-size: 15px;
    }

    .cta-content,
    .cta-content:hover {
        font-size: 20px;
    }

    .section-details h3 {
        font-size: 28px;
    }

    .cta-content h3,
    .cta-content.cta-content-1 h3,
    .cta-content.cta-content-reverse h3 {
        font-size: 28px;
    }
}

@media(max-width:1199px) {
    .page-title h2 {
        font-size: 30px;
    }

    .cta-block,
    .cta-block:active,
    .cta-block:visited,
    .cta-block:focus {
        margin-bottom: 20px;
    }

    .cta {
        padding: 0 1pc 20px;
    }

        .cta p {
            font-size: 15px;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cta p {
        font-size: 15px;
    }

    .cta-content {
        min-height: 300px;
        background-position: top;
    }


        .cta-content i {
            font-size: 40px;
        }

        .cta-content,
        .cta-content:hover {
            font-size: 30px;
        }

            .cta-content span {
                font-size: 22px;
            }

    .about-cta {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .row-flex {
        display: block;
    }

    .cta-img-block {
        margin-bottom: 0;
        display: none;
    }

    .cta-content {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
    }

        .cta-content.cta-content-t {
            background-image: url(https://cdn.shopify.com/s/files/1/0475/9919/0182/files/book-an-appointment-at-concierge-jewelry.webp?v=1718861025);
        }

        .cta-content.cta-content-1 {
            background-image: url(https://cdn.shopify.com/s/files/1/0475/9919/0182/files/contact-us-at-concierge-jewelry.webp?v=1718861025);
        }

        .cta-content::after {
            background: #00000072;
            content: "";
            display: block;
            position: absolute;
            z-index: -1;
            width: 100%;
            height: 100%;
            border-radius: 30px;
        }

        .cta-content.cta-content-reverse::after {
            display: none;
        }

    .border-bottom {
        margin-bottom: 20px;
        border-bottom: 1px solid #e2f7f4;
        padding-bottom: 30px;
    }

    .cta-content-reverse {
        margin-bottom: 0;
    }

    .cta-content h3 {
        font-size: 30px;
        line-height: 1.1;
        color: #fff;
    }

    .cta-content i {
        color: #fff;
    }

    .section-image {
        margin-top: 20px;
    }

    .flex-container {
        flex-direction: column;
    }

    .about-desc {
        left: 0;
        margin-top: 0;
    }

    .section-title > p {
        max-width: 100% !important;
    }

    .section-title.mb-60 {
        margin-bottom: 25px;
    }

    .about-description {
        padding: 0 0 10px;
    }

    .abut-header1 {
        margin-bottom: 15px;
    }

    h3.abut-header2 {
        margin-bottom: 0px;
    }
}

@media(max-width: 880px) {
    .flex-container-1 {
        margin: 25px 0;
    }

    .section-details .txt-cont {
        margin-top: 0;
    }

    .section-4 .btns,
    .section-5 .btns {
        display: flex;
        flex-direction: column;
    }

    .btns .gelbtn {
        text-align: center
    }

    .section-4 .btns .btn-2,
    .section-5 .btns .btn-2 {
        margin-top: 15px;
    }

    .loginform .leftpanel {
        padding: 40px 25px;
    }
    .section-title {
        padding-bottom: 15px;
    }
    .services {
        padding: 30px 0 20px 0;
    }
}

@media(max-width:767.98px) {
    .loginform .leftpanel {
        padding: 40px 25px;
    }

    .PgHead {
        align-items: center;
        flex-direction: column;
    }

    .page-title {
        text-align: center;
    }

        .page-title h2 {
            font-size: 26px;
        }

    .backbtn {
        padding: 12px 0px;
    }

    .cta {
        padding: 0 0pc 2pc;
    }
    .call-to-action-2 h2 {
        font-size: 2rem;
    }
}

@media(max-width: 560px) {
    .section-title {
        padding-bottom: 15px;
    }

    .flex-container-1 {
        margin: 25px 0;
    }

    .section-4 .btns,
    .section-5 .btns {
        display: flex;
        flex-direction: column;
    }

    .btns .gelbtn {
        text-align: center
    }

    .section-4 .btns .btn-2,
    .section-5 .btns .btn-2 {
        margin-top: 15px;
    }

    .call-to-action-2 {
        padding: 60px 20px;
    }

        .call-to-action-2 .cta-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

            .call-to-action-2 .cta-buttons .btn-2 {
                margin-top: 20px;
                margin-left:0px !important;
            }
    .services {
        padding: 10px 0 0 0;
    }
}

@media(max-width:480px) {
    .page-title .breadcrumbs {
        display: none;
    }
}