html,
body {
    min-height: 100vh;
    margin: 0;
}

body {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 22px;
    color: #63666a;
}

/* Sticky footer - login vb. kısa sayfalarda footer alta yapışır */
.yaaz {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.yaaz-out {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.yaaz-out main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Mobil sabit alt menü yüksekliği kadar altta boşluk (içerik menünün altında kalmaması için) */
@media (max-width: 767px) {
    .yaaz-out main {
        padding-bottom: var(--site-mobile-bottom-height, 56px);
    }
}

.yaaz-out main>footer {
    margin-top: auto;
}

button,
input,
optgroup,
select,
textarea {
    font-family: "DIN Next LT Pro", sans-serif;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

a {
    text-decoration: none;
    color: #63666a;
    transition: all 0.3s;
}

a:hover picture:not(.no-effect) img {
    transform: scale(1.03);
}

strong {
    color: #63666a;
}

.z-index-0 {
    z-index: 0;
}

#renderCanvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.btn-empty {
    background: none;
    border: none;
}

picture {
    object-fit: cover;
    transition: transform 0.3s ease;
}

picture img {
    transition: transform 0.3s ease;
}

picture:not(.no-effect):hover img {
    transform: scale(1.03);
}

/* ===================================
   PREMIUM HEADER & NAVBAR
   =================================== */

.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.navbar-premium {
    padding: 1.25rem 0;
}

.navbar-premium-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
}

/* Navbar hamburger ikonu - üst öncelik */
.navbar-premium .hamburger-btn {
    width: 24px;
    height: 18px;
    min-width: 24px;
    min-height: 18px;
}

.navbar-premium .hamburger-icon,
.navbar-premium .hamburger-icon::before,
.navbar-premium .hamburger-icon::after {
    background-color: #333;
    width: 20px;
    height: 2px;
}

.navbar-premium .hamburger-icon::before {
    top: -6px;
}

.navbar-premium .hamburger-icon::after {
    top: 6px;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 0 auto;
    text-align: center;
}

.navbar-logo {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.7;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.navbar-right-mobile {
    width: 28px;
}


.toggle-icon i {
    transition: transform .3s;
    display: inline-block;
}

.toggle-icon[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.toggle-icon[aria-expanded="false"] i {
    transform: rotate(0deg);
}

.mb-10 {
    margin-bottom: 10rem !important
}

.col-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

.sidebar {
    width: 360px !important;
    flex: 0 0 360px !important;
}

.navbar-toggler {
    padding: 0;
}

.bg-gray {
    background-color: #d9d9d9;
}

.btn-form-control {
    border: 1px solid #ced4da;
    background-color: #fff;
    color: #495057;
}

.btn-form-control:hover {
    background-color: #f8f9fa;
    color: #212529;
}

/* Nav Links - Premium */
.nav-links {
    font-family: "DIN Next LT Pro", sans-serif;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link-item {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #63666a;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link-item:hover {
    color: #1a1a1a;
}

.nav-link-item:hover::after {
    width: 100%;
}

.nav-link-accent {
    color: #1a1a1a;
    font-weight: 500;
}

.nav-separator {
    width: 1px;
    height: 12px;
    background-color: #d0d0d0;
    margin: 0 1.25rem;
}

.top-menu {
    font-family: "DIN Next LT Pro", sans-serif;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 13px;
}

.top-menu a {
    cursor: pointer;
}

.top-menu a:hover {
    color: #000 !important;
}

.top-menu-border {
    border-bottom: 1px solid #63666a;
    padding-bottom: 1rem;
}

.top-menu-list {
    width: auto;
    min-width: 260px;
    max-width: 320px;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    padding: 1.75rem 2rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.top-menu-list.light {
    background-color: rgba(250, 250, 250, 0.9);
}

.top-menu-list ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.top-menu-list ul li {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.top-menu-list span {
    display: block;
    font-weight: 500;
    font-size: 9px;
    letter-spacing: 2.5px;
    color: #999;
    margin-bottom: 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
}

.top-menu-list a {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #666;
    transition: all 0.25s ease;
    display: block;
    text-transform: capitalize;
    padding: 0.4rem 0;
    position: relative;
}

.top-menu-list a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.top-menu-list a:hover {
    color: #1a1a1a;
    padding-left: 6px;
}

.top-menu-list a:hover::before {
    width: 8px;
}

.text-align-justify {
    text-align: justify;
}

.navbar-toggler:focus {
    --bs-navbar-toggler-focus-width: 0;
}

.carousel,
.carousel-item {
    height: auto;
}

.carousel-item img {
    height: auto;
    width: 100%;
}

.carousel-control-prev-icon.dark {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon.dark {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon.big,
.carousel-control-prev-icon.big {
    width: 5rem;
    height: 5rem;
}

.home-slider-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(/content/images/slider-popup-icon.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    z-index: 2;
}

.home-slider-pin span {
    display: none;
}

/* ===================================
   HOMEPAGE - Premium Redesign
   =================================== */

/* Popup */
.hp-popup {
    font-family: "DIN Next LT Pro", sans-serif;
    display: none;
    position: absolute;
    width: 280px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 999;
    font-size: 0.9rem;
}

.hp-popup p {
    margin-bottom: 0.25rem;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
}

.hp-popup b {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.hp-popup-close {
    text-align: right;
    margin-bottom: 0.25rem;
}

.hp-popup-close span {
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
    display: inline-flex;
}

.hp-popup-close span:hover {
    color: #333;
}

/* Intro Section */
.hp-intro {
    padding: 4rem 2rem;
}

.hp-intro-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hp-intro-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hp-intro-divider {
    width: 50px;
    height: 1.5px;
    background: #1a1a1a;
    margin: 0 auto 1.5rem;
}

.hp-intro-text {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.hp-intro-text p {
    margin-bottom: 0.75rem;
}

/* Section Framework */
.hp-section {
    padding: 3rem 2rem;
}

.hp-section--alt {
    background: #fafaf8;
}

.hp-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.hp-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hp-section-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
    white-space: nowrap;
}

.hp-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d0d0d0, transparent);
}

/* Collections Grid */
.hp-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hp-collection-card {
    display: block;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hp-collection-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: transparent;
}

.hp-collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hp-collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hp-collection-card:hover .hp-collection-img img {
    transform: scale(1.06);
}

.hp-collection-card:hover .hp-collection-overlay {
    opacity: 1;
}

.hp-collection-info {
    padding: 0.85rem 0.75rem 0.65rem;
}

.hp-collection-info span {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #444;
    transition: color 0.3s ease;
}

.hp-collection-card:hover .hp-collection-info span {
    color: #1a1a1a;
}

.hp-collections-more {
    text-align: center;
    margin-top: 2.5rem;
}

.hp-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    padding: 0.75rem 0;
    text-decoration: none !important;
    position: relative;
    transition: color 0.35s ease, gap 0.35s ease;
}

.hp-btn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp-btn-more svg {
    transition: transform 0.35s ease;
    opacity: 0.6;
}

.hp-btn-more:hover {
    color: #1a1a1a;
    gap: 0.85rem;
}

.hp-btn-more:hover::after {
    width: 100%;
}

.hp-btn-more:hover svg {
    transform: translateX(3px);
    opacity: 1;
}

/* Product Name under slider */
.hp-product-name {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #666;
    text-align: center;
    padding: 0.75rem 0 0;
    transition: color 0.3s ease;
}

.cdl-slide:hover .hp-product-name {
    color: #1a1a1a;
}

/* Catalogue Section */
.hp-catalogue {
    text-align: center;
}

.hp-catalogue-card {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    max-width: 500px;
    text-decoration: none !important;
}

.hp-catalogue-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hp-catalogue-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.hp-catalogue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #1a1a1a;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
}

.hp-catalogue-card:hover img {
    transform: scale(1.04);
}

.hp-catalogue-card:hover .hp-catalogue-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.hp-catalogue-card:hover .hp-catalogue-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Homepage Responsive */
@media (max-width: 991px) {
    .hp-intro {
        padding: 3rem 1.5rem;
    }

    .hp-intro-title {
        font-size: 1.3rem;
    }

    .hp-section {
        padding: 2rem 1.5rem;
    }

    .hp-collections-grid {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hp-intro {
        padding: 2rem 1rem;
    }

    .hp-intro-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .hp-intro-text {
        font-size: 0.85rem;
    }

    .hp-section {
        padding: 1.5rem 1rem;
    }

    .hp-section-header {
        margin-bottom: 1.5rem;
    }

    .hp-section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hp-collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hp-collection-info span {
        font-size: 0.65rem;
    }

    .hp-product-name {
        font-size: 0.65rem;
    }

    .hp-catalogue-card {
        max-width: 100%;
        border-radius: 8px;
    }

    .hp-catalogue-btn {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
}

/* ===================================
   COLLECTION PAGE - Premium Redesign
   =================================== */

/* Featured Section */
.col-featured {
    padding: 3rem 2rem;
}

.col-featured-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Pinned Left Cards */
.col-pinned-left {
    padding-right: 2rem;
}



.col-pinned-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
}

.col-pinned-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.col-pinned-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.col-pinned-img-wrap:hover img {
    transform: scale(1.05);
}

.col-pinned-img-wrap:hover .col-pinned-img-overlay {
    opacity: 1;
}

.col-pinned-content {
    padding: 1.5rem 0 1.5rem 2rem;
}

.col-pinned-name {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.col-pinned-divider {
    width: 40px;
    height: 1.5px;
    background: #1a1a1a;
    margin-bottom: 1rem;
}

.col-pinned-desc {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.col-pinned-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none !important;
    transition: gap 0.3s ease;
}

.col-pinned-cta svg {
    transition: transform 0.3s ease;
}

.col-pinned-cta:hover {
    gap: 0.75rem;
}

.col-pinned-cta:hover svg {
    transform: translateX(3px);
}

.col-pinned-designer {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #999;
    margin-top: 1rem;
    text-transform: uppercase;
}

/* Right Slider */
.col-right-slider-wrap {
    height: 100%;
    padding-left: 1rem;
}

.col-right-slider-wrap .collection-right-slider {
    height: 100%;
}

.col-right-slide {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    text-decoration: none !important;
}

.col-right-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.col-right-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.col-right-slide-info h2 {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.col-right-slide-info span {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.col-right-slide:hover img {
    transform: scale(1.05);
}

/* Collection Page Responsive */
@media (max-width: 991px) {
    .col-featured {
        padding: 2rem 1.5rem;
    }

    .col-pinned-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .col-pinned-content {
        padding: 1rem 0;
    }

    .col-pinned-name {
        font-size: 1.4rem;
    }

    .col-right-slider-wrap {
        padding-left: 0;
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .col-featured {
        padding: 1.5rem 1rem;
    }

    .col-pinned-name {
        font-size: 1.2rem;
    }

    .col-pinned-desc {
        font-size: 0.8rem;
    }

    .col-pinned-cta {
        font-size: 0.7rem;
    }

    .col-right-slider-wrap {
        min-height: 300px;
    }

    .col-right-slide-info h2 {
        font-size: 1.1rem;
    }
}

.page-subtitle {
    font-family: "DIN Next LT Pro", sans-serif;
    display: block;
    margin-bottom: 1rem;
    font-size: 32px;
    letter-spacing: 5px;
}

.page-title-light {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.page-title-spacing {
    letter-spacing: 0.1rem;
}

.page-text-light {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 300;
}

.page-text-designer {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 2rem;
}

.page-text-designer .all-products {
    font-weight: 500;
    color: #5c5c5c;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-decoration: underline;
}

.page-text-designer .all-products:hover {
    color: #343a40;
}

.login-bg {
    background: url(/content/images/login-bg.jpg) no-repeat center;
    background-size: cover;
}

.about-list {
    font-family: "DIN Next LT Pro", sans-serif;
    --bs-gutter-x: 10rem;
}

.about-history-year {
    font-family: "DIN Next LT Pro", sans-serif;
    width: 130px;
    flex-shrink: 0;
}

.about-history-text {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 300;
}

.info-card {
    font-family: "DIN Next LT Pro", sans-serif;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
}

.circle {
    font-family: "DIN Next LT Pro", sans-serif;
    width: 120px;
    height: 120px;
    background-color: #8B5E4F;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    flex-shrink: 0;
}

.circle .number {
    font-size: 32px;
    letter-spacing: normal;
    margin-bottom: -5px;
}

.circle .text-small {
    font-size: 16px;
}

.info-text {
    font-family: "DIN Next LT Pro", sans-serif;
    margin-left: 20px;
    font-size: 18px;
    color: #343a40;
    font-weight: 300;
}

.collection-left-item {
    font-family: "DIN Next LT Pro", sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #63666a;
}

.collection-left-item .collection-title {
    display: block;
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.collection-left-item .collection-description {
    font-size: 16px;
}

.collection-left-item .collection-discover {
    display: block;
    font-size: 12px;
    font-weight: 500;
}

.collection-left-item .collection-designer {
    display: block;
    font-size: 12px;
}

/* Product detail / generic collection section titles */
.collection-title,
.collection-description {
    font-family: "DIN Next LT Pro", sans-serif;
}

.collection-right-slider {
    height: 100%;
    position: relative;
}

.collection-right-slider .slick-list,
.collection-right-slider .slick-track {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.collection-right-slider .slick-slide {
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.collection-right-slider .slick-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.collection-right-slider .slick-prev,
.collection-right-slider .slick-next {
    position: absolute;
    top: auto;
    bottom: 20px;
    transform: none;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection-right-slider .slick-prev {
    left: 50%;
    margin-left: -65px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.collection-right-slider .slick-next {
    left: 50%;
    margin-left: 25px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.collection-right-slider .slick-prev:before,
.collection-right-slider .slick-next:before {
    font-size: 30px;
    color: white;
}

.collection-right-slider .slick-disabled:before {
    opacity: 0.5;
}

.collection-right-item {
    height: 100%;
}

.collection-right-item picture {
    height: 100%;
    position: relative;
}

.collection-right-item .collection-cover-title {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
}

.collection-right-item .collection-cover-title:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.collection-right-item .collection-cover-title div {
    display: inline-block;
    vertical-align: middle;
}

.collection-right-item .collection-cover-title div h2 {
    margin: 0;
    padding: 0;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5rem;
}

.collection-right-item .collection-cover-title div span {
    font-size: 16px;
}

.collection-list {}

.collection-list .collection-list-item {}

.collection-list .collection-list-item picture {
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
}

.collection-list .collection-list-item span {
    display: block;
    color: #000;
    font-size: 16px;
}

.collection-list .collection-title-hover {
    display: block;
    position: relative;
}

.collection-list .collection-title-hover span {
    display: none;
    color: #000;
    font-size: 16px;
}

.collection-list .collection-title-hover:hover span {
    display: block !important;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    color: #343a40;
    padding: 5px;
}

/* ===================================
   DESIGNER SECTION - Premium Redesign
   =================================== */

.dsn-section {
    margin: 4rem 0;
    overflow: hidden;
}

.dsn-inner {
    max-width: 1400px;
    margin: 0 auto;
    background: #f7f7f5;
}

/* Image */
.dsn-image-wrap {
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    position: relative;
}

.dsn-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dsn-image-wrap:hover .dsn-image {
    transform: scale(1.03);
}

/* Content */
.dsn-content {
    padding: 3.5rem 4rem;
}

.dsn-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 0.75rem;
}

.dsn-name {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.dsn-divider {
    width: 40px;
    height: 1.5px;
    background: #1a1a1a;
    margin: 1.5rem 0;
}

.dsn-spot {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.dsn-spot p {
    margin-bottom: 0.75rem;
}

.dsn-body {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: #777;
    margin-bottom: 0.5rem;
}

.dsn-body p {
    margin-bottom: 0.5rem;
}

/* CTA Link */
.dsn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.dsn-cta svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dsn-cta:hover {
    color: #000;
    border-bottom-color: #1a1a1a;
}

.dsn-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .dsn-image-wrap {
        min-height: 350px;
    }

    .dsn-content {
        padding: 2.5rem 2rem;
    }

    .dsn-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .dsn-section {
        margin: 2rem 0;
    }

    .dsn-image-wrap {
        min-height: 280px;
    }

    .dsn-content {
        padding: 2rem 1.5rem;
    }

    .dsn-name {
        font-size: 1.4rem;
    }

    .dsn-spot {
        font-size: 0.9rem;
    }

    .dsn-body {
        font-size: 0.85rem;
    }

    .dsn-cta {
        font-size: 0.75rem;
    }
}

/* ===================================
   COLLECTION DETAIL - Gallery & Related
   =================================== */

/* Shared Section Header */
.cdl-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cdl-section-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
    white-space: nowrap;
}

.cdl-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d0d0d0, transparent);
}

/* Gallery Section */
.cdl-gallery-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cdl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.cdl-gallery-item {
    display: block;
    text-decoration: none !important;
    overflow: hidden;
    border-radius: 6px;
}

.cdl-gallery-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.cdl-gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cdl-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.cdl-gallery-overlay svg {
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.cdl-gallery-item:hover .cdl-gallery-img-wrap img {
    transform: scale(1.08);
}

.cdl-gallery-item:hover .cdl-gallery-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.cdl-gallery-item:hover .cdl-gallery-overlay svg {
    opacity: 1;
    transform: scale(1);
}

/* Related Section */
.cdl-related-section {
    padding: 3rem 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cdl-slider-wrap {
    position: relative;
    padding: 0 50px;
}

/* Slide Item */
.cdl-slide {
    display: block !important;
    padding: 0 0.625rem;
    text-decoration: none !important;
    outline: none !important;
}

.cdl-slide-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    transition: box-shadow 0.35s ease;
}

.cdl-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cdl-slide:hover .cdl-slide-img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cdl-slide:hover .cdl-slide-img img {
    transform: scale(1.06);
}

/* Slick Override - Arrows */
.cdl-slider.slick-initialized .slick-prev,
.cdl-slider.slick-initialized .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px;
    height: 40px;
    z-index: 10 !important;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.cdl-slider.slick-initialized .slick-prev:hover,
.cdl-slider.slick-initialized .slick-next:hover {
    background: #fafafa;
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cdl-slider.slick-initialized .slick-prev {
    left: -6px !important;
}

.cdl-slider.slick-initialized .slick-next {
    right: -6px !important;
}

.cdl-slider.slick-initialized .slick-prev:before,
.cdl-slider.slick-initialized .slick-next:before {
    content: '' !important;
    display: block !important;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cdl-slider.slick-initialized .slick-prev:before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.cdl-slider.slick-initialized .slick-next:before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

.cdl-slider.slick-initialized .slick-prev:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.cdl-slider.slick-initialized .slick-next:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

/* Slick Override - Dots */
.cdl-slider .slick-dots {
    bottom: -36px;
    text-align: center;
    display: flex !important;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cdl-slider .slick-dots li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.cdl-slider .slick-dots li button {
    font-size: 0;
    border: none;
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cdl-slider .slick-dots li.slick-active button {
    background: #1a1a1a;
    width: 20px;
    border-radius: 3px;
}

/* Slick slide spacing */
.cdl-slider.slick-initialized .slick-list {
    margin: 0 -0.625rem;
}

/* Responsive */
@media (max-width: 991px) {
    .cdl-related-section {
        padding: 2rem 1.5rem 4rem;
    }

    .cdl-slider-wrap {
        padding: 0 40px;
    }
}

@media (max-width: 576px) {
    .cdl-related-section {
        padding: 1.5rem 1rem 3.5rem;
    }

    .cdl-slider-wrap {
        padding: 0 35px;
    }

    .cdl-slider.slick-initialized .slick-prev,
    .cdl-slider.slick-initialized .slick-next {
        width: 32px;
        height: 32px;
    }

    .cdl-slider.slick-initialized .slick-prev {
        left: -4px !important;
    }

    .cdl-slider.slick-initialized .slick-next {
        right: -4px !important;
    }

    .cdl-slide-img {
        border-radius: 6px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .cdl-gallery-grid {
        gap: 1rem;
    }

    .cdl-gallery-section,
    .cdl-related-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .cdl-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cdl-gallery-section,
    .cdl-related-section {
        padding: 1.5rem 1rem;
    }

    .cdl-gallery-item {
        border-radius: 4px;
    }

    .cdl-section-header {
        margin-bottom: 1.25rem;
    }

    .cdl-section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

.library-title {
    font-family: "DIN Next LT Pro", sans-serif;
    display: block;
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 500;
}

/* ===================================
   APP SIDEBAR - Modern Sidebar Styles
   =================================== */

.app-sidebar {
    font-family: "DIN Next LT Pro", sans-serif;
    min-height: 100vh;
    width: 280px;
    background-color: #fafafa;
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    align-self: flex-start;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.app-sidebar__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

/* Sidebar Header */
.app-sidebar__header {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid #e8e8e8;
    background-color: #fff;
}

.app-sidebar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.app-sidebar__brand:hover {
    color: #555;
}

.app-sidebar__brand-icon {
    color: #666;
    flex-shrink: 0;
}

.app-sidebar__brand-text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sidebar Navigation */
.app-sidebar__nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.app-sidebar__section {
    margin-bottom: 0.25rem;
}

/* Sidebar Item */
.app-sidebar__item {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 0.75rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.app-sidebar__item:hover {
    background-color: #f0f0f0;
}

.app-sidebar__item.is-active {
    background-color: #e9e9e9;
}

.app-sidebar__item.is-active .app-sidebar__link {
    color: #1a1a1a;
    font-weight: 500;
}

.app-sidebar__item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background-color: #555;
    border-radius: 0 3px 3px 0;
}

/* Sidebar Link */
.app-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: #555;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    border-radius: 8px;
}

.app-sidebar__link:hover {
    color: #1a1a1a;
}

.app-sidebar__link:focus-visible {
    outline: 2px solid #666;
    outline-offset: -2px;
}

/* Sidebar Icon */
.app-sidebar__icon {
    flex-shrink: 0;
    color: #777;
    transition: color 0.2s ease;
}

.app-sidebar__item:hover .app-sidebar__icon,
.app-sidebar__item.is-active .app-sidebar__icon {
    color: #444;
}

/* Sidebar Text */
.app-sidebar__text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Toggle Button (Chevron) */
.app-sidebar__toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #888;
    transition: all 0.2s ease;
}

.app-sidebar__toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #555;
}

.app-sidebar__toggle-btn:focus-visible {
    outline: 2px solid #666;
    outline-offset: -2px;
}

.app-sidebar__chevron {
    transition: transform 0.25s ease;
}

.app-sidebar__toggle-btn[aria-expanded="true"] .app-sidebar__chevron {
    transform: rotate(180deg);
}

/* Sidebar Submenu */
.app-sidebar__submenu {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0 0.5rem 0;
}

.app-sidebar__submenu-item {
    margin: 0;
}

.app-sidebar__submenu-link {
    display: block;
    padding: 0.625rem 1rem 0.625rem 3.25rem;
    margin: 0 0.75rem;
    text-decoration: none;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.app-sidebar__submenu-link:hover {
    color: #333;
    background-color: #f5f5f5;
}

.app-sidebar__submenu-link.is-active {
    color: #1a1a1a;
    font-weight: 500;
    background-color: #ebebeb;
}

.app-sidebar__submenu-link:focus-visible {
    outline: 2px solid #666;
    outline-offset: -2px;
}

/* Sidebar Divider */
.app-sidebar__divider {
    height: 1px;
    margin: 0.75rem 1.25rem;
    background-color: #e0e0e0;
}

/* Mobile Toggle Button (Hidden by default) */
.app-sidebar__toggle {
    display: none;
    position: fixed;
    top: 80px;
    left: 1rem;
    z-index: 1001;
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.2s ease;
}

.app-sidebar__toggle:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.app-sidebar__toggle:focus-visible {
    outline: 2px solid #666;
    outline-offset: 2px;
}

/* ===================================
   APP SIDEBAR - Responsive Styles
   =================================== */

@media (max-width: 992px) {
    .app-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 280px;
        height: 100vh;
        transform: translateX(-100%);
        box-shadow: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .app-sidebar.is-open {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .app-sidebar__toggle {
        display: flex;
    }

    /* Sidebar Overlay */
    .app-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .app-sidebar-overlay.is-visible {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .app-sidebar {
        width: 100%;
        max-width: 300px;
    }

    .app-sidebar__toggle {
        top: 75px;
        left: 0.75rem;
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   LAYOUT - Flex Layout for Sidebar + Content
   =================================== */

.app-layout {
    display: flex;
    min-height: 100vh;
}

.app-layout__content {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
}

@media (max-width: 992px) {
    .app-layout {
        flex-direction: column;
    }

    .app-layout__content {
        padding-top: 0;
    }
}

/* Legacy library-menu fallback styles */
.library-menu {
    height: 100%;
    background-color: #d9d9d9;
    position: relative;
}

.library-menu:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #d9d9d9;
    right: 100%;
}

.library-menu ul {
    margin: auto;
    padding: 0;
    list-style: none;
}

.library-menu .split-title {
    display: block;
    padding: 1.5rem 0 1rem 0;
    font-weight: 500;
    position: relative;
}

.library-menu .split-title.arrow-down:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 35px;
    background: url(/content/images/arrow-down.svg) no-repeat center;
    background-size: 20px 35px;
    display: inline-block;
}

.library-breadcrumb {
    font-family: "DIN Next LT Pro", sans-serif;
    margin-bottom: 1rem;
    font-weight: 500;
}

.library-breadcrumb a {
    display: inline-block;
}

.library-breadcrumb a:not(:last-child):after {
    content: "";
    width: 24px;
    height: 14px;
    background: url(/content/images/arrow-right-alt.svg) no-repeat center;
    background-size: contain;
    display: inline-block;
    margin: auto 0.5rem;
}

.library-page {
    font-family: "DIN Next LT Pro", sans-serif;
    color: #63666a;
}

.library-page .library-title {
    display: block;
    margin-bottom: 1rem;
    font-size: 20px;
    letter-spacing: 0.1rem;
}

.library-page .library-description {
    margin-bottom: 3rem;
    font-weight: 300;
    font-size: 16px;
}

.library-page .library-collection-title {
    display: block;
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 500;
}

.collection-list-library {}

.collection-list-library .collection-list-item {
    text-align: center;
}

.collection-list-library .collection-list-item picture {
    display: block;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.collection-list-library:not(.no-effect) .collection-list-item picture::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(99, 102, 106, 0.8);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.collection-list-library:not(.no-effect) .collection-list-item:hover picture::before {
    opacity: 0;
}

.collection-list-library:not(.no-effect) .collection-list-item .image-overlay-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 300;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.collection-list-library:not(.no-effect) .collection-list-item:hover .image-overlay-text {
    opacity: 0;
}

.collection-list-library .collection-list-item span {
    display: block;
    color: #63666a;
    font-size: 16px;
    text-align: center;
}

.collection-list-library .collection-list-item:hover span {
    color: #000;
}

.download-list-library {
    font-family: "DIN Next LT Pro", sans-serif;
}

.download-list-library .download-list-item {}

/* Kare resimler için - LibraryDetailAllImages */
.download-list-library .library-image-square {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* Fallback for older browsers - creates square */
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #f5f5f5;
}

/* Modern browsers - aspect-ratio support */
@supports (aspect-ratio: 1 / 1) {
    .download-list-library .library-image-square {
        padding-bottom: 0;
        aspect-ratio: 1 / 1;
    }
}

.download-list-library .library-image-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.download-list-library .download-list-item picture {
    display: block;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* Slick dots */
.collection-slider .slick-dots {
    bottom: -30px;
    text-align: center;
    gap: 1rem;
}

.collection-slider .slick-dots li {
    display: inline-block;
    padding: 0 0.5rem;
}

.collection-slider .slick-dots li button {
    display: inline-block;
    font-size: 0;
    border: none;
    width: 10px;
    height: 10px;
    padding: 0.25rem;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.collection-slider .slick-dots li.slick-active button {
    background: #333;
}

.product-top-bar {
    font-family: "DIN Next LT Pro", sans-serif;
    background-color: #fff;
    text-align: center;
    padding: 1rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: sticky;
    top: 68px;
    z-index: 2;
}

.product-top-bar a {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
}

.product-image {
    max-width: 100%;
    height: auto;
}

.configurator-preview {}

.product-spec-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.product-spec-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: #555;
}

.product-section-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.product-section-title small {
    display: block;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
}

.configurator-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 400;
}

.configurator-title small {
    display: block;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
}

/* ===================================
   CONFIGURATOR - Premium Redesign
   =================================== */

.cfg-section {
    position: relative;
}

.cfg-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cfg-section-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
    white-space: nowrap;
}

.cfg-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d0d0d0, transparent);
}

/* Preview Card */
.cfg-preview-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 120px;
}

/* Info Bar */
.cfg-info-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.cfg-product-name {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin: 0 0 0.35rem 0;
}

.cfg-product-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #888;
}

.cfg-meta-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
}

/* Action Buttons */
.cfg-actions {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cfg-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: #555;
    transition: all 0.25s ease;
    text-decoration: none !important;
    cursor: pointer;
}

.cfg-action-btn svg {
    transition: transform 0.25s ease;
}

.cfg-action-btn span {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cfg-action-btn:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.cfg-action-btn:hover svg {
    transform: translateY(-1px);
}

.cfg-action-btn--primary {
    background: #1a1a1a;
    color: #fff !important;
}

.cfg-action-btn--primary:hover {
    background: #333;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Category Tabs */
.cfg-tabs {
    margin-bottom: 1.5rem;
}

.cfg-tabs .nav-pills {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    --bs-nav-pills-border-radius: 0;
}

.cfg-tabs .nav-pills::-webkit-scrollbar {
    display: none;
}

.cfg-tab-link {
    display: block;
    padding: 0.75rem 1.25rem;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #999 !important;
    background: none !important;
    border: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.cfg-tab-link:hover {
    color: #555 !important;
}

.cfg-tab-link.active {
    color: #1a1a1a !important;
    border-bottom-color: #1a1a1a;
    font-weight: 500;
}

/* Tab Content */
.cfg-tab-content {
    position: relative;
}

.cfg-variation-header {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #aaa;
    margin-bottom: 1rem;
}

/* Swatches Container */
.cfg-swatches {
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

.cfg-swatches::-webkit-scrollbar {
    width: 3px;
}

.cfg-swatches::-webkit-scrollbar-track {
    background: transparent;
}

.cfg-swatches::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.cfg-swatches::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* Individual Swatch */
.cfg-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.cfg-swatch:hover {
    background: #f8f8f8;
}

.cfg-swatch-img {
    width: 100%;
    max-width: 72px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    background: #f0f0f0;
}

.cfg-swatch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cfg-swatch:hover .cfg-swatch-img {
    border-color: #ccc;
}

.cfg-swatch:hover .cfg-swatch-img img {
    transform: scale(1.05);
}

.cfg-swatch-label {
    display: block;
    margin-top: 0.5rem;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #777;
    text-align: center;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.cfg-swatch:hover .cfg-swatch-label {
    color: #333;
}

/* Selected State */
.cfg-swatch.option-selected .cfg-swatch-img {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.cfg-swatch.option-selected .cfg-swatch-img::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 2;
}

.cfg-swatch.option-selected .cfg-swatch-label {
    color: #1a1a1a;
    font-weight: 500;
}

/* col-xl-2-4: 5 columns on xl */
.col-xl-2-4 {
    flex: 0 0 auto;
}

@media (min-width: 1200px) {
    .col-xl-2-4 {
        width: 20%;
    }
}

/* Configurator swatch circle sizes – responsive */
@media (min-width: 576px) {
    .cfg-swatch-img {
        max-width: 78px;
    }
}
@media (min-width: 768px) {
    .cfg-swatch-img {
        max-width: 84px;
    }
}
@media (min-width: 992px) {
    .cfg-swatch-img {
        max-width: 88px;
    }
}
@media (min-width: 1200px) {
    .cfg-swatch-img {
        max-width: 92px;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cfg-preview-card {
        position: static;
        margin-bottom: 1.5rem;
    }

    .cfg-info-bar {
        flex-direction: column;
    }

    .cfg-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .cfg-section-header {
        margin-bottom: 1.5rem;
    }

    .cfg-product-name {
        font-size: 1.25rem;
    }

    .cfg-action-btn {
        padding: 0.4rem 0.5rem;
    }

    .cfg-action-btn span {
        font-size: 0.6rem;
    }

    .cfg-swatches {
        max-height: 400px;
    }

    .cfg-tab-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}

.product-bottom-slider {
    position: relative;
    padding: 3rem 60px;
    width: 100%;
    overflow: hidden;
}

/* Slick slider yüklenmeden önce */
.product-bottom-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    padding: 3rem 0;
}

/* Slick slider ayarları */
.product-bottom-slider.slick-initialized .slick-list {
    margin: 0 -2rem;
    overflow: hidden;
}

.product-bottom-slider.slick-initialized .slick-slide {
    padding: 0 2rem;
}

.product-bottom-slider a {
    display: block;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
    background: transparent;
    position: relative;
    width: 100%;
    outline: none;
}

.product-bottom-slider a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-bottom-slider picture {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.product-bottom-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-bottom-slider a:hover img {
    transform: scale(1.02);
}

/* Slick ok butonları - Minimal tasarım */
.product-bottom-slider .slick-prev,
.product-bottom-slider .slick-next,
.product-bottom-slider.cdl-slider.slick-initialized .slick-prev,
.product-bottom-slider.cdl-slider.slick-initialized .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 44px;
    height: 44px;

    z-index: 10 !important;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;

    display: flex !important;
    align-items: center;
    justify-content: center;

    opacity: 0.85;
    visibility: visible !important;
    cursor: pointer;

    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-bottom-slider .slick-prev:hover,
.product-bottom-slider .slick-next:hover,
.product-bottom-slider.cdl-slider.slick-initialized .slick-prev:hover,
.product-bottom-slider.cdl-slider.slick-initialized .slick-next:hover {
    opacity: 1;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.05);
}

/* Sol ok */
.product-bottom-slider .slick-prev,
.product-bottom-slider.cdl-slider.slick-initialized .slick-prev {
    left: 12px !important;
}

/* Sağ ok */
.product-bottom-slider .slick-next,
.product-bottom-slider.cdl-slider.slick-initialized .slick-next {
    right: 12px !important;
}

/* Slick default iconu kapat - More Images .cdl-slider :before'u da kapat */
.product-bottom-slider .slick-prev:before,
.product-bottom-slider .slick-next:before,
.product-bottom-slider.cdl-slider.slick-initialized .slick-prev:before,
.product-bottom-slider.cdl-slider.slick-initialized .slick-next:before {
    display: none !important;
}

/* SVG ok ikonları */
.product-bottom-slider .slick-prev svg,
.product-bottom-slider .slick-next svg,
.product-bottom-slider.cdl-slider.slick-initialized .slick-prev svg,
.product-bottom-slider.cdl-slider.slick-initialized .slick-next svg {
    width: 18px;
    height: 18px;
    stroke: #333 !important;
    stroke-width: 2.5;
    transition: stroke 0.2s ease;
}

.product-bottom-slider .slick-prev:hover svg,
.product-bottom-slider .slick-next:hover svg,
.product-bottom-slider.cdl-slider.slick-initialized .slick-prev:hover svg,
.product-bottom-slider.cdl-slider.slick-initialized .slick-next:hover svg {
    stroke: #000 !important;
}

/* Premium gallery (listing images) — oklar More Images ile aynı */
.premium-gallery-main .slick-prev,
.premium-gallery-main .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px;
    height: 44px;
    z-index: 10 !important;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    visibility: visible !important;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.premium-gallery-main .slick-prev:hover,
.premium-gallery-main .slick-next:hover {
    opacity: 1;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.05);
}
.premium-gallery-main .slick-prev { left: 12px !important; }
.premium-gallery-main .slick-next { right: 12px !important; }
.premium-gallery-main .slick-prev:before,
.premium-gallery-main .slick-next:before { display: none !important; }
.premium-gallery-main .slick-prev svg,
.premium-gallery-main .slick-next svg {
    width: 18px;
    height: 18px;
    stroke: #333 !important;
    stroke-width: 2.5;
    transition: stroke 0.2s ease;
}
.premium-gallery-main .slick-prev:hover svg,
.premium-gallery-main .slick-next:hover svg { stroke: #000 !important; }

/* ═══════════════════════════════════════════════════════════ */
/*  Product Detail — Premium Gallery (Listing Images Slider)  */
/* ═══════════════════════════════════════════════════════════ */
.premium-gallery {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.premium-gallery-main {
    position: relative;
    background: #fafafa;
    overflow: hidden;
}
.premium-gallery-main.premium-gallery-single {
    background: transparent;
}
.premium-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.4s ease;
}
.premium-gallery-single {
    cursor: zoom-in;
}
.premium-gallery-single img {
    max-width: 500px;
    margin: 0 auto;
}

.listing-images-slider .slick-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.listing-images-slider .slick-slide.slick-active {
    opacity: 1;
}
.listing-images-slider .slick-list {
    overflow: hidden;
}

.premium-gallery-thumbs-wrap {
    margin-top: 12px;
    padding: 0 4px;
}
.listing-thumbs-slider .slick-track {
    display: flex;
    gap: 8px;
}
.premium-gallery-thumb {
    width: 64px !important;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.premium-gallery-thumb:hover {
    opacity: 0.85;
    transform: scale(1.04);
}
.premium-gallery-thumb.slick-current,
.premium-gallery-thumb.is-active {
    opacity: 1;
    border-color: #1a1a1a;
}
.premium-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.listing-thumbs-slider .slick-list {
    overflow: hidden;
}
.listing-thumbs-slider .slick-slide {
    outline: none;
}

.premium-gallery-counter {
    position: absolute;
    bottom: 84px;
    right: 12px;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #6b7280;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 12px;
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.premium-gallery:hover .premium-gallery-counter {
    opacity: 1;
}
.premium-gallery-sep {
    margin: 0 2px;
    color: #d1d5db;
}

@media (max-width: 768px) {
    .premium-gallery { max-width: 100%; }
    .premium-gallery-main .slick-prev,
    .premium-gallery-main .slick-next {
        width: 34px;
        height: 34px;
        opacity: 1;
    }
    .premium-gallery-main .slick-prev { left: 6px; }
    .premium-gallery-main .slick-next { right: 6px; }
    .premium-gallery-thumb {
        width: 52px !important;
        height: 52px;
    }
    .premium-gallery-counter {
        bottom: 72px;
        opacity: 1;
    }
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .product-bottom-slider {
        padding: 2.5rem 50px;
    }

    .product-bottom-slider:not(.slick-initialized) {
        gap: 3rem;
        padding: 2.5rem 0;
    }
}

@media (max-width: 992px) {
    .product-bottom-slider {
        padding: 2rem 45px;
    }

    .product-bottom-slider:not(.slick-initialized) {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 0;
    }

    .product-bottom-slider picture {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 576px) {
    .product-bottom-slider {
        padding: 1.5rem 40px;
    }

    .product-bottom-slider:not(.slick-initialized) {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .product-bottom-slider picture {
        aspect-ratio: 16 / 9;
    }

    .product-bottom-slider .slick-prev,
    .product-bottom-slider .slick-next {
        width: 36px;
        height: 36px;
    }

    .product-bottom-slider .slick-prev {
        left: 8px !important;
    }

    .product-bottom-slider .slick-next {
        right: 8px !important;
    }

    .product-bottom-slider .slick-prev svg,
    .product-bottom-slider .slick-next svg {
        width: 14px;
        height: 14px;
    }
}

.page-banner {
    position: relative;
}

.page-banner .page-banner-title {
    position: absolute;
    right: 10%;
    bottom: 15%;
    color: #fff;
}

.page-banner .page-banner-title h1 {
    font-weight: 600;
}

.page-banner .page-banner-title h1 span {
    font-weight: 300;
}

.page-banner .page-video-title {
    position: absolute;
    z-index: 1;
    right: 3%;
    bottom: 2.5%;
    color: #fff;
}

.page-banner .page-video-title h1 {
    font-weight: 300;
}

.product-detail {
    color: #63666a;
}

.product-detail .product-title {
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.product-detail .product-description {
    font-weight: 300;
    line-height: normal;
}

.product-detail .product-more-title {
    display: block;
    margin: 3rem auto;
    font-weight: 400;
    letter-spacing: 1rem;
}

/* More Images Title */
.product-more-title {
    font-family: "DIN Next LT Pro", sans-serif;
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
}

.product-more-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #333;
}

/* ===================================
   PRODUCT DETAIL - Content Sections
   =================================== */

.pdx-content-area {
    padding: 3rem 2rem;
}

.pdx-content-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.pdx-section {
    margin-bottom: 3rem;
}

.pdx-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pdx-section-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
    white-space: nowrap;
}

/* DESCRIPTION, TECHNICAL INFO: same as MORE IMAGES but 2px larger */
#description .pdx-section-label,
#technical-info .pdx-section-label {
    font-size: 20px;
}

.pdx-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d0d0d0, transparent);
}

/* Variation Grid */
.pdx-variation-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.pdx-variation-card {
    display: block;
    text-decoration: none !important;
    text-align: center;
}

.pdx-variation-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    transition: box-shadow 0.3s ease;
}

.pdx-variation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pdx-variation-card:hover .pdx-variation-img {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.pdx-variation-card:hover .pdx-variation-img img {
    transform: scale(1.05);
}

.pdx-variation-name {
    display: block;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #555;
    padding: 0.6rem 0;
    transition: color 0.3s ease;
}

.pdx-variation-card:hover .pdx-variation-name {
    color: #1a1a1a;
}

/* Text Body */
.pdx-text-body {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
}

.pdx-text-body p {
    margin-bottom: 0.75rem;
}

.pdx-text-body h2,
.pdx-text-body h3 {
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* File Links */
.pdx-file-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.pdx-file-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    background: #f8f8f6;
    color: #333;
    text-decoration: none !important;
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    max-width: fit-content;
}

.pdx-file-link svg {
    flex-shrink: 0;
    color: #777;
    transition: color 0.25s ease;
}

.pdx-file-link:hover {
    background: #f0f0ee;
    color: #1a1a1a;
}

.pdx-file-link:hover svg {
    color: #1a1a1a;
}

.pdx-file-link.please-login svg {
    color: #999;
}

/* Technical Image */
.pdx-technical-img {
    max-width: 700px;
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.pdx-technical-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.pdx-technical-img:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 991px) {
    .pdx-content-area {
        padding: 2rem 1.5rem;
    }

    .pdx-variation-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .pdx-content-area {
        padding: 1.5rem 1rem;
    }

    .pdx-section {
        margin-bottom: 2rem;
    }

    .pdx-section-header {
        margin-bottom: 1.25rem;
    }

    .pdx-section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .pdx-variation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .pdx-variation-name {
        font-size: 0.65rem;
    }

    .pdx-text-body {
        font-size: 0.85rem;
    }

    .pdx-file-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .pdx-technical-img {
        border-radius: 6px;
    }
}

.product-detail .product-see-designer {
    display: flex;
    align-items: end;
    font-weight: 400;
    line-height: 1rem;
}

.product-detail .product-see-designer:after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 25px;
    margin-left: 0.5rem;
    background: url(/content/images/arrow-right.svg) no-repeat bottom;
}

.configurator-tab-links ul {
    flex-direction: column;
}

.configurator-tab-links ul li {
    margin-bottom: 0.5rem;
}

.product-technical-detail {}

.product-technical-detail .product-technical-description {
    font-weight: 300;
    line-height: normal;
}

.product-technical-detail .product-technical-body {
    font-weight: 300;
    line-height: normal;
}

.product-technical-detail .product-technical-body h2 {
    margin-bottom: 2rem;
}

.product-technical-detail .product-technical-body b {
    display: block;
    font-weight: 400;
}

/* Product detail: bölüm başlıkları regular */
#description .collection-title,
#technical-info .collection-title {
    font-weight: 400;
}

.btn-configurator {
    display: block;
}

.btn-configurator a {
    background-color: #d9d9d9;
    border-radius: 2rem;
    padding: 1rem 2.5rem;
    font-weight: 400;
    color: #000 !important;
    letter-spacing: 1rem;
}

.btn-configurator a:hover {
    background-color: #63666a;
    color: #fff !important;
}

.configurator-carousel-buttons {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
}

.configurator-carousel-buttons a {
    display: inline-block;
    padding: 1rem;
    background-color: #fff;
    text-align: center;
}

.configurator-carousel-buttons a:hover {
    background-color: #d9d9d9;
}

.configurator-carousel-buttons a i {}

.configurator-carousel-buttons a span {
    display: block;
    color: #000;
}

.configurator-detail {}

.configurator-detail span {
    display: block;
    color: #000;
    font-weight: 600;
}

.configurator-detail p {
    font-size: 16px;
}

.configurator-list {}

.configurator-list .nav-pills {
    gap: 2rem;
    --bs-nav-pills-border-radius: 0;
}

.configurator-list .nav-link {
    background-color: transparent !important;
    border: none;
    color: #63666a;
    padding: var(--bs-nav-link-padding-y) 0;
}

.configurator-list .nav-link.active {
    border-bottom: 2px solid #000 !important;
    color: #000;
    font-weight: 500;
}

.configurator-list .nav-link:hover {
    border-bottom: 2px solid #000;
}

.configurator-list .configurator-list-title {
    margin: 1rem auto;
    padding-bottom: 1rem;
    border-bottom: 1px solid #63666a;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.configurator-list .configurator-list-items {
    max-height: 900px;
    padding-right: 1rem;
    overflow-x: hidden;
    overflow-y: scroll;
}

.configurator-list .configurator-list-items::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.configurator-list .configurator-list-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.configurator-list .configurator-list-items::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.configurator-list .configurator-list-items::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.configurator-list .configurator-list-items img {
    display: block;
}

.configurator-list .configurator-list-items span {
    display: block;
    padding: 0.5rem 0;
    font-size: 18px;
}

.library-menu-list li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.library-menu-list a {
    font-weight: 400;
}

.designer-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.designer-content {
    flex: 1 0 auto;
}

.designer-footer-link {
    font-family: "DIN Next LT Pro", sans-serif;
    flex-shrink: 0;
    text-align: center;
    padding: 2rem 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.designer-footer-link a {
    color: #000;
    text-decoration: underline;
}

.designer-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.designer-text p {
    font-size: 0.95rem;
    color: #444;
}

.designer-text h5 {
    margin-bottom: 1rem;
    font-weight: 500;
}

.page-center-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #63666a;
    color: #fff;
}

.page-center-login small {
    font-size: 14px;
}

.page-center-login input {
    min-width: 400px;
    padding: 0.375rem 1.5rem;
    background-color: transparent;
    color: #fff;
    --bs-border-color: #fff;
    --bs-border-radius: 1rem;
}

.page-center-login input::placeholder {
    color: #fff;
    opacity: 0.5;
    font-weight: 300;
}

.page-center-login button {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: 1.13rem;
    --bs-btn-border-color: #fff;
    --bs-btn-border-radius: 1.5rem;
    background: url(/content/images/arrow-right-white.svg) no-repeat center;
    color: #fff;
}

.page-center-login button:hover {
    background-color: #9c9c9c;
}

.page-center-login button:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.5);
}

.footer-subscribe {
    font-family: "DIN Next LT Pro", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-subscribe small {
    font-size: 14px;
}

.footer-subscribe input {
    min-width: 400px;
    padding: 0.375rem 4rem;
    --bs-border-color: #63666a;
    --bs-border-radius: 1rem;
}

.footer-subscribe button {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: 1rem;
    --bs-btn-border-color: #63666a;
    --bs-btn-border-radius: 1rem;
    background: url(/content/images/arrow-right.svg) no-repeat center;
}

.footer-subscribe button:hover {
    background-color: #d9d9d9;
}

.footer-subscribe button:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.5);
}

.footer-icons-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-icons {
    margin: 0;
    padding: 0 1rem;
    list-style: none;
}

.footer-icons li {}

.footer-icons li a {
    display: inline-block;
}

.footer-icons li span {
    display: inline-block;
    width: 32px;
    height: 22px;
}

.footer-icons li span.icon-aproducts {
    background: url(/content/images/footer-icon-aproducts.svg) no-repeat center;
}

.footer-icons li span.icon-instagram {
    background: url(/content/images/footer-icon-instagram.svg) no-repeat center;
}

.footer-icons li span.icon-linkedin {
    background: url(/content/images/footer-icon-linkedin.svg) no-repeat center;
}

.footer-icons li span.icon-facebook {
    background: url(/content/images/footer-icon-facebook.svg) no-repeat center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo small {
    font-size: 14px;
}

.footer-bottom {
    font-family: "DIN Next LT Pro", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #63666a;
    color: #fff;
    font-size: 13px;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.footer-copyright {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05rem;
}

.footer-copyright a.footer-email {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-copyright a.footer-email:hover {
    text-decoration: underline;
}

.footer-copyright strong {
    color: #fff;
    font-weight: 600;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
}

.footer-developer {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-developer a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: all 0.2s ease;
    letter-spacing: 0.05rem;
}

.footer-developer a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem 0.85rem;
}

.footer-bottom-nav li {
    white-space: nowrap;
}

.footer-bottom-nav li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer-bottom-nav li a:hover {
    color: #fff;
}

.footer-developer a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.mobile-fixed-wrapper {
    position: relative;
}

.mobile-fixed {
    width: 100%;
    background-color: #63666a;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
}

.mobile-fixed a {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1.25rem;
    gap: 0.35rem;
    align-items: center;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: color 0.2s ease;
}

.mobile-fixed a:hover,
.mobile-fixed a:active {
    color: #fff;
}

.mobile-fixed a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.login-register-box {
    font-weight: 300;
    font-size: 1rem;
}

.login-register-box input:not([type="checkbox"]),
textarea {
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: .5rem 1rem;
}

.login-link {
    text-decoration: underline;
}

/* Library login-required modal: Log in butonu gri */
.swal-confirm-login-gray.swal2-styled {
    background-color: #63666a !important;
}
.swal-confirm-login-gray.swal2-styled:hover {
    background-color: #555 !important;
}

.btn-login {
    background: #666;
    color: #fff;
    border: none;
    padding: .6rem 2rem;
}

.btn-login:hover {
    background: #555;
}

.bottom-box {
    background: #666;
    color: #fff;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.bottom-box a {
    color: #fff;
}

.export-pdf-description {
    background-color: #e0e0e0;
}

.export-document-title {
    font-family: "DIN Next LT Pro", sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.export-document-title:before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #000;
}

@media (max-width: 1366px) {
    .designer-container .thanks-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .col-2-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .cfg-swatch-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 992px) {
    .col-2-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 768px) {
    .mx-md-10 {
        margin-right: 10rem !important;
        margin-left: 10rem !important;
    }

    .my-md-10 {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important;
    }

    .mb-md-10 {
        margin-bottom: 10rem !important;
    }

    .designer-img {
        height: 100%;
    }

    .page-bottom-padding {
        padding-bottom: 10rem;
    }

    .footer-top-margin {
        margin-top: 30rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .home-slider-pin {
        width: 15px;
        height: 15px;
        background-size: contain;
    }

    .about-list {
        --bs-gutter-x: 0;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-text {
        margin-left: 0;
        margin-top: 15px;
    }

    .designer-container .thanks-text {
        font-size: inherit;
    }

    .product-top-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 0;
    }

    .product-top-bar a {
        font-family: "DIN Next LT Pro", sans-serif;
        padding: 0.75rem 0.5rem;
        font-size: 0.7rem;
        letter-spacing: 0.02rem;
        border-bottom: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .product-top-bar a:nth-child(2n) {
        border-right: none;
    }

    .product-top-bar a:nth-child(n+3) {
        border-bottom: none;
    }

    .product-technical-detail .btn-configurator a {
        padding: 1rem 1.5rem;
        letter-spacing: 0.3rem;
    }

    .collection-left-item {
        flex-direction: column;
    }

    .library-menu {
        height: 100%;
        max-height: 100%;
    }

    .page-center-login input {
        min-width: auto;
    }

    .footer-subscribe input {
        min-width: auto;
    }

    .footer-icons-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-icons {
        display: flex;
        justify-content: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
        order: 1;
    }

    .footer-icons li span {
        height: 32px;
        border: 1px solid #63666a;
        border-radius: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .footer-copyright {
        justify-content: center;
        order: 1;
    }

    .footer-separator {
        display: none;
    }

    .footer-copyright span:last-child {
        width: 100%;
    }

    .footer-developer {
        order: 3;
    }

    .footer-bottom-nav {
        order: 2;
        justify-content: center;
    }

    .footer-bottom-nav ul {
        justify-content: center;
        gap: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .col-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .top-menu-list {
        width: 100%;
        height: 100vh;
        left: 0;
        z-index: 1;
    }

    .top-menu-list ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .top-menu-list span {
        display: block;
        text-align: center;
        border-bottom: 1px solid #63666a;
        margin-bottom: 1rem;
    }

    .top-menu-list ul li {
        display: block;
        margin-bottom: 1rem;
    }

    .top-menu-list ul li a {
        font-weight: 400;
    }
}

/* Hamburger Button - SVG ikon (net ve tutarlı görünüm) */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
}

.hamburger-btn:hover {
    color: #111;
}

.hamburger-svg {
    display: block;
    width: 20px;
    height: 14px;
    flex-shrink: 0;
}

/* Eski span tabanlı ikon (geri uyumluluk - başka sayfalarda kullanılıyorsa) */
.hamburger-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    position: relative;
    flex-shrink: 0;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #333;
}

.hamburger-icon::before {
    top: -6px;
}

.hamburger-icon::after {
    top: 6px;
}

/* Hamburger Sidebar */
.hamburger-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10001;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-sidebar.active {
    pointer-events: auto;
}

.hamburger-sidebar-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
    z-index: 1;
    cursor: pointer;
}

.hamburger-sidebar.active .hamburger-sidebar-overlay {
    background-color: rgba(0, 0, 0, 0.35);
}

.hamburger-sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    max-height: 100vh;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 60px 44px 44px;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* Güzel scrollbar */
.hamburger-sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.hamburger-sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}

.hamburger-sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}

.hamburger-sidebar-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Firefox scrollbar */
.hamburger-sidebar-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
}

.hamburger-sidebar.active .hamburger-sidebar-content {
    transform: translateX(0);
}

.hamburger-close-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.hamburger-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
    opacity: 0.7;
}

.close-icon-x {
    width: 18px;
    height: 18px;
    position: relative;
}

.close-icon-x::before,
.close-icon-x::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    background-color: #777;
    top: 50%;
    left: 0;
    transition: background-color 0.2s ease;
}

.hamburger-close-btn:hover .close-icon-x::before,
.hamburger-close-btn:hover .close-icon-x::after {
    background-color: #333;
}

.close-icon-x::before {
    transform: rotate(45deg);
}

.close-icon-x::after {
    transform: rotate(-45deg);
}

.hamburger-logo {
    padding: 1rem 0;
}

.hamburger-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hamburger-section {
    margin-bottom: 1rem;
}

.hamburger-section-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hamburger-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu-list li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hamburger-menu-list li:last-child {
    border-bottom: none;
}

.hamburger-menu-list li a {
    color: #444;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    position: relative;
}

.hamburger-menu-list li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    margin-right: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger-menu-list li a:hover {
    color: #1a1a1a;
}

.hamburger-menu-list li a:hover::before {
    width: 16px;
    margin-right: 10px;
}

.hamburger-menu-list-secondary {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu-list-secondary li {
    margin-bottom: 0;
}

.hamburger-menu-list-secondary li a {
    color: #888;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 300;
    transition: all 0.25s ease;
    display: block;
    padding: 0.45rem 0;
}

.hamburger-menu-list-secondary li a:hover {
    color: #1a1a1a;
    letter-spacing: 2px;
}

.hamburger-menu-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.03) 100%);
    margin: 1.25rem 0;
}

.hamburger-search-form {
    position: relative;
    margin: 2rem 0 2.5rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    transition: border-color 0.3s ease;
}

.hamburger-search-form:focus-within {
    border-bottom-color: rgba(0, 0, 0, 0.3);
}

.hamburger-search-input {
    flex: 1;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
}

.hamburger-search-input::placeholder {
    color: #aaa;
    font-size: 13px;
    letter-spacing: 1px;
}

.hamburger-search-input:focus {
    outline: none;
}

.hamburger-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.hamburger-search-btn:hover {
    opacity: 0.6;
}

.hamburger-search-btn svg {
    stroke: #888;
    transition: stroke 0.3s ease;
    width: 18px;
    height: 18px;
}

.hamburger-search-btn:hover svg {
    stroke: #333;
}

.hamburger-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger-footer-icon svg {
    stroke: #999;
}

.hamburger-footer-langs {
    display: flex;
    gap: 1rem;
}

.hamburger-footer-langs a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.hamburger-footer-langs a:hover,
.hamburger-footer-langs a.active-lang {
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (min-width: 768px) {
    .hamburger-sidebar-content {
        max-width: 480px;
        padding: 70px 56px 56px;
    }

    .navbar-premium-inner {
        padding: 0 3.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-premium {
        padding: 1.25rem 0;
    }

    .navbar-premium-inner {
        padding: 0 1rem;
    }

    /* Mobilde hamburger ikonu sağda */
    .navbar-premium-inner .navbar-center {
        order: 1;
    }

    .navbar-premium-inner .navbar-right-mobile {
        order: 2;
    }

    .navbar-premium-inner .navbar-left {
        order: 3;
        justify-content: flex-end;
    }

    .hamburger-sidebar-content {
        max-width: 100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        max-height: 100dvh;
        top: 0;
        left: 0;
        padding-bottom: 100px;
        /* Footer için boşluk */
        position: fixed;
        /* Mobilde fixed - viewport'a göre */
        overscroll-behavior-y: contain;
        /* Scroll geri kaçmayı engelle */
        touch-action: pan-y;
        /* Sadece dikey scroll */
    }
}

/* ===================================
   PRODUCT LISTING - Modern Grid Layout
   =================================== */

.product-listing {
    font-family: "DIN Next LT Pro", sans-serif;
    padding: 4rem 0 6rem;
    background-color: #fafafa;
    min-height: 100vh;
}

.product-listing__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.product-listing__header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-listing__title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 0.3rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.product-listing__subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.1rem;
    margin: 0;
}

/* Grid Layout */
.product-listing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Product Card */
.product-listing__card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-listing__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.product-listing__image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.product-listing__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-listing__card:hover .product-listing__image {
    transform: scale(1.08);
}

/* Overlay */
.product-listing__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    transition: opacity 0.4s ease;
}

.product-listing__card:hover .product-listing__overlay {
    opacity: 1;
}

.product-listing__view-btn {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    border-radius: 2px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
}

.product-listing__card:hover .product-listing__view-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Info Section */
.product-listing__info {
    padding: 1.25rem 1rem;
    text-align: center;
}

.product-listing__name {
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.08rem;
    margin: 0;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.product-listing__card:hover .product-listing__name {
    color: #000;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .product-listing__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .product-listing__container {
        padding: 0 1.5rem;
    }
}

/* Responsive - Small Tablet */
@media (max-width: 992px) {
    .product-listing {
        padding: 3rem 0 5rem;
    }

    .product-listing__header {
        margin-bottom: 3rem;
    }

    .product-listing__title {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }

    .product-listing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .product-listing {
        padding: 2rem 0 4rem;
    }

    .product-listing__container {
        padding: 0 1rem;
    }

    .product-listing__header {
        margin-bottom: 2rem;
    }

    .product-listing__title {
        font-size: 1.5rem;
        letter-spacing: 0.15rem;
    }

    .product-listing__subtitle {
        font-size: 0.875rem;
    }

    .product-listing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-listing__info {
        padding: 1rem 0.75rem;
    }

    .product-listing__name {
        font-size: 0.8rem;
        letter-spacing: 0.05rem;
    }

    .product-listing__overlay {
        display: none;
    }

    .product-listing__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }
}

/* ===================================
   DOWNLOAD PAGE - Premium
   =================================== */

.dl-page {
    font-family: "DIN Next LT Pro", sans-serif;
}

/* Hero */
.dl-hero {
    padding: 4.5rem 2rem 3rem;
    text-align: center;
    background: #fafaf8;
}

.dl-hero-inner {
    max-width: 600px;
    margin: 0 auto;
}

.dl-hero-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.dl-hero-divider {
    width: 40px;
    height: 1.5px;
    background: #1a1a1a;
    margin: 0 auto 1.25rem;
}

.dl-hero-subtitle {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #888;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

/* Content */
.dl-content {
    padding: 3rem 2rem 5rem;
}

.dl-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* Section */
.dl-section {
    margin-bottom: 3rem;
}

.dl-section:last-child {
    margin-bottom: 0;
}

.dl-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.dl-section-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #333;
    text-transform: uppercase;
    white-space: nowrap;
}

.dl-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d0d0d0, transparent);
}

.dl-section-count {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* File List */
.dl-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* File Item */
.dl-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
    border-radius: 0;
}

.dl-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dl-item:hover {
    background: rgba(0, 0, 0, 0.015);
}

/* Icon */
.dl-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f3;
    border-radius: 10px;
    color: #888;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.dl-item:hover .dl-item-icon {
    background: #1a1a1a;
    color: #fff;
}

/* Info */
.dl-item-info {
    flex: 1;
    min-width: 0;
}

.dl-item-name {
    font-family: "DIN Next LT Pro", sans-serif;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dl-item-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dl-item-badge {
    font-family: "DIN Next LT Pro", sans-serif;
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
    background: #f0f0ee;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.dl-item-desc {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: #999;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Actions */
.dl-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.dl-action-btn {
    font-family: "DIN Next LT Pro", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #888;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.25s ease;
    background: transparent;
    border: 1px solid transparent;
}

.dl-action-btn:hover {
    color: #1a1a1a;
    background: #f0f0ee;
}

.dl-action-btn--outline {
    border: 1px solid #ddd;
    color: #666;
}

.dl-action-btn--outline:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    background: transparent;
}

.dl-action-btn--primary {
    width: auto;
    padding: 0 1rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    border: none;
}

.dl-action-btn--primary span {
    display: inline;
}

.dl-action-btn--primary i {
    font-size: 0.75rem;
}

.dl-action-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.dl-action-btn--primary:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .dl-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .dl-hero-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .dl-content {
        padding: 2rem 1rem 3rem;
    }

    .dl-item {
        padding: 1rem;
        gap: 1rem;
    }

    .dl-item-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.95rem;
    }

    .dl-item-name {
        font-size: 0.8rem;
    }

    .dl-action-btn--primary span {
        display: none;
    }

    .dl-action-btn--primary {
        width: 36px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .dl-hero {
        padding: 2.5rem 1rem 1.5rem;
    }

    .dl-hero-title {
        font-size: 1rem;
    }

    .dl-hero-subtitle {
        font-size: 0.8rem;
    }

    .dl-content {
        padding: 1.5rem 0.75rem 2rem;
    }

    .dl-item {
        padding: 0.85rem 0.75rem;
        gap: 0.75rem;
    }

    .dl-item-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 8px;
        font-size: 0.85rem;
    }

    .dl-item-name {
        font-size: 0.75rem;
    }

    .dl-item-badge {
        font-size: 8px;
    }

    .dl-item-desc {
        display: none;
    }

    .dl-action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .dl-action-btn--primary {
        width: 32px;
        padding: 0;
    }
}

/* ===================================
   CONTACT PAGE - Premium
   =================================== */

.ct-page {
    font-family: "DIN Next LT Pro", sans-serif;
}

/* Hero */
.ct-hero {
    padding: 4.5rem 2rem 3rem;
    text-align: center;
    background: #fafaf8;
}

.ct-hero--white {
    background: #fff;
}

.ct-hero-inner {
    max-width: 600px;
    margin: 0 auto;
}

.ct-hero-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.ct-hero-divider {
    width: 40px;
    height: 1.5px;
    background: #1a1a1a;
    margin: 0 auto 1.25rem;
}

.ct-hero-subtitle {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #888;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

/* Content */
.ct-content {
    padding: 3.5rem 2rem 5rem;
}

.ct-content-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid */
.ct-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Section Header */
.ct-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.ct-section-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #333;
    text-transform: uppercase;
    white-space: nowrap;
}

.ct-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d0d0d0, transparent);
}

/* Form */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ct-form-group {
    margin-bottom: 1.5rem;
}

.ct-input {
    font-family: "DIN Next LT Pro", sans-serif;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

.ct-input::placeholder {
    color: #aaa;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.ct-input:focus {
    border-bottom-color: #1a1a1a !important;
    box-shadow: none !important;
}

.ct-textarea {
    resize: none;
    min-height: 120px;
    line-height: 1.6;
}

.ct-btn-submit {
    font-family: "DIN Next LT Pro", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.ct-btn-submit:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Info Cards */
.ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.ct-info-list::-webkit-scrollbar {
    width: 4px;
}

.ct-info-list::-webkit-scrollbar-track {
    background: transparent;
}

.ct-info-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.ct-info-list::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.ct-info-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ct-info-card:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ct-info-label {
    font-family: "DIN Next LT Pro", sans-serif;
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.ct-info-body {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.2px;
}

.ct-info-body p {
    margin-bottom: 0.25rem;
}

.ct-info-body a {
    color: #666;
    text-decoration: none;
    transition: color 0.25s ease;
}

.ct-info-body a:hover {
    color: #1a1a1a;
}

.ct-info-link {
    font-family: "DIN Next LT Pro", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #888;
    text-decoration: none !important;
    text-transform: uppercase;
    margin-top: 0.75rem;
    transition: all 0.25s ease;
}

.ct-info-link i {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
}

.ct-info-link:hover {
    color: #1a1a1a;
}

.ct-info-link:hover i {
    transform: translateX(3px);
}

/* Recaptcha */
.ct-form .g-recaptcha {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .ct-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ct-content {
        padding: 3rem 1.5rem 4rem;
    }
}

@media (max-width: 576px) {
    .ct-hero {
        padding: 2.5rem 1rem 1.5rem;
    }

    .ct-hero-title {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .ct-content {
        padding: 2rem 1rem 3rem;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ct-btn-submit {
        width: 100%;
        justify-content: center;
    }

    .ct-info-card {
        padding: 1.25rem 0;
    }

    .ct-info-label {
        font-size: 0.65rem;
    }

    .ct-info-body {
        font-size: 0.8rem;
    }
}

/* ===================================
   BLOG PAGE - Premium
   =================================== */

.bl-page {
    font-family: "DIN Next LT Pro", sans-serif;
}

/* Hero */
.bl-hero {
    padding: 4.5rem 2rem 3rem;
    text-align: center;
    background: #fafaf8;
}

.bl-hero-inner {
    max-width: 600px;
    margin: 0 auto;
}

.bl-hero-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.bl-hero-divider {
    width: 40px;
    height: 1.5px;
    background: #1a1a1a;
    margin: 0 auto;
}

/* Content */
.bl-content {
    padding: 3.5rem 2rem 5rem;
}

.bl-content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Blog Card */
.bl-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bl-card:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bl-card--reverse {
    direction: rtl;
}

.bl-card--reverse>* {
    direction: ltr;
}

/* Media */
.bl-card-media {
    overflow: hidden;
}

.bl-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 10;
}

.bl-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bl-card:hover .bl-card-img-wrap img {
    transform: scale(1.04);
}

.bl-card-video {
    border-radius: 4px;
    overflow: hidden;
}

/* Body */
.bl-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bl-card-date {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.bl-card-title {
    font-family: "DIN Next LT Pro", sans-serif;
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-decoration: none !important;
    margin-bottom: 0.75rem;
    transition: color 0.25s ease;
}

.bl-card-title:hover {
    color: #555;
}

.bl-card-excerpt {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #777;
    letter-spacing: 0.2px;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl-card-link {
    font-family: "DIN Next LT Pro", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.bl-card-link i {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
}

.bl-card-link:hover {
    color: #555;
}

.bl-card-link:hover i {
    transform: translateX(3px);
}

/* Blog Responsive */
@media (max-width: 768px) {
    .bl-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .bl-hero-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .bl-content {
        padding: 2rem 1rem 3rem;
    }

    .bl-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .bl-card--reverse {
        direction: ltr;
    }

    .bl-card-title {
        font-size: 1rem;
    }

    .bl-card-excerpt {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bl-hero {
        padding: 2.5rem 1rem 1.5rem;
    }

    .bl-hero-title {
        font-size: 1rem;
    }

    .bl-card {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .bl-card-title {
        font-size: 0.9rem;
    }

    .bl-card-excerpt {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .bl-card-link {
        font-size: 0.65rem;
    }
}

/* ===================================
   BLOG DETAIL PAGE - Premium
   =================================== */

.bld-page {
    font-family: "DIN Next LT Pro", sans-serif;
}

/* Hero Media */
.bld-hero-media {
    background: #f5f5f3;
}

.bld-img-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.bld-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 560px;
    object-fit: cover;
}

.bld-video-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Content */
.bld-content {
    padding: 3.5rem 2rem 5rem;
}

.bld-content-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* Header */
.bld-header {
    margin-bottom: 2.5rem;
}

.bld-date {
    font-family: "DIN Next LT Pro", sans-serif;
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bld-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 1.25rem;
}

.bld-divider {
    width: 40px;
    height: 1.5px;
    background: #1a1a1a;
}

/* Lead */
.bld-lead {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    letter-spacing: 0.2px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Body */
.bld-body {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: #555;
    letter-spacing: 0.2px;
}

.bld-body p {
    margin-bottom: 1.25rem;
}

.bld-body h2,
.bld-body h3,
.bld-body h4 {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.bld-body h2 {
    font-size: 1.3rem;
}

.bld-body h3 {
    font-size: 1.1rem;
}

.bld-body h4 {
    font-size: 1rem;
}

.bld-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.bld-body a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.bld-body a:hover {
    color: #555;
}

.bld-body blockquote {
    border-left: 2px solid #1a1a1a;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #777;
    font-style: italic;
}

.bld-body ul,
.bld-body ol {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.bld-body li {
    margin-bottom: 0.5rem;
}

/* Blog Detail Responsive */
@media (max-width: 768px) {
    .bld-video-wrap {
        padding: 1rem;
    }

    .bld-content {
        padding: 2.5rem 1.5rem 3.5rem;
    }

    .bld-title {
        font-size: 1.3rem;
    }

    .bld-lead {
        font-size: 0.9rem;
    }

    .bld-body {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .bld-content {
        padding: 2rem 1rem 3rem;
    }

    .bld-title {
        font-size: 1.1rem;
    }

    .bld-lead {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .bld-body {
        font-size: 0.8rem;
        line-height: 1.8;
    }

    .bld-body h2 {
        font-size: 1.1rem;
    }

    .bld-body h3 {
        font-size: 1rem;
    }

    .bld-body h4 {
        font-size: 0.9rem;
    }
}


/* ===================================
   TYPOLOGY DETAIL PAGE - Slider
   =================================== */

.typd-slider-wrap {
    background: #f5f5f3;
    overflow: hidden;
}

.typd-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .typd-slide img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .typd-slide img {
        max-height: 280px;
    }
}

/* ===================================
   PRESS PAGE
   =================================== */
.press-page {
    padding-bottom: 4rem;
}

.press-content {
    padding: 2rem 1.5rem 4rem;
}

.press-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.press-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.press-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.press-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.press-slider-wrap {
    position: relative;
    padding: 0 44px;
}

.press-slider-wrap .press-slider {
    overflow: hidden;
}

.press-slider .cdl-slide-img {
    aspect-ratio: 4 / 3;
}

.press-slider .cdl-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-item:hover .press-slider .cdl-slide-img img {
    transform: scale(1.05);
}

.press-item-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    padding: 1.25rem 1rem;
    text-align: center;
    line-height: 1.4;
}

/* Press slider arrows */
.press-slider-wrap .slick-prev,
.press-slider-wrap .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 36px;
    height: 36px;
    z-index: 10;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.press-slider-wrap .slick-prev:hover,
.press-slider-wrap .slick-next:hover {
    background: #fafafa;
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.press-slider-wrap .slick-prev {
    left: 4px !important;
}

.press-slider-wrap .slick-next {
    right: 4px !important;
}

.press-slider-wrap .slick-prev:before,
.press-slider-wrap .slick-next:before {
    content: '' !important;
    display: none !important;
}

.press-slider-wrap .slick-prev svg,
.press-slider-wrap .slick-next svg {
    width: 16px;
    height: 16px;
    color: #555;
}

@media (max-width: 991px) {
    .press-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .press-content {
        padding: 1.5rem 1rem 3rem;
    }
}

@media (max-width: 576px) {
    .press-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .press-slider-wrap {
        padding: 0 40px;
    }
}

a#toggle-3d {
    display: none;
}
/* TEST-20260113-NEVSOFT */

   /* PDF: DESCRIPTION / TECHNICAL INFO / MORE IMAGES ile aynı tipografi */
   #export-pdf-area {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: #374151;
    overflow: visible;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#export-pdf-area .pdf-content {
    margin: 1.25rem;
    overflow: visible;
}
#export-pdf-area .pdf-header-meta {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.8rem;
}
#export-pdf-area .export-document-title {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 300;
    color: #374151;
}
#export-pdf-area .pdf-logo {
    width: 180px;
    height: auto;
}
/* Başlık: COLLECTION + ince çizgi + ARMCHAIR — şık hiyerarşi */
#export-pdf-area .pdf-title-block { margin-bottom: 0.85rem; }
#export-pdf-area .pdf-collection-name { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; color: #111; margin-bottom: 0.25rem; }
#export-pdf-area .pdf-title-line { display: block; width: 28px; height: 1px; background: #d1d5db; margin-bottom: 0.2rem; }
#export-pdf-area .pdf-product-type { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.08em; color: #6b7280; }
#export-pdf-area.pdf-single-page .pdf-title-block { margin-bottom: 0.5rem; }
#export-pdf-area.pdf-single-page .pdf-collection-name { font-size: 0.82rem; font-weight: 600; }
#export-pdf-area.pdf-single-page .pdf-product-type { font-size: 0.75rem; color: #6b7280; }
/* DIMENSIONS başlığı: ince çizgi, sade */
#export-pdf-area .pdf-dimensions-title { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
#export-pdf-area .pdf-dimensions-line { display: inline-block; width: 24px; height: 1px; background: #d1d5db; flex-shrink: 0; }
#export-pdf-area .pdf-dimensions-title .export-document-title { color: #374151; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.12em; }
#export-pdf-area .pdf-dimensions-list { margin-top: 0.35rem; }
#export-pdf-area .pdf-footer { font-size: 0.75rem; font-weight: 400; color: #9ca3af; }
#export-pdf-area .pdx-section { display: block !important; overflow: visible; }
#export-pdf-area .pdx-section-label {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #111 !important;
}
#export-pdf-area .pdx-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #e5e7eb, transparent);
}
#export-pdf-area .pdx-variation-name {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #000;
}
#export-pdf-area .small {
    font-weight: 400;
    color: #374151;
}
#export-pdf-area .dimensions-box {
    font-weight: 400;
    color: #374151;
    background-color: #f8f9fa;
}
#export-pdf-area .pdx-text-body {
    font-family: "DIN Next LT Pro", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: #000;
}
#export-pdf-area a.pdx-variation-card {
    color: #000 !important;
}
#export-pdf-area * {
    color: inherit;
}
#export-pdf-area .pdx-section-header,
#export-pdf-area .pdx-variation-grid,
#export-pdf-area .pdx-variation-card,
#export-pdf-area .pdx-variation-name {
    visibility: visible !important;
    opacity: 1 !important;
}
#export-pdf-area #pdf-variations-col {
    min-height: 120px;
    display: block !important;
}
#export-pdf-area #pdf-variations-col .pdx-section {
    display: block !important;
    visibility: visible !important;
}

#export-pdf-area.pdf-single-page { margin: 0 !important; padding: 10px 14px !important; max-width: 580px; }
#export-pdf-area.pdf-single-page .pdf-content { margin: 0.5rem; }
#export-pdf-area.pdf-single-page .pdf-logo { width: 76px !important; }
#export-pdf-area.pdf-single-page .my-5 { margin-top: 0 !important; margin-bottom: 0.2rem !important; }
#export-pdf-area.pdf-single-page .d-flex.justify-content-between.align-items-end { margin-top: 0 !important; margin-bottom: 0.25rem !important; }
#export-pdf-area.pdf-single-page .mb-4 { margin-bottom: 0.25rem !important; }
#export-pdf-area.pdf-single-page .mt-4 { margin-top: 0.2rem !important; }
#export-pdf-area.pdf-single-page .mt-5 { margin-top: 0.2rem !important; }
#export-pdf-area.pdf-single-page .p-3 { padding: 0.25rem !important; }
#export-pdf-area.pdf-single-page .mb-3 { margin-bottom: 0.2rem !important; }
#export-pdf-area.pdf-single-page .export-document-title { font-size: 0.8rem; }
#export-pdf-area .pdx-variation-grid { gap: 0.5rem; display: grid !important; grid-template-columns: repeat(4, 1fr); min-height: 140px; }
#export-pdf-area .pdx-variation-img { width: 80px; height: 80px; min-width: 80px; min-height: 80px; display: block; margin: 0 auto; }
#export-pdf-area .pdx-variation-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
#export-pdf-area #pdf-variations-col .pdx-variation-grid { min-height: 140px; }
#export-pdf-area.pdf-single-page .pdx-variation-grid { grid-template-columns: repeat(4, 1fr); gap: 0.35rem; min-height: 100px; }
#export-pdf-area.pdf-single-page .pdx-variation-img { width: 56px; height: 56px; min-width: 56px; min-height: 56px; }
#export-pdf-area.pdf-single-page .pdx-section-label { font-size: 11px; letter-spacing: 2px; }
#export-pdf-area.pdf-single-page .pdx-variation-name { font-size: 0.65rem; }
#export-pdf-area.pdf-single-page .small { font-size: 0.8rem !important; }
.pdf-dim-icon { display: inline-flex; align-items: center; min-width: 14px; color: #6b7280; }
.pdf-dim-icon svg { display: block; }
/* Ana ürün resmi: referanstaki gibi büyük ve baskın */
#export-pdf-area .pdf-main-product-img { max-width: 85%; width: auto; max-height: 380px; margin: auto; display: block; }
#export-pdf-area.pdf-single-page .pdf-main-product-img { max-width: 85%; max-height: 270px; }
/* Configured options: 2. resim – belirgin swatch’ler, okunaklı etiketler */
#export-pdf-area .pdx-configurator-grid { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; min-height: 140px; align-items: start; }
#export-pdf-area .pdx-configurator-card { text-align: center; }
#export-pdf-area .pdx-configurator-swatch { width: 96px; height: 96px; min-width: 96px; min-height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 0.5rem; border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
#export-pdf-area .pdx-configurator-swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
#export-pdf-area .pdx-configurator-type { display: block; font-size: 11px; letter-spacing: 0.1em; font-weight: 600; color: #111; margin-bottom: 0.2rem; }
#export-pdf-area .pdx-configurator-name { font-size: 0.88rem; font-weight: 400; color: #4b5563; }
#export-pdf-area.pdf-single-page .pdx-configurator-grid { gap: 0.6rem; min-height: 0; }
#export-pdf-area.pdf-single-page .pdx-configurator-swatch { width: 64px; height: 64px; min-width: 64px; min-height: 64px; margin-bottom: 0.2rem; border-color: #e5e7eb; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
#export-pdf-area.pdf-single-page .pdx-configurator-type { font-size: 9px; letter-spacing: 0.1em; font-weight: 600; color: #111; }
#export-pdf-area.pdf-single-page .pdx-configurator-name { font-size: 0.72rem; font-weight: 400; color: #4b5563; }
#export-pdf-area .pdx-configured-header .pdx-section-label { font-size: 11px; letter-spacing: 0.12em; font-weight: 600; color: #111; }
#export-pdf-area #pdf-configured-options .pdx-section-label { font-size: 11px; letter-spacing: 0.12em; }
#export-pdf-area.pdf-single-page #pdf-configured-options .pdx-section-label { font-size: 9px; letter-spacing: 0.1em; }