:root {
    --black: #1C1A1B;
    --white: #FFFFFF;
    --primary: #B6A08A;
    --purple: #43343E;
    --gray: #EEEDE8;
}

/* =====================================================
   BASE TYPOGRAPHY
===================================================== */

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

p {
    margin-bottom: 0 !important;
}

a {
    text-decoration: none;
}

.sections {
    margin-bottom: 5.6875rem;
}

/* =====================================================
   CONTENT
===================================================== */

.content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.content .kicker {
    font-size: 1rem;
    font-weight: lighter;
    letter-spacing: 10%;
    text-transform: uppercase;

}

.content h2 {
    font-size: 2.5rem;
}

.content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content li {
    position: relative;
    padding-left: 2.25rem;
    font-size: 1rem;
    line-height: 1.5;
}

.content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.125rem;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath stroke='%23B6A08A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3 12a9 9 0 1 0 18.001 0A9 9 0 0 0 3 12Z'/%3E%3Cpath stroke='%23B6A08A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m9 12 2 2 4-4'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-group {
    display: flex;
    gap: .5rem;
    width: fit-content;
}

/* =====================================================
   BTNS
===================================================== */

.btn {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    width: fit-content !important;
    border-radius: 0 !important;
    align-items: center;
    height: fit-content !important;
    font-size: .875rem;
    font-weight: 500;
}

.white-btn {
    background-color: var(--white);
    color: var(--black);
}

.white-outline-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.black-btn {
    background-color: var(--black);
    color: var(--white);
}

.black-outline-btn {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.clear-btn {
    background-color: transparent;
    color: var(--white);
}

/* =====================================================
   HERO
===================================================== */

.hero-section {
    position: relative;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: oklab(22.365% 0.00758 -0.00364 / 0.4)
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.hero-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: lighter;
    letter-spacing: 10%;
    text-transform: uppercase;
    margin-bottom: 1rem !important;
}

.hero-heading {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2.5rem !important;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Hero Splide arrows --- */

.hero-arrows-container {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: flex-end;
}

#hero-splide .splide__arrows {
    display: flex;
    gap: 0.5rem;
}

#hero-splide .splide__arrow {
    position: static;
    transform: none;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    opacity: 1;
}

#hero-splide .splide__arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

#hero-splide .splide__arrow svg {
    fill: none;
    width: 1.25rem;
    height: 1.25rem;
}

.splide__arrow--prev svg {
    transform: scaleX(-1) !important;
}

/* --- Hero Progress --- */

.hero-progress-container {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-progress {
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
}

.hero-progress-bar {
    background: var(--primary);
    height: 100%;
}

/* =====================================================
   OVERVIEW
===================================================== */

.overview-section {
    position: relative;
    background-color: #3b2c35;
    padding: 8.25rem 0;
    text-align: center;
}

.overview-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/bg3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
}

.overview-section .container {
    position: relative;
    z-index: 1;
}

.overview-heading {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--white);
    max-width: 54rem;
    margin: 0 auto;
}

.reveal-word {
    opacity: 0.2;
    transition: opacity 0.1s linear;
}

.reveal-word.active {
    opacity: 1;
}

/* =====================================================
   ADVANTAGES
===================================================== */

.bg-gray {
    background-color: var(--gray);
}

.advantages-section {
    position: relative;
    padding: 6rem 0;
}

.advantages-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/bg3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.advantages-section .container {
    position: relative;
    z-index: 1;
}

.advantages-row {
    justify-content: space-between;
}

.advantages-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-icon {
    margin-bottom: 1rem !important;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.advantage-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    font-weight: lighter;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(28, 26, 27, 0.6);
    margin-bottom: 0;
}

/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.site-header:hover,
.site-header.secondary,
.site-header.search-active {
    background-color: var(--white);
}

.site-header.secondary {
    position: relative;
}

.site-header:hover .nav-left a,
.site-header:hover .nav-right a,
.site-header:hover .nav-search-btn,
.site-header:hover .nav-search-input,
.site-header.secondary .nav-left a,
.site-header.secondary .nav-right a,
.site-header.secondary .nav-search-btn,
.site-header.secondary .nav-search-input,
.site-header.search-active .nav-left a,
.site-header.search-active .nav-right a,
.site-header.search-active .nav-search-btn,
.site-header.search-active .nav-search-input {
    color: var(--black);
}

.site-header:hover .topbar-languages a.active,
.site-header.secondary .topbar-languages a.active,
.site-header.search-active .topbar-languages a.active {
    opacity: 1 !important;
}

.site-header:hover .topbar-links a,
.site-header:hover .topbar-languages a,
.site-header.secondary .topbar-links a,
.site-header.secondary .topbar-languages a,
.site-header.search-active .topbar-links a,
.site-header.search-active .topbar-languages a {
    color: var(--black) !important;
    opacity: 0.55;
}

.site-header:hover .header-main,
.site-header.secondary .header-main,
.site-header.search-active .header-main {
    border-top: 1px solid #1C1A1B1A;
    border-bottom: 1px solid #1C1A1B1A;
}

.site-header:hover .nav-logo svg,
.site-header.secondary .nav-logo svg,
.site-header.search-active .nav-logo svg {
    color: var(--black);
}

/* --- Topbar --- */

.header-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 0;
    font-weight: lighter;
}

.topbar-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.topbar-links,
.topbar-languages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .75rem;
    white-space: nowrap;
}

.topbar-links {
    gap: 2.5rem;
}

.topbar-links a,
.topbar-languages a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;

    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.topbar-links a:hover,
.topbar-languages a:hover,
.topbar-languages a.active {
    color: var(--white);
}

/* --- Main Nav --- */

.header-main {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    transition: border-top-color 0.3s ease;
}

.main-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2rem 0;
}

.nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left a,
.nav-right a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: opacity 0.2s ease, color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    opacity: 0.6;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 0 4.5rem;
    flex-shrink: 0;
}

.nav-logo svg {
    height: 4rem;
    width: auto;
    color: var(--white);
    transition: color 0.3s ease;
}

/* --- Search button --- */

.nav-search-btn {
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0;
    transition: opacity 0.2s ease, color 0.3s ease;
}

.nav-search-btn:hover {
    opacity: 0.6;
}

.nav-search-btn .ti {
    font-size: 1rem;
}

.nav-search {
    display: flex;
    align-items: center;
}

.nav-search-input {
    background: none;
    border: none;
    border-bottom: 1px solid currentColor;
    color: inherit;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    outline: none;
    padding: 0.125rem 0;
    width: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: width 0.35s ease, opacity 0.3s ease, margin-left 0.35s ease;
}

.nav-search-input::placeholder {
    opacity: 0.5;
}

.nav-search.is-open .nav-search-label {
    display: none;
}

.nav-search.is-open .nav-search-input {
    width: 10rem;
    opacity: 0.8;
    pointer-events: auto;
    margin-left: 0.5rem;
}

/* --- Mobile toggle --- */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    gap: 0.3125rem;
    margin-left: auto;
}

.nav-toggle-bar {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--white);
    border-radius: 0.0625rem;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(0.4375rem) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-0.4375rem) rotate(-45deg);
}

.site-header.secondary .nav-toggle-bar {
    background-color: var(--black);
}

.site-header.secondary .nav-logo svg {
    color: var(--black);
}

/* --- Mobile overlay --- */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1049;
}

.mobile-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

/* --- Mobile menu --- */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 100%;
    background-color: var(--black);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

/* --- Mobile menu header (logo + close) --- */

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-menu-logo svg {
    color: var(--white);
    display: block;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

/* --- Mobile nav links --- */

.mobile-links,
.mobile-toplinks,
.mobile-languages {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-links {
    padding: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}



.mobile-links a {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-family: 'DM Serif Display', serif;
    font-size: 1.375rem;
    font-weight: 300;
    padding: 0.9rem 1.5rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-links a:hover {
    color: var(--primary);
    padding-left: 1.875rem;
}

/* --- Mobile footer (toplinks + languages) --- */

.mobile-menu-footer {
    padding: 1.25rem 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-toplinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

.mobile-toplinks li {
    border-bottom: none;
}

.mobile-toplinks li:nth-child(odd) {
    border-right: none;
}

.mobile-toplinks a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0;
    transition: color 0.2s ease;
}

.mobile-toplinks a:hover {
    color: var(--white);
}

.mobile-languages {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    margin-top: 0.75rem;
    padding-top: 0;
    border-top: none;
}

.mobile-languages li {
    flex: 1;
}

.mobile-languages li+li {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-languages a {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.875rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}



.history .content p {
    text-align: center;
}

/* --- PLYR VIDEO PLAYER OVERRIDES --- */
.plyr {
    --plyr-color-main: var(--primary);
}

.plyr--video .plyr__control--overlaid,
.plyr--video .plyr__control--overlaid:hover,
.plyr--video .plyr__control--overlaid:focus {
    background-color: #ffffff;
    color: #000000;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plyr--video .plyr__control--overlaid svg {
    margin-left: 0.2rem;
    width: 24px;
    height: 24px;
}

/* =====================================================
   FLOATING INQUIRY
===================================================== */

.floating-inquiry {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: var(--white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.5rem;
    text-decoration: none;
    border-right: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.floating-inquiry:hover {
    background-color: var(--black);
    color: var(--white);
}

.floating-inquiry .text-container {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    white-space: nowrap;
    text-transform: uppercase;
}

.floating-inquiry .ti {
    font-size: 1.5rem;
}

/* =====================================================
   COLLECTION
===================================================== */
.collection {
    overflow: hidden;
}

.collection-card {
    display: block;
    color: var(--black);
    text-decoration: none;
    position: relative;
}

.collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 26, 27, 0) 0%, rgba(28, 26, 27, 0.7) 100%);
    z-index: 1;
}

.collection-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 5;
    background-color: var(--gray);
    margin-bottom: 0.75rem;
}

.collection-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-card-img img {
    transform: scale(1.04);
}

.collection-card-img--placeholder {
    background-color: var(--gray);
}

.collection-card-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--white);
    z-index: 2;
}

#collection-splide .splide__slide {
    clip-path: inset(-100vw -100vw -100vw 0);
}

#collection-splide .splide__track {
    overflow: visible;
}

/* =====================================================
   PRODUCTS
===================================================== */

.product-card {
    display: block;
    color: var(--black);
    text-decoration: none;
}

.product-card-media {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    // background-color: var(--gray);
    color: inherit;
    text-decoration: none;
}

.product-card-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-card-img-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card-media:hover .product-card-img-main.has-hover {
    opacity: 0;
}

.product-card-media:hover .product-card-img-hover {
    opacity: 1;
    transform: scale(1.04);
}

.product-card-media:hover .product-card-img-main:not(.has-hover) {
    transform: scale(1.04);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--gray);
}

.product-card-zigzag {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.product-card-zigzag svg {
    width: 100%;
    height: auto;
    display: none;
}

.product-card-zigzag path {
    fill: var(--white);
}

.product-card-zigzag--top {
    top: 0;
}

.product-card-zigzag--bottom {
    bottom: 0;
    transform: scaleY(-1);
}

.product-card-code {
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    z-index: 3;
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: .125rem;
}

.product-card-body {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0;
}

.product-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--black);
    line-height: 1.5;
}

.product-card-color-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;

}

.product-card-swatches {
    display: flex;
    gap: .375rem;
    flex-wrap: wrap;
}

.product-card-swatch {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    outline-offset: 2px;
    display: inline-block;
    cursor: pointer;
}

.product-card-swatch.is-active {
    outline-color: var(--black);
}

.product-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    width: fit-content;
    margin-top: 0.5rem;
}

/* =====================================================
   BLOG
===================================================== */
.blog {
    overflow: hidden;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
    position: relative;
    height: 100%;
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background-color: var(--gray);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--gray);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

.blog-card-content {
    position: relative;
    background-color: var(--white);
    width: 85%;
    margin-top: -3.5rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
    z-index: 2;
}

.blog-card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(28, 26, 27, 0.4);
    text-transform: uppercase;
    margin-bottom: 0.75rem !important;
}

.blog-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--black);
    margin: 0;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

/* =====================================================
   CTA
===================================================== */
.cta {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    background-image: url('../images/cta-bg.png');
    background-size: cover;
    background-position: center;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(67, 52, 62, 0.5) 0%, rgba(67, 52, 62, 1) 100%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta .content {
    max-width: 33.25rem;
}

/* =====================================================
   PARTNERS
===================================================== */

.partners-section {
    padding: 3rem 0;
    background-color: var(--purple);
    overflow: hidden;
    position: relative;
}

.partners-section::before,
.partners-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-section::before {
    left: 0;
    background: linear-gradient(to right, var(--purple), transparent);
}

.partners-section::after {
    right: 0;
    background: linear-gradient(to left, var(--purple), transparent);
}



#partners-splide .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
}

.partner-logo {
    width: auto;
    height: 2.125rem;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.35;
    transition: opacity 0.2s ease;
}

.partner-logo:hover {
    opacity: 0.8;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background-color: var(--purple);
    color: var(--white);
}

/* --- Footer Contact --- */

.footer-contact {
    padding: 4rem 0;

}


.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* --- History Overview --- */

.history-overview {
    padding: 5rem 0;
}

.history-overview .splide {
    position: relative;
}

.history-overview .splide__arrows {
    position: absolute;
    top: -3rem;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.history-overview .splide__arrow {
    position: static;
    transform: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid hsla(330, 4%, 11%, 0.3);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-overview .splide__arrow:hover {
    background: var(--black);
}

.history-overview .splide__arrow:hover svg {
    fill: var(--white);
}

.history-overview .splide__arrow svg {
    fill: var(--black);
    width: 0.75rem;
    height: 0.75rem;
}

.history-card {
    background-color: var(--gray);
    padding: 2rem;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.history-card h3 {
    font-size: 2rem;
}


.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}



.footer-contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-value:hover {
    color: var(--primary);
}

/* --- Footer Nav --- */

.footer-nav {
    padding: 3.5rem 0;

}

.footer-nav-title,
.footer-contact-label {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 2rem !important;
}

.footer-contact-label {
    margin-bottom: 0 !important;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav-list a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--white);
}

/* --- Footer Socials --- */

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* --- Footer Bottom --- */

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-left a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-left a:hover {
    color: var(--white);
}

.footer-logo {
    display: inline-flex;
    justify-content: center;
}

.footer-bottom-right {
    display: flex;
    gap: 1.5rem;
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
    color: var(--white);
}

/* =====================================================
   ERROR PAGE (404 / Ďakujeme)
===================================================== */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-page-code {
    font-size: 6rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.error-page-text {
    font-size: 1rem;
    color: rgba(28, 26, 27, 0.6);
    margin-bottom: 0;
}

/* =====================================================
   FAQ
===================================================== */

.faq-nav {
    display: flex;
    flex-direction: column;
}

.faq-nav-item {
    display: block;
    background: none;
    border: none;
    border-bottom: 1px solid #1C1A1B1A;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(28, 26, 27, 0.45);
    padding: 1rem 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-nav-item:first-child {
    padding-top: 0;
}

.faq-nav-item:hover {
    color: var(--black);
}

.faq-nav-item.is-active {
    color: var(--black);
    font-weight: 500;
}

.faq-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(28, 26, 27, 0.45);
    margin-bottom: 0.75rem;
}

.faq-main .accordion-item {
    background: transparent;
    border: none;
    border-top: 1px solid #1C1A1B1A;
    border-radius: 0 !important;
}

.faq-main .accordion-item:last-child {
    border-bottom: 1px solid #1C1A1B1A;
}

.faq-main .accordion-button {
    font-family: 'DM Serif Display', serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--black);
    background: transparent;
    border-radius: 0 !important;
    padding: 1.375rem 0;
    box-shadow: none;
    gap: 1rem;
}

.faq-main .accordion-button::after {
    content: '+';
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    background-image: none;
    width: auto;
    height: auto;
    flex-shrink: 0;
    transform: none !important;
}

.faq-main .accordion-button:not(.collapsed)::after {
    content: '−';
}

.faq-main .accordion-button:not(.collapsed) {
    color: var(--black);
    background: transparent;
    box-shadow: none;
}

.faq-main .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-main .accordion-body {
    padding: 0 2rem 1.5rem 0;
    color: rgba(28, 26, 27, 0.65);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* =====================================================
   ABOUT US
===================================================== */

.about-block-kicker {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-block-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.about-block-body p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(28, 26, 27, 0.65);
    margin-bottom: 1rem !important;
}

.about-block-body p:last-child {
    margin-bottom: 0 !important;
}

.about-block--bordered {
    border-left: 1px solid #1C1A1B1A;
    padding-left: 3rem !important;
}

/* =====================================================
   CERTIFICATES
===================================================== */

.cert-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cert-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-card-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

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

.cert-card-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.0625rem;
    line-height: 1.35;
    color: var(--black);
    margin-bottom: 0.375rem !important;
}

.cert-card-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(28, 26, 27, 0.55);
}

.catalog-pdf-card {
    text-decoration: none;
    color: inherit;
}

.catalog-pdf-card:hover {
    color: inherit;
}

.catalog-pdf-icon {
    background-color: #f5f0ee;
    font-size: 4rem;
    color: var(--black);
}

.catalog-pdf-thumb {
    background-color: #f5f0ee;
    overflow: hidden;
}

.catalog-pdf-thumb canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta {
    position: relative;
    padding: 6rem 0;
    /* 96px */
    color: var(--white);
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(67, 52, 62, 0.5) 0%, rgba(67, 52, 62, 1) 100%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta .content {
    max-width: 33.25rem;
}

.showroom-content {
    gap: 1.5rem !important;
}

.showroom-content h2 {
    margin-bottom: 0.5rem !important;
}

.showroom-box {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--black);
}

.showroom-box a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.showroom-box a:hover {
    color: var(--primary);
}

.showroom-link {
    text-decoration: underline !important;
    text-underline-offset: 0.2em;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}

.showroom-image-wrapper {
    position: relative;
    width: 100%;
}

.showroom-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#blog-splide .splide__slide {
    clip-path: inset(-100vw -100vw -100vw 0);
}

#blog-splide .splide__track {
    overflow: visible;
}

/* About us */
.intro {
    padding: 11rem 0;
}

/* --- History Blocks --- */

.history-block-item {
    min-height: 32rem;
    margin-bottom: 1.5rem;
}

.history-block-img {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.history-block-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.history-block-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

.history-block-content {
    display: flex;
    align-items: center;
    padding: 5rem 6rem;
}

.history-block-content .content h2 {
    font-size: 2.25rem;
    line-height: 1.2;
}

/* --- Gallery Section --- */

.gallery-section {
    padding: 5rem 0;
}

.gallery-section .splide {
    position: relative;
}

.gallery-section .splide__arrows {
    position: absolute;
    top: -3rem;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.gallery-section .splide__arrow {
    position: static;
    transform: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid hsla(330, 4%, 11%, 0.3);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-section .splide__arrow:hover {
    background: var(--black);
}

.gallery-section .splide__arrow:hover svg {
    fill: var(--white);
}

.gallery-section .splide__arrow svg {
    fill: var(--black);
    width: 0.75rem;
    height: 0.75rem;
}

.gallery-img {
    height: 26rem;
    width: auto;
    object-fit: cover;
    display: block;
}

.history-overview {
    overflow: hidden;
}

#history-splide.splide__slide {
    clip-path: inset(-100vw -100vw -100vw 0);
}

#history-splide .splide__track {
    overflow: visible;
}

/* =====================================================
   BREADCRUMB
===================================================== */

.breadcrumb-nav {
    padding-top: 1rem;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(28, 26, 27, 0.5);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: rgba(28, 26, 27, 0.35);
}

.breadcrumb-item a {
    color: rgba(28, 26, 27, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--black);
}

.breadcrumb-item span {
    color: var(--black);
    font-weight: 500;
}

/* =====================================================
   CATALOG HEADING
===================================================== */

.catalog-heading {
    margin-bottom: 3rem;
}

.catalog-heading-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* =====================================================
   CATALOG
===================================================== */

.catalog-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalog-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(28, 26, 27, 0.1);
}

.catalog-filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.catalog-filter-label {
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(28, 26, 27, 0.5);
    margin: 0 !important;
}

.catalog-filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.catalog-filter-check {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    cursor: pointer;
    user-select: none;
}

.catalog-filter-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 1.5px solid rgba(28, 26, 27, 0.25);
    border-radius: 0rem;
    background-color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.catalog-filter-check input[type="checkbox"]:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.catalog-filter-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 0.1rem;
    width: 0.4rem;
    height: 0.7rem;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* --- Catalog Filter Drawer (mobile) --- */

.filter-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1059;
}

.filter-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

body.filter-open {
    overflow: hidden;
}

.catalog-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1.5px solid var(--black);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-filter-drawer-header {
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(28, 26, 27, 0.1);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.catalog-filter-drawer-header span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.catalog-filter-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: var(--black);
}

/* --- Range Slider --- */

.catalog-range-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.catalog-range-track {
    position: relative;
    height: 0.125rem;
    background-color: rgba(28, 26, 27, 0.15);
    margin: 0.75rem 0;
}

.catalog-range-fill {
    position: absolute;
    height: 100%;
    background-color: var(--black);
    pointer-events: none;
}

.catalog-range-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    height: 1.5rem;
}

.catalog-range-input::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.5px solid var(--black);
    pointer-events: all;
    cursor: pointer;
}

.catalog-range-input::-moz-range-thumb {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.5px solid var(--black);
    pointer-events: all;
    cursor: pointer;
}

.catalog-range-values {
    display: flex;
    gap: 0.5rem;
}

.catalog-range-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid rgba(28, 26, 27, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    flex: 1;
    text-align: center;
}

/* --- Color Swatches Bar --- */

.catalog-color-bar {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.catalog-color-bar::-webkit-scrollbar {
    display: none;
}

.catalog-color-swatches {
    display: flex;
    gap: 0.75rem;
    width: max-content;
}

.catalog-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.2s ease;
}

.catalog-color-swatch:hover {
    opacity: 0.75;
}

.catalog-color-swatch.is-active {
    opacity: 1;
}

.catalog-color-swatch-inner {
    display: block;
    width: 3.5rem;
    height: 3.5rem;
}

.catalog-color-swatch-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: rgba(28, 26, 27, 0.5);
    white-space: nowrap;
}

.catalog-color-swatch.is-active .catalog-color-swatch-name {
    color: var(--black);
    font-weight: 600;
}

/* --- Results bar --- */

.catalog-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
}

.catalog-results-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(28, 26, 27, 0.5);
    margin: 0 !important;
}

.catalog-sort-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(28, 26, 27, 0.5);
    white-space: nowrap;
}

/* ===== CATALOG SORT CUSTOM DROPDOWN ===== */
.catalog-sort-dropdown {
    position: relative;
}

.catalog-sort-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid rgba(28, 26, 27, 0.2);
    cursor: pointer;
    outline: none;
    padding: 0.625rem 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
    min-width: 11rem;
    justify-content: space-between;
    transition: border-color 0.2s ease;
}

.catalog-sort-btn:hover {
    border-color: rgba(28, 26, 27, 0.5);
}

.catalog-sort-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.catalog-sort-dropdown.is-open .catalog-sort-btn {
    border-color: rgba(28, 26, 27, 0.5);
}

.catalog-sort-dropdown.is-open .catalog-sort-btn svg {
    transform: rotate(-180deg);
}

.catalog-sort-menu {
    position: absolute;
    top: calc(100% + 0.375rem);
    right: 0;
    min-width: 100%;
    background: var(--white);
    border: 1px solid rgba(28, 26, 27, 0.12);
    box-shadow: 0 8px 24px rgba(28, 26, 27, 0.10);
    list-style: none;
    margin: 0;
    padding: 0.375rem 0;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.catalog-sort-dropdown.is-open .catalog-sort-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.catalog-sort-option {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--black);
    padding: 0.625rem 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.catalog-sort-option:hover {
    background-color: var(--gray);
}

.catalog-sort-option.is-active {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 500;
}

/* --- Empty state --- */

.catalog-empty {
    padding: 3rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(28, 26, 27, 0.5);
}

.gallery-section {
    overflow: hidden;
}

#gallery-splide.splide__slide {
    clip-path: inset(-100vw -100vw -100vw 0);
}

#gallery-splide .splide__track {
    overflow: visible;
}

/* =====================================================
   PRODUCT DETAIL
===================================================== */

.product-detail {
    padding-top: 3rem;
}

.product-gallery {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    height: 58rem;
}

.product-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 5rem;
    flex-shrink: 0;
    overflow-y: auto;
    scrollbar-width: none;
    max-height: 100%;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery-thumb {
    width: 5rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--gray);
    border: 2px solid transparent;
    outline: 2px solid transparent;
    outline-offset: -2px;
    flex-shrink: 0;
    transition: outline-color 0.2s ease;
}

.product-gallery-thumb.is-active {
    outline-color: var(--black);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-main {
    flex: 1;
    height: 100%;
    overflow: hidden;
    background-color: var(--gray);
}

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

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.product-detail-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-detail-name {
    font-family: 'DM Serif Display', serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.product-detail-code {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #EEEDE8;
    padding: 0.25rem 0.35rem;
    white-space: nowrap;
    border-radius: 0.125rem;
}

.product-detail-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(28, 26, 27, 0.7);
}

.product-detail-availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #01B460;
}

.product-detail-availability--out {
    color: rgba(28, 26, 27, 0.4);
}

.product-detail-availability-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: currentColor;
    flex-shrink: 0;
}

.product-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 403px;
    width: 100%;
}

.product-detail-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--black);
    background-color: #EEEDE8;
    padding: 0.375rem 0.75rem;
}

.product-detail-colors {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-detail-color-label {
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    color: var(--black)
}

.product-detail-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-detail-swatch {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    outline-offset: 2px;
    display: inline-block;
    cursor: pointer;
    transition: outline-color 0.2s ease;
}

.product-detail-swatch.is-active {
    outline-color: var(--black);
}

.product-detail-purchase {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

/* =====================================================
   PRODUCT SPECS
===================================================== */

.product-specs-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.product-spec-item {
    padding: 1.25rem 0;
}

.product-spec-item:nth-child(n+2) {
    border-top: 1px solid #1C1A1B1A;
}

.product-spec-label {
    display: block;
    font-size: .875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1C1A1BB2;
    margin-bottom: 0.375rem;
}

.product-detail-qty-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-detail-qty {
    display: flex;
    align-items: center;
    border: 1px solid rgba(28, 26, 27, 0.2);
}

.product-detail-qty-btn {
    background: none;
    border: none;
    width: 3.4375rem;
    height: 3.4375rem;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: background-color 0.2s ease;
}

.product-detail-qty-btn:hover {
    background-color: var(--gray);
}

.product-detail-qty-input {
    width: 3rem;
    height: 3.4375rem;
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--black);
    background: none;
    outline: none;
    -moz-appearance: textfield;
}

.product-detail-qty-input::-webkit-outer-spin-button,
.product-detail-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* =====================================================
   PRODUCT USAGES
===================================================== */

.product-usages .content p {
    max-width: 44.75rem;
    width: 100%;
    margin-bottom: 2rem !important;
}

.usage-card {
    background-color: var(--gray);
    padding: 2rem 1.75rem;
    height: 100%;
}

.usage-card-icon {
    margin-bottom: 1.5rem;
}

.usage-card-icon svg {
    width: 2rem;
    height: 2rem;
}

.usage-card p {
    font-size: .875rem;
}

.usage-card {
    min-height: auto !important;
    gap: 1.5rem;
    justify-content: flex-start;
}

.usage-card h3 {
    max-width: 19.3125rem;
    width: 100%;

}

.related-products .content {
    margin-bottom: 2.5rem;
}

.related-products .product-card-zigzag--bottom {
    bottom: -1px;
}

.product-card-excerpt {
    margin-top: 1rem;
    margin-bottom: 1rem !important;
}

.product-card-color-label {
    margin-bottom: 0.5rem !important;
}

/* =====================================================
   BLOG POST
===================================================== */

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0.5rem 0 0;
}

.blog-post-body {
    font-size: 1rem;
    line-height: 1.75;
}

.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
}

.blog-post-sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray);
}

/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    line-height: 0;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* =====================================================
   CONTACT
===================================================== */

.contact-main {
    overflow-x: hidden;
}

.contact-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-row {
    display: flex;
    gap: 1.25rem;
}

.contact-row .contact-group {
    flex: 1;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
}

.contact-input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid rgba(28, 26, 27, 0.2);
    border-radius: 0;
    outline: none;
    padding: 0.875rem 1rem;
    width: 100%;
    transition: border-color 0.2s ease;
}

.contact-input:focus {
    border-color: var(--primary);
}

.contact-textarea {
    resize: vertical;
    min-height: 9rem;
}

/* ===== SEARCH RESULTS DROPDOWN ===== */
.nav-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray);
    padding: 2rem 0 2.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1500;
    box-shadow: 0 1.5rem 4rem rgba(28, 26, 27, 0.12);
    max-height: 80vh;
    overflow-y: auto;
}

.nav-search-results.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-search-loading {
    display: flex;
    gap: 0.375rem;
    justify-content: center;
    padding: 1.5rem 0;
}

.nav-search-loading span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
    animation: search-dot 0.8s ease-in-out infinite;
}

.nav-search-loading span:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-search-loading span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes search-dot {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.search-no-results {
    text-align: center;
    color: rgba(28, 26, 27, 0.45);
    padding: 2.5rem 0;
    font-size: 1rem;
}

#search-grid .product-card-zigzag--bottom {
    bottom: -1px;
}

/* =====================================================
   NEWSLETTER MODAL
===================================================== */

.newsletter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 26, 27, 0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.newsletter-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.newsletter-modal {
    position: relative;
    display: flex;
    width: min(56rem, 92vw);
    max-height: 90vh;
    background: var(--white);
    overflow: hidden;
    transform: translateY(1.5rem);
    transition: transform 0.35s ease;
}

.newsletter-overlay.is-visible .newsletter-modal {
    transform: translateY(0);
}

.newsletter-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    line-height: 1;
    color: var(--black);
    cursor: pointer;
    z-index: 10;
    opacity: 0.55;
    transition: opacity 0.2s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-close:hover {
    opacity: 1;
}

.newsletter-image {
    flex: 0 0 46%;
    overflow: hidden;
}

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

.newsletter-body {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-heading {
    font-size: 2rem;
    margin-bottom: 0 !important;
}

.newsletter-text {
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    max-width: 21.875rem;
    width: 100%;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid rgba(28, 26, 27, 0.2);
    border-radius: 0;
    outline: none;
    padding: 0.875rem 1rem;
    width: 100%;
    text-align: center;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.newsletter-input::placeholder {
    color: rgba(28, 26, 27, 0.4);
}

.w-100 {
    width: 100% !important;
}

/* =====================================================
   SERVICE DETAIL
===================================================== */

.service-intro {
    position: relative;
    background-color: #3b2c35;
    padding: 6rem 0 5rem;
}

.service-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/bg3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
}

.service-intro .container {
    position: relative;
    z-index: 1;
}

.service-intro .overview-heading {
    margin-top: 1.5rem !important;
}

.service-intro-text {
    max-width: 42rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
}

.service-intro-text p,
.service-intro-text li {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav--dark .breadcrumb-item,
.breadcrumb-nav--dark .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-nav--dark .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-nav--dark .breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-nav--dark .breadcrumb-item span {
    color: var(--white);
}

.service-detail {
    padding-top: 3rem;
    overflow-x: hidden;
}

.service-block {
    margin-bottom: 5rem;
}

.service-block-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-block-img img,
.service-block-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-gallery-item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-arrows-container .splide__arrow--prev {
    transform: scaleX(-1) !important;
}