:root {
    --bg-page: #fafafa;
    --bg-section: #ffffff;
    --bg-soft: #f4f4f4;
    --bg-accent: #f1b55b;

    --text-primary: #111;
    --text-secondary: #555;
    --text-muted: #7a7a7a;

    --brand-gold: #f1b55b;
    --brand-gold-dark: #d89c3f;
    --brand-gold-soft: rgba(241,181,91,0.15);

    --line-soft: rgba(0,0,0,0.25);
    --line-xsoft: rgba(0,0,0,0.06);

    --shadow-soft: rgba(0,0,0,0.08);
    --overlay-light: rgba(255,255,255,0.85);

    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-15: 120px;
}
.img-responsive{
    width:auto;height:auto;max-width:100%;
}
body {
    color: var(--text-secondary);
}
body:not(#index) {
    background-color: var(--bg-page);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}
.h2, h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
}
main {
    min-height: calc(100vh - 537px);
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.breadcrumb__wrapper {
    background-color: var(--bg-soft);
}
.breadcrumb{
    font-size: 0.75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}
.header-bottom .navbar-brand {
    max-width: 150px;
}
.header a:not(.dropdown-item):not(.btn):hover,
.header a:not(.dropdown-item):not(.btn):hover i {
    color: var(--brand-gold-dark);
}
.carousel .caption-description p {
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
#category #left-column {
    display: none;
}
#category #content-wrapper {
    width: 100%;
}
.product-miniature .card {
    height: var(--bs-card-height);
}
.product-miniature .product-miniature__infos {
    background: var(--bg-section);
    padding: var(--space-4);
    border-radius: 2px;
    box-shadow: 0 8px 24px var(--shadow-soft);
}
.product-miniature .product-miniature__title {
    background: white;
    color: var(--brand-gold);
}
.header-block__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-left: .5em;
    transition: transform .2s ease, opacity .2s ease;
    transform: scale(0);
    opacity: 0;
}
.header-block__badge:not(:empty) {
    transform: scale(1);
    opacity: 1;
}
.header-block--active .header-block__title {
    font-weight: 500;
}
.header-block--active .header-block__badge {
    opacity: 1;
    transform: scale(1);
}

#language-selector {
    padding: 5px 9px;
}
.language-selector__wrapper select {
    background-image: none;
}
.offcanvas.offcanvas-start {
    background: rgba(0, 0, 0, 0.63);
    width: 100%;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(6px);
}
.main-menu__mobile {
    display: flex;
}
.main-menu__mobile .menu {
    max-width: 900px;
    margin: auto;
}
.main-menu__mobile .menu a {
    font-size: clamp(3rem, 5vw, 4rem);
    font-family: 'Cormorant Garamond',serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff!important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 0 1px rgba(0,0,0,0.8);
}
.gradient-text {
    background: linear-gradient( 90deg, #f1b55b 0%, #e28a3b 50%, #c56a2d 100% );
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.py--120 {
    padding-top: clamp(60px, 10vw, 120px);
    padding-bottom: clamp(60px, 10vw, 120px);
}
.content-hp .intro p {
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    text-align: center;
}
.hero {
    position: relative;
    padding: var(--space-15) 0;
    overflow: hidden;
    background: radial-gradient(circle at 85% 20%, rgba(241,181,91,0.06), transparent 60%);
}
.hero::after {
    content: "15";
    position: absolute;
    right: 5%;
    top: 10%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 380px;
    font-weight: 600;
    color: #000;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}
.hero-container {
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: var(--space-8);
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--text-primary);
}
.hero-meta {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.6;
    line-height: 2;
}
.hero-divider {
    margin: var(--space-8) 0;
    height: 1px;
    background: rgba(0,0,0,0.08);
}
.hero-description {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}
.portfolio-section {
    padding-top: clamp(80px, 10vw, 120px);
    padding-bottom: clamp(80px, 10vw, 160px);
    background-color: #faf9f6;
}
.portfolio-head {
    max-width: 480px;
    margin-bottom: var(--space-8);
}
.portfolio-head h2 {
    margin-bottom: var(--space-3);
}
.portfolio-head p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 5vw, 64px);
}
.portfolio-item {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 24px);
}
.portfolio-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eae8e4;
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: transform .6s ease, opacity .6s ease;
}
.portfolio-item:hover img {
    transform: scale(1.02);
    opacity: .9;
}
.portfolio-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.portfolio-type {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}
.portfolio-meta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.3;
    margin: 0;
}
.portfolio-meta p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}
.portfolio-cta {
    margin-top: var(--space-8);
    text-align: center;
}
.btn {
    border-radius: 0;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding:16px clamp(28px, 4vw, 40px);
    transition: ease-out all .2s;
    font-size: 12px;
}
.btn-primary {
    background: var(--text-primary);
    border: none;
    color: white;
}
.btn-primary:hover {
    background: #111;
    opacity: .75;
}
.btn-outline-primary {
    border: 1px solid var(--line-soft);
    color: var(--text-primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: #000;
    color: #fff;
    border-color: #111;
}
.btn-outline {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    border: 1px solid rgba(0,0,0,.25);
    transition: all .3s ease;
}
.btn-outline:hover {
    background: #000;
    color: #fff;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: var(--text-muted);
    color: rgba(255,255,255,0.85);
    opacity: .4;
    cursor: not-allowed;
}
.btn a {
    color: var(--text-primary);
}
.btn-check:checked + .btn,
.btn.active, .btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    background-color: #555;
    border-color: unset;
}

.cms-id-6 #content-wrapper .page-header {
    display: none;
}
.our-work {
    padding-bottom: 30px;
}
.cms-id-2 .page-header,
.work-intro {
    max-width: 490px;
    margin: auto;
    margin-bottom: 0!important;
    padding-block: clamp(70px, 12vw, 160px);
    padding-top: clamp(20px, 5vw, 60px);
}
.cms-id-2 .page-header h1,
.work-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: var(--space-3);
}
.cms-id-2 .page-header p,
.work-intro p {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.8;
    color: var(--text-secondary);
}
.grid-lg-repeat-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 48px);
    padding-inline: clamp(24px, 6vw, 80px);
}
.work-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.work-item {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e5e3df;
}
.work-overlay {
    position: absolute;
    inset: 0;
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.1), transparent);
    opacity: 0;
    transition: opacity .4s ease;
}
.work-type {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: var(--space-1);
}

.work-overlay .h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #fff;
    margin: 0;
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, opacity .6s ease;
}
.work-item:hover img {
    transform: scale(1.03);
}
.work-item:hover .work-overlay {
    opacity: 1;
}
.work-cta {
    text-align: center;
    margin-top: clamp(96px, 12vw, 160px);
}
.block-category h1 {
    font-family: 'Cormorant Garamond',serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3rem);
}
#products {
    margin-top: clamp(3rem, 10vw, 8rem);
}
.product-miniature .product-miniature__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.25s ease;
    background-color: transparent;
}
.product-miniature .product-miniature__title span {
    font-size: 0.85rem;
    padding-left: 10px;
    opacity: .65;
}
.product-miniature .product-miniature__title:hover {
    color: var(--brand-gold-dark);
}
.product__description-short p {
    max-width: 100%;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: var(--space-2);
}
.js-product-miniature[data-id-product="42"] .product__description-short p {
    max-width: 100%;
}
.product-miniature .product-miniature__price {
    font-weight: 500;
}
.offcanvas-header .btn-close {
    background-image: none;
    padding-right: 30px;
}
.offcanvas-header .material-icons {
    color: white;
    font-size: 38px;
}
.service-hero h1 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: var(--space-3);
}
.service-subtitle {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: var(--text-secondary);
}
.service-philosophy {
    margin: clamp(50px, 10vw, 100px) 0;
    line-height: 1.9;
}
.service-philosophy p {
    font-size: 16px;
    max-width: 520px;
    color: var(--text-secondary);
}
.service-final-cta {
    margin-bottom: clamp(3rem, 10vw, 10rem);
    margin-top: clamp(3rem, 10vw, 6.25rem);
}
.service-final-cta .btn {
    font-size: 14px;
    margin-top: 20px;
}
.product-flags,
.product__tax-info,
.quantity-button,
.wishlist-button-add {
    display: none!important;
}
.accordion-flush > .accordion-item > .accordion-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
    background: transparent;
}
.accordion-flush > .accordion-item {
    background: transparent;
}
.accordion-header .accordion-button {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(20px, 3vw, 30px) !important;
    line-height: 1.2;
    margin-bottom: var(--space-3);
    color: black;
}
hr {
    margin: var(--space-8) 0;
}
.faq-category-wrapper ul,
#product-description ul,
.page-cms .wrapper ul:not(.how-steps) {
    list-style: none;
    padding-left: 0;
    margin-top: var(--space-3);
}
.faq-category-wrapper ul li,
#product-description ul li,
.page-cms .wrapper ul:not(.how-steps) li {
    position: relative;
    padding-left: 28px;
    margin-bottom: var(--space-2);
}
.faq-category-wrapper ul li:before,
#product-description ul li:before,
.page-cms .wrapper ul:not(.how-steps) li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 12px;
    height: 1px;
    background: var(--text-muted);
    opacity: 0.6;
}
.service-section {
    max-width: 900px;
    margin: clamp(60px, 10vw, 120px) auto;
}
.service-icon-list::marker {
    color: currentColor;
}
.block-category #category-description {
    padding: var(--space-6) 0 var(--space-2);
    /*display: grid;
    grid-template-columns: 1.5fr 0.5fr;*/
    display: block;
    gap: var(--space-8);
}
.block-category #category-description p {
    max-width: 100%;
}
.how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 720px;
}
.how-steps li {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}
.step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-primary);
    margin-top: .6em;
    opacity: .35;
}
.how-steps strong {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
}
.how-steps p {
    color: var(--text-secondary);
    max-width: 520px;
}
.how-note {
    font-size: 13px!important;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: .6;
    line-height: 2;
    color: var(--text-muted);
}
.bc-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .3s ease, transform .3s ease;
}
.bc-icon--sm {
    width: 20px;
    height: 20px;
}
.bc-icon--lg {
    width: 28px;
    height: 28px;
}
.header a:hover .bc-icon {
    opacity: .65;
}
.bc-lang {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.bc-lang__item {
    text-decoration: none;
    color: inherit;
    opacity: .4;
    position: relative;
    transition: opacity .2s ease;
}
.bc-lang__item:hover {
    opacity: .7;
}
.bc-lang__item.is-active {
    opacity: 1;
}
.bc-lang__item:not(:last-child)::after {
    content: "·";
    margin-left: 14px;
    opacity: .3;
}
#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    background-color: var(--text-primary);
    color: white;
    border: none;
    opacity: .8;
    transition: opacity .25s ease
}
#backToTop:hover {
    opacity: 1;
}
#bc-map {
    width: 100%;
    height: clamp(320px, 50vh, 520px);
    border-radius: 12px;
    overflow: hidden;
}
#contact #left-column {
    width: 100%;
    padding: 0;
}
/*#contact #content-wrapper {
    display: none;
}*/
.bc-map-infowindow {
    font-family: system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}
.bc-map-infowindow a {
    display: inline-block;
    margin-top: 6px;
    color: #f1b55b;
    font-weight: 600;
    text-decoration: none;
}
.bc-map-infowindow a:hover {
    text-decoration: underline;
}
.page-header .h4 {
    font-family: 'Cormorant Garamond',serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3rem);
}
.footer {
    background: #0f0f0f;
    color: #e5e5e5;
}
.footer .footer__main {
    background-color: transparent;
}
.bc-footer-brand {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    padding: clamp(40px, 10vw, 120px) 0;
}
.bc-footer-brand h3 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: var(--space-3);
}
.bc-footer-brand p {
    color: #9a9a9a;
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: var(--space-5);
}
.footer__block {
    width: 100%;
}
.footer .footer__block__content {
    padding-top: 0;
}
.footer .footer__block__content-list a {
    color: #777;
    text-decoration: none;
    width: fit-content;
    transition: color .3s ease;
    margin-bottom: 10px;
}
.footer .footer__block__content-list a:hover {
    color: var(--brand-gold-dark);
}
.bc-footer-contact h4 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 22px;
    margin-bottom: var(--space-3);
    color: white;
}
.bc-footer-contact p {
    color: #9a9a9a;
    line-height: 1.7;
    margin-bottom: var(--space-4);
}
.bc-footer-email,
.bc-footer-phone {
    display: block;
    color: #e5e5e5;
    text-decoration: none;
    margin-bottom: 12px;
}
.bc-footer-email:hover,
.bc-footer-phone:hover {
    color: var(--brand-gold-dark);
}
.bc-footer-map {
    display: inline-block;
    margin-top: var(--space-4);
    font-size: 14px;
    letter-spacing: .04em;
    color: #aaa;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 4px;
}
.bc-footer-map:hover {
    color: var(--brand-gold-dark);
    border-color: var(--brand-gold-dark);
}
.footer .copyright {
    padding: var(--space-3) 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: #777;
    text-align: left;
}
.bc-contact-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}
.bc-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    opacity: .6;
    margin-bottom: var(--space-3);
}
.bc-contact-inner h1 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.15;
    margin-bottom: var(--space-4);
}
.bc-contact-inner p {
    max-width: 520px;
    font-size: 16px;
    opacity: .75;
}
.bc-contact-info {
    padding: 100px 0;
}
.contact__details {
    margin-bottom: 50px;
    padding: 0 var(--space-5);
    display: grid;
    align-items: baseline;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
.contact__details .contact__title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 22px;
    margin-bottom: var(--space-3);
}
.contact__item h3 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 20px;
    margin-bottom: var(--space-2);
}
.contact__item a,
.contact__item p {
    color: var(--brand-gold);
    font-size: 16px;
    text-decoration: none;
}
.contact__item span,
.contact__item .contact__info {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}
.bc-contact-closing {
    padding: var(--space-15) var(--space-5);
    text-align: center;
}

.bc-contact-closing p {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(16px, 2vw, 20px);
    opacity: .7;
}
.header .header-block a {
    text-transform: uppercase;
    font-size: 13px;
}
.header-bottom .navbar-brand .logo {
    padding: 13px 10px;
    max-width: 150px;
}
.blockcart-modal .modal-dialog {
    margin: auto 0 auto auto;
    max-width: 550px;
    height: 100vh;
    overflow: auto;
}
.modal.fade .modal-dialog {
    /*transform: translateX(100%);*/
}
.blockcart-modal .modal-content {
    height: 100%;
    border-radius: 0;
    padding: var(--space-5);
}
.blockcart-modal .modal-body .border-1 {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid #eee;
}
.blockcart-modal .modal-title {
    font-size: 18px;
    font-weight: 500;
}
.blockcart-modal__summery .product-tax,
.blockcart-modal__summery .product-total {
    font-weight: 500;
}
.blockcart-modal__summery .product-total .value {
    font-size: 20px;
    font-weight: 500;
}
.blockcart-modal__summery p {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 400;
}
.blockcart-modal__total .label {
    display: block;
    color: #7a7a7a;
    margin-bottom: 1rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.blockcart-modal__total .value {
    font-size: 26px;
    font-weight: 700;
}
.blockcart-modal__property span {
    font-weight: 500;
}
.d-md-flex {
    padding: 0;
}
.product-miniature .product-miniature__variants {
    padding-top: 1rem;
}
.product-miniature .product-miniature__variants .variant-links-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #999;
}
.product-miniature .product-miniature__variants .variant-links > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    white-space: nowrap;
}
.product-miniature .product-miniature__variants .variant-links > a .variant-content {
    display: flex;
    align-items: center;
    min-width: 0;
}
.product-miniature .product-miniature__variants .variant-links > a .variant-radio {
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: border-color 0.2s ease;
}
.product-miniature .product-miniature__variants .variant-links > a .variant-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #111;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease, background 0.2s ease;
}
.product-miniature .product-miniature__variants .variant-links > a:hover .variant-radio {
    border-color: #111;
}
.product-miniature .product-miniature__variants .variant-links > a.active .variant-radio,
.product-miniature .product-miniature__variants .variant-links > a.is-selected .variant-radio {
    border-color: #fff;
}
.product-miniature .product-miniature__variants .variant-links > a.active .variant-radio::after,
.product-miniature .product-miniature__variants .variant-links > a.is-selected .variant-radio::after {
    background: #fff;
    transform: translate(-50%, -50%) scale(1);
}
.product-miniature .product-miniature__variants .variant-links > a .variant-label {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ---- Module toggles (Not included / Include, etc.) ---- */
.js-product-miniature[data-product-type="module"] .variant-links {
    align-items: stretch;
}
.js-product-miniature[data-product-type="module"] .variant-links > a {
    flex: 1 1 200px;
    min-width: 180px;
    min-height: 100%;
}
.js-product-miniature[data-product-type="module"] .variant-links > a .variant-price {
    margin-left: 12px;
    text-align: right;
}
article[data-product-type="type"] .product-miniature__variants .variant-links > a .variant-label {
    margin-bottom: 8px;
}
.product-miniature .product-miniature__variants .variant-links > a:hover {
    border-color: #111;
    background: #f7f7f7;
}
.product-miniature .product-miniature__variants .variant-links > a.active,
.product-miniature .product-miniature__variants .variant-links > a.is-selected {
    background: #111;
    color: #fff;
    border-color: #111;
}
.product-miniature.is-disabled {
    opacity: .35;
    pointer-events: none;
    transition: opacity .3s ease;
}
.variant-item.active {
    background: #000;
    color: #fff;
    border-color: #000;
}
@keyframes variant-spin {
    to { transform: rotate(360deg); }
}
@keyframes variant-approved-in {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
}
.variant-item {
    position: relative;
    overflow: hidden;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

/* ---- Shared overlay (blur backdrop) ---- */
.variant-item.is-loading::before,
.variant-item.is-added::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

/* ---- Text blur ---- */
.variant-item.is-loading > span,
.variant-item.is-added > span {
    filter: blur(3px);
    transition: filter .15s ease;
}

/* ---- Loading spinner ---- */
.variant-item.is-loading {
    pointer-events: none;
}
.variant-item.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    margin-left: -11px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, .15);
    border-top-color: #111;
    animation: variant-spin .55s linear infinite;
    z-index: 2;
}
.variant-item.is-selected.is-loading::after,
.variant-item.active.is-loading::after {
    border-color: rgba(255, 255, 255, .25);
    border-top-color: #fff;
}

/* ---- Approved stamp ---- */
.variant-item.is-added::after {
    content: '';
    position: absolute;
    inset: 5% 0;
    background: url('../img/bc-approved.png') center / auto 90% no-repeat;
    animation: variant-approved-in .3s cubic-bezier(.175, .885, .32, 1.275);
    z-index: 2;
}
.variant-item.is-selected.is-added::after,
.variant-item.active.is-added::after {
    filter: invert(1);
}
/* ------- Quotation Recap ------- */
.quotation-recap {
    max-width: 100%;
    margin: 40px auto 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    font-size: 14px;
}

.qr-header {
    text-align: center;
    padding: 28px 32px 24px;
    background: #111;
    color: #fff;
}

.qr-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
}

.qr-big-total {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
}

.qr-body {
    padding: 24px 32px 28px;
}

.qr-breakdown-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 14px;
}

.qr-lines {
    margin-bottom: 8px;
}

.qr-line {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
    color: #444;
}

.qr-group {
    margin-bottom: 18px;
}

.qr-group:last-child {
    margin-bottom: 0;
}

.qr-group-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.qr-group-subtotal {
    /*border-top: 1px dashed #ddd;
    padding-top: 8px;
    margin-top: 4px;*/
    margin-bottom: 0;
    font-weight: 600;
    color: #333;
}

.qr-line-name,
.qr-summary-label {
    white-space: nowrap;
    flex-shrink: 0;
}

.qr-line-dots,
.qr-summary-dots {
    flex: 1;
    border-bottom: 2px dotted #d0d0d0;
    margin: 0 8px 4px;
}

.qr-line-price {
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 600;
    color: #111;
}

.qr-summary-line {
    display: flex;
    align-items: baseline;
    /*border-top: 1px solid #eee;*/
    padding-top: 12px;
    margin-top: 4px;
    font-weight: 700;
    color: #111;
}

.qr-summary-price {
    white-space: nowrap;
    flex-shrink: 0;
}

.quotation-validate-bar {
    display: flex;
    justify-content: center;
    padding: 2rem 0 1rem;
}
.quotation-validate-btn {
    min-width: 220px;
    padding: .85rem 2rem;
    font-size: 1rem;
    letter-spacing: .04em;
}
.pagination-container {
    display: none;
}
.js-product-miniature {
    margin-bottom: var(--space-10);
}
article[data-product-type="module"] {
    scroll-margin-top: 200px;
}
#content-wrapper {
    padding-bottom: clamp(3rem, 10vw, 7rem);
}
#index #content-wrapper {
    padding-bottom: 0;
}
#config-confirm-bar {
    text-align: center;
    background-color: #fafafa;
}
#confirm-all {
    opacity: 1;
    visibility: visible;
    transition: all .2s;
}
#confirm-all:disabled {
    opacity: 0;
    visibility: hidden;
}
.delivery-options__list  {
    display: none;
}
.checkout__steps--current::before,
.checkout__steps--success .checkout__steps__number,
.checkout__steps--success::after,
.checkout__steps--success::before {
    background: var(--brand-gold);
}
.checkout__steps--success .checkout__steps__text {
    color: #f1b55b;
    font-size: 12px;
    font-weight: 500;
}
.checkout__steps--current .checkout__steps__text,
.checkout__steps .nav-tabs .checkout__steps--current .nav-link.active {
    font-size: 12px;
    font-weight: 600;
}
.step__title .h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}
.step__account,
.step__content,
.order-options,
.payment__list {
    margin-bottom: var(--space-8);
}
.rich-text h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    width: 47px;
    height: 47px;
    transition: all .25s ease;
}
.small_scrolled .whatsapp-button{
    opacity: 1;
    visibility: visible;
}
.whatsapp-button i {
    font-size: 25px;
    color: #111;
    opacity: .7;
    transition: all .25s ease;
}
.whatsapp-button:hover {
    transform: translateY(-3px);
    background: var(--brand-gold);
}
.whatsapp-button:hover i {
    opacity: 1;
    color: white;
}
#product .whatsapp-button {
    bottom: 80px;
}
#index .faq-section {
    padding-bottom: clamp(90px, 15vw, 180px) !important;
}
.product-miniature .product-miniature__infos__top,
.product-miniature .product-miniature__infos__bottom {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
}
.product-miniature__infos__bottom .thumbnails__container {
    display: none;
}
.product-miniature .product-miniature__infos__bottom {
    position: relative;
}
.product-miniature .product-miniature__quickview {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity linear .2s;
}
.product-miniature:hover .product-miniature__quickview {
    transform: none;
}
.product-miniature__infos__bottom:hover .product-miniature__quickview {
    opacity: 1;
}
.product-miniature .product-miniature__quickview_button {
    color: white;
}
.rich-text table > :not(caption) > * > *,
.table > :not(caption) > * > * {
    background-color: transparent;
    padding: 0;
}
.description ul {
    color: var(--text-secondary);
}
.gallery-fancybox {
    display: block;
    height: 100%;
    width: 100%;
}
.gallery-bg {
    width: 100%;
    height: 100%;
}
.checkout__steps .nav-tabs .checkout__steps--success .nav-link.active {
    font-weight: 600;
    color: var(--brand-gold-dark);
}
.step__content #myTab {
    display: none;
}
#checkout .wrapper > .container {
    padding: 60px 20px;
}
.form-label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}
.form-control,
.modal.product-comment-modal .form-control,
.modal.product-comment-modal textarea {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
    padding: 0 14px;
    font-size: 15px;
    transition: all .25s ease;
}
.form-control:focus,
.modal.product-comment-modal .form-control:focus,
.modal.product-comment-modal textarea:focus {
    border-color:#000;
    box-shadow:0 0 0 3px rgba(0,0,0,0.05);
}
.form-text {
    font-size: 12px;
    color: #8a8a8a;
    margin-top: 4px;
}
.form-check {
    min-height: 1.5rem;
    padding-left: 1.5em;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}
.form-check-input:checked {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold-soft);
}
.form-check-input:focus {
    border-color:#000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.cart-grid__right .cart-summary,
.cart-grid-right .cart-summary {
    background: var(--bg-page);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.cart-summary__products > p:first-of-type {
    font-size: 14px;
    color: var(--text-muted);
}
.cart-summary__show {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-gold-dark);
}
.cart-summary__show i {
    color: var(--brand-gold-dark);
}
.cart-grid-body .step .form-footer {
    float: right;
}
.cart-grid-body .step .form-footer {
    float: left;
}
.step .address.selected {
    border-color: var(--brand-gold);
}
.address__alias {
    font-size: 16px;
    font-weight: 500;
}
.address__content {
    font-size: 13px;
}
.btn-address {
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
    border: none;
}
.btn-address:hover {
    background: none;
    color: #111;
    opacity: .75;
}
.btn-with-icon .material-icons {
    font-size: 1rem;
}
.order-options .form-label {
    font-size: 16px;
    font-weight: 400 !important;
    margin-bottom: 20px;
}
.order-options .form-control {
    height: unset;
    padding: 14px;
}
#cart-subtotal-shipping {
    display: none;
}
.cart-summary__product__current .price {
    font-weight: 500!important;
}
.cart-grid__right .h4 {
    margin-bottom: 1rem;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb:after {
    border-color: var(--brand-gold);
}
#_desktop_cart .header-block:hover a {
    color: var(--brand-gold-dark);
}
.product-miniature .product-miniature__prices {
    display: none;
}
.product-miniature .product-miniature__infos__top {
    width: 100%;
}
.js-product-miniature[data-product-type="type"] .product-miniature__infos {
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.js-product-miniature[data-product-type="type"] .product-miniature__infos__top {
    background: #fafafa;
}
.js-product-miniature[data-product-type="type"] .variant-links > a {
    padding: 14px 25px;
    display: inline-grid;
    border-radius: 0;
    background: #fff;
    width: calc(25% - .5rem);
}
.js-product-miniature[data-id-product="23"],
.js-product-miniature[data-id-product="42"] {
    width: 100%;
}
.js-product-miniature[data-id-product="32"],
.js-product-miniature[data-id-product="33"] {
    width: 50%;
}
.js-product-miniature[data-id-product="32"] .variant-links > a,
.js-product-miniature[data-id-product="33"] .variant-links > a {
    width: calc(50% - .5rem);
}
.js-product-miniature[data-id-product="42"] .variant-links > a {
    width: calc(20% - .5rem);
}
.product-miniature .card:hover {
    filter: none;
}
.modal-dialog-scrollable .modal-content {
    max-height: 800px;
    overflow: auto;
}
.fancybox__container{
    z-index: 9999;
}
#product-description h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
#product-description p ,
#product-description ul {
    font-size: 14px;
}
#product-description p strong {
    font-weight: 500;
    color: var(--text-primary);
}
#product-description hr {
    margin: var(--space-5) 0;
}
.quickview .modal-dialog {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
}
.modal-body h3 {
    font-family: 'Cormorant Garamond',serif;
    font-weight: 600;
    margin: 2.5rem 0;
}
.open-intro {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    text-align: left;
}
.open-intro p {
    max-width: 520px;
    font-size: 16px;
    opacity: .75;
}
.bc-world-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.15;
    margin-bottom: var(--space-4);
    text-align: left;
}
#_mobile_language_selector {
    margin-bottom: 20px;
}
#_mobile_language_selector .bc-lang__item {
    opacity: .7;
}
.header a.bc-lang__item,
.main-menu__offcanvas .contact-link {
    color: white;
}
.cms-other-pages .h1 {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 33px);
    line-height: 1.2;
    margin-bottom: var(--space-8);
    color: var(--text-primary);
    text-transform: capitalize;
}
.go_to_prev,
.go_to_next {
    float:left;
    width:40px;
    height:40px;
    top:calc(50% - 20px);
    position: fixed;
    opacity: 0.7;
    cursor: pointer;
    z-index: 9999;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 20px;
    &:hover {
        opacity: 1;
    }
}
.go_to_next {
    right: 20px;
}
.go_to_prev{
    left: 20px;
}


@media (min-width: 768px) {
    .language-selector__wrapper {
        margin-bottom: 0;
    }
    .footer .copyright {
        margin-left: -15px;
        margin-right: -15px;
    }
}


@media (min-width: 1200px) {
    body:not(#index) .display-1 {
        font-size: 4rem;
    }
}


@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-meta {
        margin-top: var(--space-4);
    }
    .hero::after {
        font-size: 250px;
        right: -20px;
        top: 20px;
    }
    .portfolio-grid {
        gap: var(--space-5);
    }
    .grid-lg-repeat-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-bottom .navbar-brand .logo {
        padding-left: 0;
        padding-right: 0;
        max-width: 90px;
    }
    .product-miniature .product-miniature__infos__top {
        width: 100%;
    }
    .cart-grid__right,
    .cart-grid-right {
        margin-top: 40px;
    }
    .js-product-miniature[data-product-type="type"] .variant-links > a {
        width: calc(50% - .5rem);
    }
    .js-product-miniature[data-id-product="32"],
    .js-product-miniature[data-id-product="33"] {
        width: 100%;
    }
    .js-product-miniature[data-product-type="module"] .variant-links > a {
        flex-basis: calc(50% - .375rem);
    }
}


@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero {
        padding: var(--space-12) 0;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero::after {
        font-size: 180px;
        opacity: 0.02;
    }
    .bc-footer-brand {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer .footer__block__title {
        font-family: 'Cormorant Garamond',serif;
        font-size: 22px;
        margin-bottom: var(--space-3);
    }
    .contact__details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blockcart-modal__product {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .faq-section .container {
        max-width: 100%;
    }
    .block-category #category-description {
        display: block;
        padding: var(--space-4) 0 var(--space-3);
    }
    .product-miniature .product-miniature__infos__bottom {
        width: 100%;
    }
    .grid-lg-repeat-3 {
        padding-left: 0;
        padding-right: 0;
    }
    .js-product-miniature {
        width: 100%;
        margin-bottom: var(--space-4);
    }
    .js-product-miniature[data-product-type="type"] .variant-links > a {
        width: 100%;
    }
    .js-product-miniature[data-product-type="module"] .variant-links > a {
        flex-basis: 100%;
    }
}

@media (max-width: 575px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .grid-lg-repeat-3 {
        grid-template-columns: 1fr;
    }
    .product-miniature .product-miniature__infos__bottom {
        display: block;
    }
    .product-miniature__infos__bottom form,
    .product-miniature__infos__bottom .btn {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 500px) {
    #config-confirm-bar button {
        width: 70%;
        margin-bottom: 14px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ------- Fly-to-badge stamp ------- */
.bc-stamp-fly {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    background: url('../img/bc-approved.png') center / contain no-repeat;
    transition:
        left    .9s cubic-bezier(.4, 0, .2, 1),
        top     .9s cubic-bezier(.4, 0, .2, 1),
        width   .9s cubic-bezier(.4, 0, .2, 1),
        height  .9s cubic-bezier(.4, 0, .2, 1),
        opacity .7s ease .2s;
}

@keyframes badge-pop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.7); }
    100% { transform: scale(1); }
}
.header-block__badge.is-popping {
    animation: badge-pop .35s cubic-bezier(.175, .885, .32, 1.275);
}

/* ------- Subcategory sections ------- */
.subcategory-section {
    margin-bottom: var(--space-10, 3rem);
}
.subcategory-section__header {
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #e5e5e5;
}
.subcategory-section__title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: .02em;
    margin-bottom: .25rem;
    font-weight:bold;
    text-align:center;
}
.subcategory-section__desc {
    font-size: .875rem;
    color: #666;
    margin-bottom: 0;
}

.header-block--active .header-block__badge,
.header-top__right .currency-selector__wrapper{
    display:none!important;
}
#category .header-top__right .currency-selector__wrapper,
.header-top__right .currency-selector__wrapper.language-selector{
    display:block!important;
}
