.hidden {
    display: none !important;
}

/* Google rating badge (fixed widget) */
#google-rating-badge {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 9999;
    font-family: Arial, sans-serif;
}

#google-rating-badge a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,.14);
    text-decoration: none;
    color: #111;
}

#google-rating-badge a:hover {
    transform: translateY(-1px);
    transition: transform .15s ease;
}

#google-rating-badge .grb-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

#google-rating-badge .grb-g {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
}

#google-rating-badge .grb-rating {
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    letter-spacing: .2px;
    margin-top: 1px;
}

#google-rating-badge .grb-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

#google-rating-badge .grb-stars {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1px;
    transform: translateY(0);
    color: #d9d9d9;
}

#google-rating-badge .grb-stars::before {
    content: '★★★★★';
}

#google-rating-badge .grb-stars > span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    overflow: hidden;
    color: #f4b400;
    white-space: nowrap;
}

#google-rating-badge .grb-stars > span::before {
    content: '★★★★★';
}

#google-rating-badge .grb-total {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.05;
}

/* Hide badge on mobile */
@media (max-width: 768px) {
    #google-rating-badge { display: none; }
}

/* Hide the badge link on smaller screens (< 881px) */
@media (max-width: 880px) {
    #google-rating-badge-link { display: none !important; }
}

/* Google reviews section (carousel) */
.grs-wrap {
    background: #fbf2ea;
    border-radius: 24px;
    padding: 42px 36px;
    margin: 40px auto;
    max-width: 1240px;
}

.grs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.grs-title {
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .2px;
    margin: 0;
    color: #111;
}

.grs-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
    color: #111;
}

.grs-rating {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.grs-stars {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
    color: #d9d9d9;
    transform: none;
}

.grs-stars::before { content: '★★★★★'; }
.grs-stars > span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    overflow: hidden;
    color: #f4b400;
    white-space: nowrap;
}
.grs-stars > span::before { content: '★★★★★'; }

.grs-count {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.grs-google {
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.grs-google svg { width: 18px; height: 18px; }

.grs-btn {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(90deg, #fc8c5f 0, #fa7846 100%);
    height: 60px;
    color: #fff;
    border: 0;
    padding: 0 28px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18.49px 46.22px -4.62px rgba(250, 120, 70, .25), 0 2.77px 0 #e87145;
    transition: .4s;
}

.grs-btn:hover {
    filter: brightness(.985);
    transform: scale(1.04);
}

.grs-btn:active {
    transform: translateY(1px);
    box-shadow: 0 14px 32px -6px rgba(250, 120, 70, .22), 0 2.2px 0 #e87145;
}

.grs-carousel {
    position: relative;
}

.grs-track {
    position: relative;
    z-index: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 12px 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.grs-track::-webkit-scrollbar { display: none; }

.grs-card {
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
    padding: 18px 18px 16px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: Arial, sans-serif;
    color: #111;
}

.grs-card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.grs-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #111;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    overflow: hidden;
}

.grs-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grs-card-stars {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.grs-card-stars .grs-stars {
    font-size: 16px;
    letter-spacing: 1px;
    transform: none;
}

.grs-name {
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    margin-top: 2px;
}

.grs-date {
    text-align: center;
    font-size: 14px;
    opacity: .75;
}

.grs-text {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.5;
    opacity: .92;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 120px;
}

.grs-card.is-expanded .grs-text {
    -webkit-line-clamp: initial;
    overflow: visible;
}

.grs-more {
    background: transparent;
    border: 0;
    color: #fc885a;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    align-self: center;
    margin-top: 0;
}

.grs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    z-index: 2;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 18px rgba(0,0,0,.12);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.grs-nav:hover { filter: brightness(.98); }
.grs-nav.grs-prev { left: -14px; }
.grs-nav.grs-next { right: -14px; }

.grs-nav svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 980px) {
    .grs-wrap { padding: 30px 18px; border-radius: 18px; }
    .grs-head { flex-direction: column; align-items: flex-start; }
    .grs-rating { font-size: 38px; }
    .grs-btn { width: 100%; text-align: center; }
    .grs-nav.grs-prev { left: -6px; }
    .grs-nav.grs-next { right: -6px; }
}

@media (max-width: 1270px) {
    .grs-wrap { margin: 10px; }
}

.eraf {
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    padding: 10px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    height: auto !important;
	position: relative;
}


.eraf>div {
    width: 85%;
    max-width: 880px;
    margin: 0 auto 20px;
    height: 138px;
}

.eraf .magnetic-logo {
    width: 15%;
    height: 100%;
    background: url(../images/footer/1.png) no-repeat;
    background-size: contain;
}

.eraf .liaa-logo {
    width: 33%;
    height: 100%;
    background: url(../images/footer/2.png) no-repeat;
    background-size: contain;
}

.eraf .eraf-logo {
    width: 49%;
    height: 100%;
    background: url(../images/footer/3.png) no-repeat;
    background-size: contain;
}

.liaa-logo {
    width: auto;
    height: 80px;
    background-size: contain;
    background: url(../image/liaa-logo.png) no-repeat center;
    margin: 25px auto 0;
}

.eraf .liaa-text {
    width: 100%;
    margin: 20px 0 15px 0;
    max-width: inherit;
    height: auto;
    padding-top: 15px;
    color: #7f7f7f;
    font-size: 14px;
}

.eraf > div > div {
    height: 100%;
    box-sizing: border-box;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.seo-text__text {
    overflow-y: auto;
    max-height: 500px;
}

.seo-text__wrapper {
    padding:40px 10px;
    padding-top: 0;
}

.seo-cities {
    padding-bottom: 60px;
}
.seo-cities .top-title {
    margin-bottom: 20px;
}
.seo-cities .page-title {
    margin-bottom: 20px;
    position: relative;
}
.seo-cities .page-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 2px;
    width: 80px;
    background-color: #fb7e4d;
    transform: translateX(-50%);
}
.seo-cities .seo-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    justify-content: space-between;
    align-items: stretch;
}
.seo-cities .seo-cities-list ul li::before {
    content: '•';
    margin-right: 5px;
}

.vz-canvas .ellipse_top {
    display: none;
}

.vz-canvas .ellipse_black {
    display: block;
    margin-top: -67px;
}

@media screen and (max-width: 980px) {
    .eraf .media-wrapper {
        height: 130px;
    }
}

@media screen and (max-width: 900px) {
    .eraf .media-wrapper {
        height: 120px;
    }
}

@media screen and (max-width: 800px) {
    .eraf .media-wrapper {
        height: 114px;
    }
}

@media screen and (max-width: 768px) {
    .seo-cities .seo-cities-list ul {
        flex: 1 1 calc(50% - 20px);
    }

    .eraf .media-wrapper {
        height: 108px;
    }
}

@media screen and (max-width: 720px) {
    .eraf .media-wrapper {
        height: 100px;
    }
}

@media (max-width: 700px) {
    .vz-canvas .ellipse_black {
        display: none;
    }
}

@media screen and (max-width: 680px) {
    .eraf .media-wrapper {
        height: 100px;
    }
    .seo-text__text {
        font-size: 14px;
        line-height: 120%;
    }
}

@media screen and (max-width: 640px) {
    .eraf .media-wrapper {
        height: 99px;
    }

    .eraf>div {
        width: 89%;
    }
}

@media screen and (max-width: 575px) {
    .eraf .media-wrapper {
        height: 90px;
    }
}

@media screen and (max-width: 540px) {
    .eraf .media-wrapper {
        height: 84px;
    }

    .eraf>div {
        margin: 0 auto 30px;
    }
}

.cart-delivery-courier__row input.error {
    border: 3px solid red !important
}

.cart-data-page__input input.error {
    border: 3px solid red !important
}

.pt-3{
    padding-top: 10px;
}

.pt-4{
    padding-top: 15px;
}

.pt-5{
    padding-top: 20px;
}

.mb-0{
    margin-bottom: 0px!important;
}

.mb-2{
    margin-bottom: 5px!important;
}

.mb-3{
    margin-bottom: 10px!important;
}

.mb-4{
    margin-bottom: 15px!important;
}

.mb-5{
    margin-bottom: 20px!important;
}

.mb-6{
    margin-bottom: 30px!important;
}

.price_label{
    position: relative;
    font-size: 9px;
    display: inline;
    line-height: 9px;
    text-transform: uppercase;
    font-weight: 900;
    margin-left: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    /*z-index: 99;*/
    color: #fff;
    top: 6px;
}

.price_label:before {
    content: '';
    width: 0;
    height: 0;
    left: -7px;
    position: absolute;
    top: 3px;
    border-top: 3px solid transparent!important;
    border-bottom: 4px solid transparent!important;
    border-right-width: 4px;
    border-style: solid;
    border-right-color: inherit;
    border-left-color: transparent!important;
}

.icon_hit{
    background-color: #db2929;
}

.border-icon_hit {
    border-color: #dc3545!important;
}

.icon_super_deal{
    background-color: #db2929;
}

.border-icon_super_deal {
    border-color: #dc3545!important;
}


.icon_top{
    background-color: #db2929;
}

.border-icon_top {
    border-color: #dc3545!important;
}

.icon_sale{
    background-color: #db2929;
}

.border-icon_sale {
    border-color: #dc3545!important;
}

.box-list .kviz-radio span{
    white-space: inherit;
}

.slider_hb_white{
    color: white!important;
}

.slider_hb_white a{
    color: white!important;
}

@media only screen and (max-width: 525px) {
    .slider_hb_white{
        color: black!important;
    }

    .slider_hb_white a{
        color: black!important;
    }

}

.canvas_title_mobile_css{
    padding-top: 20px!important;
    padding-bottom: 13px!important;
}

@media only screen and (max-width: 700px) {
    .canvas_mobile_css{
        display: none!important;
    }

    .canvas_title_mobile_css{
        margin-top: 20px!important;
        padding-top: 0px!important;
        padding-bottom: 0px!important;
    }
}

.hb_info_link {
    text-decoration: underline;
}

.hb_info_link a:hover{
    text-decoration: none;
    color: #7d7d7d;
}


@media (min-width: 2200px) {
    .lgTop.ellipse_black.ellipse {
        top: -100px;
    }
}

@media only screen and (max-width: 524px) {
    .portrait__screen .portraits-title {
        padding-top: 20px;
        font-size: 31px!important;
        line-height: 37px!important;
        max-width: 250px!important;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Контейнер для строки */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #ffead7;
    padding: 10px 0;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    z-index: 10;
    min-height: 47px;
    position: relative;
}

.marquee-inner {
display: flex;
animation: scroll var(--animation-duration, 60s) linear infinite;
}

.marquee-text {
font-size: 18px;
color: #333;
font-weight: bold;
margin-right: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.image-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .image-row img {
    width: 100%;
    max-width: calc(50% - 10px) !important;
    height: auto;
    flex: 1 1 auto;

  }

  @media (max-width: 768px) {
    .image-row img {
      max-width: 100%!important;
    }
  }

  @media (max-width: 560px) {
        .portraits-gift {
            display: none!important;
        }
    }

    .canvas-x-scroll{
        display: inline-flex!important;
    }

    .canvas-x-scroll-inline-flex{
        overflow-x: auto;
        margin: 16px 0 25px;
        padding: 0;
    }

    .about__screen-simpson .portrait-list__item.top-item_hide {
        display: none;
    }

    .hb_popup_coupon_t4 .coupon-code{
        color: white;
        text-decoration: none;
        text-shadow: 0 0 0;
        padding: 3%;
        display: inline-block;
        border: 3px solid white;
        border-radius: 7px;
        font-size: calc(24px + 1vh);
        font-weight: 700;
    }

    .coupon-code::selection {
        background: #d05a2b!important
    }

    .coupon-code::-moz-selection {
        background: #d05a2b!important
    }

    .article-block :is(h1, h2, h3) {
        margin-top: 0;
    }

    .article-block :is(h1, h2, h3) ~ :is(h1, h2, h3) {
        margin-top: 30px;
    }

    .article-block ol,
    .article-block ul,
    .article-block li {
        margin-left: 15px;
    }

    @media (max-width: 768px) {
        .article-block :is(h1, h2, h3) ~ :is(h1, h2, h3) {
            margin-top: 20px;
        }
    }


/* Сброс стандартного маркера для summary */
summary::-webkit-details-marker {
    display: none;
}
summary::marker {
    display: none;
}



/* Если нужно сохранить остальную стилизацию для .faq-item, можно добавить: */
.faq-item {
    border-bottom: 1px solid #fbf2ea;
    padding: 18px 0;
    /* дополнительные ваши стили */
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s ease, opacity 1s ease;
    padding-top: 8px;
    padding-left: 56px;
    font-size: 16px;
  }

  /* Состояние при открытом элементе details */
  details[open] .faq-body {
    max-height: 600px;
    opacity: 1;
  }

details[open] .faq-icon {
    background: linear-gradient(90deg, #fc8c5f 0, #fa7846 100%), #fff;
    box-shadow: 0 2px 0 #e87145;
}

details[open] .faq-icon::after {
    transform: rotate(90deg);
    background-color: #fff;
}

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

.cart-payments-page__item--img img{
    width: 70% !important;
}
.cart-payments-page__item--img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.portrait-about__title {
    text-transform: uppercase;
    font-family: 'Trajan Pro 3';
    font-weight: 400;
    font-size: 45px;
    line-height: 120%;
    letter-spacing: -3%;
    text-align: center;
    color: #1E2533;
}
.portrait-about__title span {
    color: #FA7846;
}
.portrait-about__subtitle {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    width: 100%;
    text-align: center;
}
.how-create__item-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Trajan Pro 3';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 26px;
    leading-trim: NONE;
    line-height: 27px;
    letter-spacing: -3%;
    color: #1E2533;
    text-transform: uppercase;
    margin-left: -45px;
}
.how-create__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.how-create__item-text,.how-create__item-li {
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 27px;
    letter-spacing: -3%;
    margin-bottom: 20px;
    color: #1E2533;
}
.how-create__item-text span,.how-create__item-li span {
    color: #FA7846;
}
.text-block {
    position: relative;
}
.text-block::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(250, 120, 70, 0.2) 0%,
        rgba(250, 120, 70, 0.1) 30%,
        white 60%,
        white 100%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.how-create__item-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.reverse-block .how-create__item-left {
    justify-content: flex-end;
}
.how-create__item-right {
    position: relative;
}
.how-create__item-arrow {
    position: absolute;
    right: -50px;
    bottom: 30px;
}
.how-create__item-li {
    position: relative;
}
.how-create__item-li svg {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}
.portrait__images {
    background: rgba(251, 242, 234, 1);
}
.portrait__images .portrait-about__title, .portrait__faq-content--left .portrait-about__title{
    text-align: left;
}
.portrait__faq-content--left .portrait-about__title {
    margin-top: 0;
}
.portrait__images-content {
    margin: 60px 0;
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.portrait__images-examples--tab {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    row-gap: 50px;
}
.portrait__images-sidebar--item {
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    color: rgba(30, 37, 51, 1);
    margin-bottom: 30px;
}
.portrait__images-sidebar--item.active{
    text-decoration: underline;
    color: rgba(250, 120, 70, 1);
}
.portrait__images-examples--item {
    position: relative;
    min-height: 450px;
}
.portrait__images-examples--item .item-description {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.portrait__images-examples--background {
    position: absolute;
    inset: 0; /* заменяет top/right/bottom/left: 0 */
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(30, 37, 51, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease;
    pointer-events: none; /* чтобы блок не мешал клику, пока невидим */
    border-radius: 8px;
}
.portrait__images-examples--item:hover .portrait__images-examples--background {
    opacity: 1;
    background: rgba(30, 37, 51, 0.8);
    pointer-events: all;
}
.portrait__images-examples--btn {
    width: max-content;
    font: 700 16px Inter, sans-serif;
    box-shadow: 0 18.49px 46.22px -4.62px rgba(250, 120, 70, .25),
    0 2.77px 0 #e87145;
    cursor: pointer;
    background: linear-gradient(90deg, #fc8c5f 0, #fa7846 100%);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.portrait__images-examples--item:hover .portrait__images-examples--btn {
    transform: translateY(0);
    opacity: 1;
}
.portrait__images-bg {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("/public/img/portrait-bg-1.png") no-repeat center/cover;
    clip-path: ellipse(100% 95% at 50% 100%);
    overflow: hidden;
}
.portrait__examples .portrait__images-examples--tab {
    grid-template-columns: repeat(4, 1fr);
}
.portrait__examples {
    margin: 130px 0;
}
.portrait__video {
    background-color: #1E2533;
    padding: 30px 0;
}
.portrait__present {
    position: relative;
    background-color: #F9EEE9;
    min-height: 914px;
}
.portrait__present-img {
    position: absolute;
    top: 0;
    right: 0;
}
.portrait__present-text {
    min-height: 100%;
    display: flex;
    width: 35%;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.portrait__present-text .portrait-about__title {
    text-align: left;
}
.portrait__present-text .portrait__images-examples--btn, .portrait__faq-content--whatsapp .portrait__images-examples--btn {
    opacity: 1;
}
.portrait__present-content {
    min-height: 100%;
}
.portrait__present .container {
    min-height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.portrait__present-text--description {
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 27px;
    letter-spacing: -3%;
    margin-bottom: 20px;
}
.portrait__present-text--description span {
    color: #FA7846;
}
.portrait__faq-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin: 130px 0;
}
.portrait__faq-content--whatsapp {
    background-color: #FBF2EA;
    border-radius: 8px;
    padding: 8px; margin-top: 120px;
}
.portrait__faq-content--whatsapp_bg {
    background-color: #FBF2EA;
    border-radius: 8px;
    border: 1.5px solid #ffffff;
    padding: 25px 22px;
}
.portrait__faq-content--title {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 26px;
    letter-spacing: -2%;
    color: #1E2533;
}
.portrait__faq-content--text {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    color: #1E2533;
    margin: 10px 0 20px 0;
}
.portrait__faq-question {
    padding: 24px 12px;
    border-top: 1px solid #FBF2EA;
}
.portrait__faq-question:last-child {
    border-bottom: 1px solid #FBF2EA;
}
.portrait__faq-question--title {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 26px;
    letter-spacing: -2%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.portrait__faq-question--title .minus {
    width: 0;
    height: 0;
}
.portrait__faq-question.active .minus {
    width: 25px;
    height: 25px;
}
.portrait__faq-question .plus {
    margin-right: 15px;
    width: 25px;
    height: 25px;
}
.portrait__faq-question.active .plus {
    width: 0;
    height: 0;
}
.portrait__faq-question.active .portrait__faq-question--content {
    display: block;
}
.portrait__faq-question--title:hover {
    cursor: pointer;

}
.portrait__faq-question--content {
    display: none;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    padding: 12px 38px;

}
.portrait__video-content--title {
    text-transform: uppercase;
    font-family: Trajan Pro 3;
    font-weight: 400;
    font-size: 45px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -3%;
    color: #ffffff;
}
.portrait__video-content--text {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 27px;
    letter-spacing: -3%;
    color: #ffffff;
}
.portrait__video-content--text span {
    color: #FA7846;
}
.portrait__video-content--title span {
    color: #FA7846;
}
.portrait__video-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.portrait__video .container {
    padding-bottom: 0;
}
.portrait__video {
    padding-bottom: 0;
}
.examples-portrait__slider .slick-list .slick-track {
    gap: 20px;
}
.portrait__video-content--left {
    display: flex;
    position: relative;
}
.portrait__video-content--left svg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease !important;
}
.portrait__video-content--left svg:hover {
    transition: all .3s ease !important;
    cursor: pointer;
    scale: 1.05;
}


.cart-payments-page__item--img img{
    width: 70% !important;
}
.cart-payments-page__item--img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
}

.video-modal.active {
    display: flex;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
}

.video-modal__content {
    position: relative;
    z-index: 10;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    width: 800px;
    height: 400px;
}

.video-modal__content video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.video-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.video-close-btn:hover {
    background: rgba(255,255,255,0.4);
}

.video-open-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.video-open-btn img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.video-open-btn:hover img {
    transform: scale(1.1);
}

@media (max-width: 1100px) {
    .video-modal__content {
        width: 600px;
        height: 300px;
    }
}
@media (max-width: 768px) {
    .video-modal__content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }

    .video-close-btn {
        top: 15px;
        right: 15px;
        font-size: 36px;
    }
}

/* Fixed header after scroll */
.vz-art.vz-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    box-shadow: 0 8px 24px rgba(30, 37, 51, 0.08);
}

.vz-art.vz-header.is-hidden {
    display: none;
}

.vz-art.menu {
    position: fixed;
    top: var(--header-offset, 120px);
}

.gallery-client-upload {
    margin-top: 12px;
    margin-bottom: 12px;
}

.gallery-client-upload__label {
    background-color: #ffffff;
    box-shadow: 4px 4px 20px rgba(30, 37, 51, 0.08);
}

.gallery-client-upload__label .gallery-client-photo-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.gallery-client-upload__label .gallery-photo-clear {
    cursor: pointer;
}

