@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   TASCHEN DESIGN SYSTEM - LUXURY EDITORIAL & BOOK EXHIBITION
   Brand: TASCHEN / TRƯNG BÀY SÁCH & TRUYỆN
   ========================================================================== */

:root {
    /* Palette */
    --t-white: #ffffff;
    --t-black: #0a0a0a;
    --t-gray-50: #fbfbfa;
    --t-gray-100: #f4f4f2;
    --t-gray-200: #e8e8e5;
    --t-gray-300: #d6d6d2;
    --t-gray-400: #a3a39e;
    --t-gray-600: #666662;
    --t-gray-800: #2b2b29;
    --t-red: #d92b2b;
    --t-gold: #c59b27;

    /* Semantic Aliases */
    --bg-page: var(--t-white);
    --bg-surface: var(--t-white);
    --bg-subtle: var(--t-gray-50);
    --bg-contrast: var(--t-black);
    --text-primary: var(--t-black);
    --text-secondary: var(--t-gray-600);
    --text-muted: var(--t-gray-400);
    --border-color: var(--t-gray-200);
    --border-dark: var(--t-black);

    /* Typography (100% Sans-Serif / Font Không Chân Đồng Bộ) */
    --font-serif: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-sans: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-brand: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-editorial: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    --font-family-heading: 'Plus Jakarta Sans', 'Montserrat', sans-serif !important;
    --font-family-accent: 'Plus Jakarta Sans', 'Montserrat', sans-serif !important;
    --font-family-regular: 'Plus Jakarta Sans', 'Montserrat', sans-serif !important;

    /* Shadows & Elevation */
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.12);
    --shadow-book-3d: -10px 14px 28px -4px rgba(0, 0, 0, 0.22), -2px 2px 8px rgba(0, 0, 0, 0.1), 3px 0 6px rgba(0, 0, 0, 0.05);
    --shadow-book-hover: -16px 24px 40px -4px rgba(0, 0, 0, 0.32), -4px 4px 12px rgba(0, 0, 0, 0.15), 4px 0 8px rgba(0, 0, 0, 0.08);

    /* Dimensions & Layout */
    --header-height: 60px;
    --container-max: 1680px;
    --container-padding: 56px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-page);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ==========================================================================
   TASCHEN HEADER (STICKY LUXURY EDITORIAL NAV)
   ========================================================================== */

.taschen-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--t-white);
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.taschen-header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--container-padding);
}

/* Left Nav */
.taschen-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.taschen-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.taschen-mobile-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    background-color: var(--t-black);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.taschen-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 100%;
}

.taschen-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--header-height);
}

.taschen-nav-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    position: relative;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.taschen-nav-link::after {
    display: none !important;
}

.taschen-nav-link:hover {
    color: #275890;
    text-decoration: none !important;
}

.taschen-nav-link.active {
    color: #275890;
    font-weight: 800;
    text-decoration: none !important;
}

/* ==========================================================================
   TASCHEN MEGA MENU (4-COLUMN EDITORIAL DROPDOWN)
   ========================================================================== */

/* Full-width Mega Menu Dropdown */
.taschen-megamenu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    background-color: var(--t-white);
    border-bottom: 1px solid var(--t-gray-200);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.22s;
    z-index: 110;
}

/* Trigger on hover or focus */
.has-megamenu:hover .taschen-megamenu,
.taschen-megamenu:hover,
.has-megamenu:focus-within .taschen-megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Mega Menu Content Grid */
.taschen-megamenu-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 38px var(--container-padding) 44px;
}

.taschen-megamenu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 40px;
    align-items: start;
}

.taschen-megamenu-col {
    display: flex;
    flex-direction: column;
}

.taschen-megamenu-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.taschen-megamenu-link {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    color: #2b2b29;
    letter-spacing: 0.1px;
    display: inline-block;
    transition: color 0.15s ease, text-decoration 0.15s ease;
    width: fit-content;
}

.taschen-megamenu-link:hover {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* Backdrop dim overlay when mega menu is visible */
.taschen-megamenu-backdrop {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
    z-index: 105;
}

.taschen-megamenu-backdrop.is-active,
.has-megamenu:hover ~ .taschen-megamenu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile subnav styles */
.taschen-mobile-group {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--t-gray-100);
    padding-bottom: 12px;
}

.taschen-mobile-subnav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-left: 12px;
    padding-top: 8px;
}

.taschen-mobile-subnav a {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
}

.taschen-mobile-subnav a:hover {
    color: var(--t-black);
}

/* Center Brand Wordmark */
.taschen-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
}

.taschen-brand a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 90px;
    height: 28px;
    text-decoration: none;
}

.taschen-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Montserrat', var(--font-sans), sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #275890;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.taschen-brand-logo .brand-blue {
    color: #275890;
}

.taschen-brand-logo .brand-dash {
    color: #ED1F24;
    display: inline-block;
    margin: 0 5px;
    font-weight: 900;
}

.taschen-brand-sub {
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 2px;
}

.taschen-brand img,
.taschen-brand .taschen-brand-img {
    height: 24px;
    width: auto;
    max-width: 154px;
    object-fit: contain;
    display: block;
}

/* Right Tools */
.taschen-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.taschen-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.taschen-search-input {
    width: 238px;
    height: 38px;
    padding: 0 34px 0 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--t-black);
    background-color: var(--t-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: width var(--transition-base), border-color var(--transition-fast), background-color var(--transition-fast);
}

.taschen-search-input:focus {
    width: 260px;
    background-color: var(--t-white);
    border-color: var(--t-black);
}

.taschen-search-input::placeholder {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0;
}

.taschen-search-btn {
    position: absolute;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t-black);
    width: 24px;
    height: 24px;
}

.taschen-tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--t-black);
    position: relative;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.taschen-tool-btn:hover {
    transform: scale(1.08);
}

.taschen-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    background-color: var(--t-black);
    color: var(--t-white);
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 3px;
}

.taschen-lang-btn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 6px 8px;
    border: 0;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.taschen-lang-btn:hover {
    border-color: var(--t-black);
    background-color: var(--t-gray-50);
}

/* Mobile Nav Drawer */
.taschen-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    padding: 0;
    flex-direction: column;
    z-index: 999999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.taschen-mobile-nav.is-open {
    display: flex;
}

.taschen-mobile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--t-gray-200);
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 10;
}

.taschen-mobile-close-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--t-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--t-gray-200);
    padding-right: 14px;
}

.taschen-mobile-search-form {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0;
    gap: 6px;
}

.taschen-mobile-search-btn {
    background: none;
    border: none;
    padding: 4px 4px 4px 0;
    color: var(--t-gray-500);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.taschen-mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--t-black);
    background: transparent;
}

.taschen-mobile-search-input::placeholder {
    color: var(--t-gray-400);
}

.taschen-mobile-menu-body {
    padding: 8px 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.taschen-mobile-link {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--t-black);
    padding: 18px 0;
    border-bottom: 1px solid var(--t-gray-100);
    text-decoration: none !important;
    display: block;
    transition: color 0.15s ease;
}

.taschen-mobile-link:hover,
.taschen-mobile-link.active {
    color: #275890;
}

.taschen-mobile-accordion {
    border-bottom: 1px solid var(--t-gray-100);
}

.taschen-mobile-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--t-black);
    cursor: pointer;
    text-align: left;
}

.taschen-mobile-acc-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.taschen-mobile-acc-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: var(--t-black);
}

.taschen-mobile-acc-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background-color: var(--t-black);
    transition: transform 0.2s ease;
}

.taschen-mobile-accordion.is-open .taschen-mobile-acc-icon::after {
    transform: scaleY(0);
}

.taschen-mobile-accordion-content {
    display: none;
    padding-bottom: 18px;
}

.taschen-mobile-accordion.is-open .taschen-mobile-accordion-content {
    display: block;
}

.taschen-mobile-sublist {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.taschen-mobile-sublink {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--t-black);
    padding: 10px 0;
    text-decoration: none !important;
    line-height: 1.4;
    display: block;
    transition: color 0.15s ease;
}

.taschen-mobile-sublink:hover,
.taschen-mobile-sublink.active {
    color: #275890;
    font-weight: 700;
}

.taschen-mobile-sublist-divider {
    height: 1px;
    background-color: var(--t-gray-200);
    margin: 14px 0 10px 0;
}

/* ==========================================================================
   HERO TEASER FLEX (FULLSCREEN CINEMATIC SLIDER)
   ========================================================================== */

.taschen-hero-slider {
    position: relative;
    width: 100%;
    background-color: var(--t-black);
    color: var(--t-white);
    overflow: hidden;
    min-height: 480px;
    height: 52vw;
    max-height: 680px;
}

@media (min-width: 1024px) {
    .taschen-hero-slider {
        min-height: 520px;
        height: 52vw;
        max-height: 680px;
    }
}

@media (max-width: 768px) {
    .taschen-hero-slider {
        min-height: 400px;
        height: 115vw;
        max-height: 490px;
    }
}

.taschen-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
}

.taschen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    min-height: inherit;
}

.taschen-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.taschen-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.taschen-slide-bg picture {
    width: 100%;
    height: 100%;
    display: block;
}

.taschen-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.taschen-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.75) 0%, rgba(8, 8, 8, 0.28) 50%, rgba(8, 8, 8, 0.04) 100%);
    transition: background 0.4s ease;
}

.taschen-slide--right .taschen-slide-bg::after {
    background: linear-gradient(270deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.32) 50%, rgba(8, 8, 8, 0.04) 100%);
}

.taschen-slide--center .taschen-slide-bg::after {
    background: radial-gradient(circle at center, rgba(8, 8, 8, 0.65) 0%, rgba(8, 8, 8, 0.35) 60%, rgba(8, 8, 8, 0.1) 100%);
}

@media (max-width: 768px) {
    .taschen-slide {
        align-items: flex-end;
        padding-bottom: 38px;
    }

    .taschen-slide > .container {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
    }

    .taschen-slide-bg img {
        object-position: center 25%;
    }

    .taschen-slide-bg::after,
    .taschen-slide--right .taschen-slide-bg::after,
    .taschen-slide--center .taschen-slide-bg::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.15) 30%,
            rgba(0, 0, 0, 0.65) 65%,
            rgba(0, 0, 0, 0.94) 100%
        ) !important;
    }

    .taschen-slide-content {
        padding: 0 0 4px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .taschen-slide-badge {
        font-size: 10px !important;
        letter-spacing: 1.4px !important;
        padding: 4px 10px !important;
        margin-bottom: 8px !important;
        border-radius: 3px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .taschen-slide-title {
        font-size: clamp(20px, 5.8vw, 28px) !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }

    .taschen-slide-quote {
        font-size: 13px !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
        padding-left: 10px !important;
        border-left-width: 2px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    .taschen-btn {
        padding: 10px 20px !important;
        font-size: 11px !important;
        letter-spacing: 1.2px !important;
        gap: 8px !important;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .taschen-slider-dots {
        bottom: 12px !important;
        gap: 8px !important;
    }

    .taschen-dot {
        width: 7px !important;
        height: 7px !important;
    }
}

.taschen-slide-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 40px var(--container-padding);
}

.taschen-slide--left .taschen-slide-content {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.taschen-slide--right .taschen-slide-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.taschen-slide--center .taschen-slide-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.taschen-slide--center .taschen-slide-quote {
    border-left: none;
    padding-left: 0;
}

.taschen-slide--center .taschen-btn {
    margin-left: auto;
    margin-right: auto;
}

.taschen-slide-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: var(--t-white);
    color: var(--t-black);
    padding: 6px 14px;
    margin-bottom: 20px;
}

.taschen-slide-title {
    font-family: var(--font-sans);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--t-white);
}

.taschen-slide-quote {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    padding-left: 18px;
}

.taschen-slide-quote span {
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
}

/* Primary Button Taschen */
.taschen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 15px 32px;
    background-color: var(--t-white);
    color: var(--t-black);
    border: 1px solid var(--t-white);
    transition: all var(--transition-fast);
}

.taschen-btn:hover {
    background-color: transparent;
    color: var(--t-white);
}

.taschen-btn--dark {
    background-color: var(--t-black);
    color: var(--t-white);
    border: 1px solid var(--t-black);
}

.taschen-btn--dark:hover {
    background-color: transparent;
    color: var(--t-black);
}

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

.taschen-btn--outline:hover {
    background-color: var(--t-black);
    color: var(--t-white);
}

/* Slider Controls */
.taschen-slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.taschen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.taschen-dot.is-active {
    background-color: var(--t-white);
    transform: scale(1.3);
}

.taschen-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--t-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
}

.taschen-slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.taschen-slider-arrow--prev {
    left: 20px;
}

.taschen-slider-arrow--next {
    right: 20px;
}

/* ==========================================================================
   PRODUCT PLACEMENT SECTION (NEW & TRENDING / EXHIBITION)
   ========================================================================== */

.taschen-section {
    padding: 58px 0;
}

/* ==========================================================================
   GIFTS HORIZONTAL CAROUSEL SECTION
   ========================================================================== */

.gifts-section {
    padding: 48px 0 64px 0;
    border-top: 1px solid var(--t-gray-200);
}

.gifts-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.gifts-section-title {
    font-family: var(--font-sans);
    font-size: clamp(21px, 2.8vw, 29px);
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--t-black);
    line-height: 1.2;
    margin: 0;
}

.gifts-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gifts-see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 0;
    text-decoration: none !important;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.gifts-see-more-btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.gifts-nav-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gifts-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #d6d6d2;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gifts-nav-arrow:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

@media (max-width: 768px) {
    .gifts-section {
        padding: 32px 0 44px 0 !important;
    }

    .gifts-section-header {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    .gifts-section-title {
        text-align: center !important;
        margin: 0 auto !important;
        font-size: 22px !important;
        letter-spacing: 0.5px !important;
    }

    .gifts-header-actions {
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        gap: 0 !important;
    }

    .gifts-nav-arrows {
        display: none !important;
    }

    .gifts-see-more-btn {
        padding: 5px 12px !important;
        font-size: 12px !important;
    }
}

.gifts-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gifts-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 0 16px 0;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gifts-carousel-track::-webkit-scrollbar {
    display: none;
}

.gifts-card {
    flex: 0 0 calc((100% - 5 * 20px) / 6);
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--transition-fast);
}

@media (max-width: 1360px) {
    .gifts-card {
        flex: 0 0 calc((100% - 4 * 18px) / 5);
    }
    .gifts-carousel-track {
        gap: 18px;
    }
}

@media (max-width: 1080px) {
    .gifts-card {
        flex: 0 0 calc((100% - 3 * 16px) / 4);
    }
    .gifts-carousel-track {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .gifts-card {
        flex: 0 0 calc((100% - 2 * 14px) / 3);
    }
    .gifts-carousel-track {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .gifts-card {
        flex: 0 0 calc((100% - 1 * 12px) / 2);
    }
    .gifts-carousel-track {
        gap: 12px;
    }
}

.gifts-card:hover {
    transform: translateY(-4px);
}

.gifts-card-media {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--t-gray-100);
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition-fast);
}

.gifts-card:hover .gifts-card-media {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.gifts-card-img-wrap {
    width: 100%;
    height: 100%;
}

.gifts-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gifts-card:hover .gifts-card-img-wrap img {
    transform: scale(1.06);
}

.gifts-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #275890 100%);
    color: #ffffff;
}

.gifts-card-fallback span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.gifts-card-fallback strong {
    font-size: 13px;
    line-height: 1.3;
}

.gifts-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gifts-card-title {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.gifts-card-title a {
    color: var(--t-black);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.gifts-card-title a:hover {
    color: #275890;
}

.gifts-card-subtitle {
    font-size: 12.5px;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.taschen-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 0;
    border-bottom: 0;
    position: relative;
}

.taschen-section-header-text,
.taschen-section-header > div {
    text-align: center;
    width: 100%;
}

.taschen-section-title {
    font-family: var(--font-sans);
    font-size: clamp(21px, 2.8vw, 29px);
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--t-black);
    line-height: 1.2;
    text-align: center;
}

.taschen-section-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-align: center;
}

.taschen-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--t-black);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.taschen-view-all:hover {
    border-color: var(--t-black);
}

.taschen-section-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    width: 100%;
}

.taschen-btn-outline-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--t-black);
    background-color: var(--t-white);
    border: 1px solid #767676;
    border-radius: 2px;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.taschen-btn-outline-center:hover {
    background-color: var(--t-black);
    color: var(--t-white);
    border-color: var(--t-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Product Placement Grid (4 columns) */
.taschen-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 24px;
}

@media (max-width: 1200px) {
    .taschen-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .taschen-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
}

@media (max-width: 576px) {
    .taschen-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 12px;
    }
}

/* Product Card Component (TASCHEN Standalone 3D Floating Book Look) */
.product-tile,
.taschen-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: none;
}

.product-tile:hover,
.taschen-card:hover {
    transform: none !important;
}

.product-tile__image-wrapper,
.taschen-card-media {
    position: relative;
    width: 100%;
    height: 380px !important;
    background-color: transparent !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

@media (max-width: 1200px) {
    .product-tile__image-wrapper,
    .taschen-card-media {
        height: 330px !important;
    }
}

@media (max-width: 992px) {
    .product-tile__image-wrapper,
    .taschen-card-media {
        height: 290px !important;
    }
}

@media (max-width: 768px) {
    .product-tile__image-wrapper,
    .taschen-card-media {
        height: 220px !important;
        min-height: unset !important;
        margin-bottom: 6px !important;
    }
}

.taschen-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    background-color: var(--t-black, #000000);
    color: var(--t-white, #ffffff);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
}

.taschen-card-badge--red {
    background-color: var(--t-red, #dc2626);
}

.taschen-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Adaptive Luxury Image Presentation in Catalog Card */
.taschen-book-3d {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.taschen-book-3d .taschen-card-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 4px !important;
    display: block !important;
    margin: auto !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.taschen-card-media:hover .taschen-card-img,
.product-tile__image-wrapper:hover .taschen-card-img {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24) !important;
}

.taschen-book-spine,
.taschen-book-sheen,
.taschen-book-pages {
    display: none !important;
}

/* Luxury Hardcover Default Book Cover Fallback */
.taschen-card-fallback {
    width: 100% !important;
    height: 100% !important;
    max-width: 220px !important;
    max-height: 330px !important;
    aspect-ratio: 1 / 1.45;
    border-radius: 4px !important;
    box-sizing: border-box !important;
    padding: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    cursor: pointer !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
    margin: auto !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (max-width: 768px) {
    .taschen-card-fallback {
        max-width: 150px !important;
        max-height: 220px !important;
        padding: 5px !important;
    }
}

.taschen-fallback-inner {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .taschen-fallback-inner {
        padding: 8px 6px !important;
    }
}

.taschen-fallback-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
}

.taschen-fallback-cat {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .taschen-fallback-cat {
        font-size: 7px !important;
        letter-spacing: 1px !important;
    }
}

.taschen-fallback-ornament {
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taschen-fallback-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 2px;
    width: 100%;
}

.taschen-fallback-title {
    font-family: var(--font-serif, 'Georgia', serif);
    font-size: 13.5px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 768px) {
    .taschen-fallback-title {
        font-size: 11px !important;
        line-height: 1.2 !important;
        -webkit-line-clamp: 3 !important;
    }
}

.taschen-fallback-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
}

.taschen-fallback-author {
    font-family: var(--font-serif, 'Georgia', serif);
    font-size: 11px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .taschen-fallback-author {
        font-size: 9px !important;
    }
}

.taschen-fallback-brand {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .taschen-fallback-brand {
        font-size: 7px !important;
        letter-spacing: 1px !important;
    }
}

.taschen-detail-fallback {
    width: 320px !important;
    height: 460px !important;
    max-width: 100% !important;
    padding: 12px !important;
}

.taschen-detail-fallback .taschen-fallback-inner {
    padding: 24px 18px !important;
}

.taschen-detail-fallback .taschen-fallback-title {
    font-size: 20px !important;
    line-height: 1.4 !important;
}

.taschen-detail-fallback .taschen-fallback-author {
    font-size: 13px !important;
}

.taschen-detail-fallback .taschen-fallback-cat {
    font-size: 11px !important;
}

.taschen-card-media:hover .taschen-card-fallback,
.product-tile__image-wrapper:hover .taschen-card-fallback {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
    .taschen-detail-fallback {
        width: 260px !important;
        height: 380px !important;
    }
    .taschen-detail-fallback .taschen-fallback-title {
        font-size: 17px !important;
    }
}

/* Reset main margin from legacy styles */
main,
#main-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Breadcrumbs (TASCHEN alignment - Equal spacing above/below header border) */
.taschen-breadcrumb {
    margin: 0 0 14px 0 !important;
    padding: 16px 0 0 0 !important;
}

.taschen-breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--text-secondary);
}

.taschen-breadcrumb-inner a {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.taschen-breadcrumb-inner a:hover {
    color: var(--t-black);
    text-decoration: underline;
}

.taschen-breadcrumb-inner .sep {
    font-size: 12px;
    color: #d1d5db;
    font-weight: 300;
    user-select: none;
}

.taschen-breadcrumb-inner .current {
    font-size: 12px;
    color: var(--t-black);
    font-weight: 600;
}

.taschen-breadcrumb-inner .current .count {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 2px;
}

/* ==========================================================================
   PRODUCT LIST & CATEGORY HEADER ALIGNMENT (TASCHEN STYLE)
   ========================================================================== */

.product-list {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-list__actions {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 10px 0 28px 0 !important;
}

.product-list__actions > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0;
    padding: 0;
}

.product-list__wrapper--title {
    font-family: var(--font-sans) !important;
    font-size: 27px !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
    color: var(--t-black, #0a0a0a) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.product-list__actions-filter-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-list__filter-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 9px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px !important;
    color: var(--t-black, #0a0a0a) !important;
    background: #ffffff !important;
    border: 1px solid var(--t-gray-300, #d6d6d2) !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

.product-list__filter-button:hover {
    border-color: var(--t-black, #0a0a0a) !important;
    background-color: var(--t-gray-50, #fbfbfa) !important;
}

.product-list__wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Off-canvas Filter Flyout Drawer */
.flyout {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s ease;
}

.flyout.flyout__open {
    visibility: visible !important;
    pointer-events: auto !important;
}

.flyout__overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flyout.flyout__open .flyout__overlay {
    opacity: 1 !important;
}

.flyout__content {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 420px !important;
    height: 100% !important;
    background: #ffffff !important;
    padding: 32px 28px !important;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.flyout.flyout__open .flyout__content {
    transform: translateX(0) !important;
}

.flyout__close-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #f4f4f2 !important;
    border: 1px solid #e0e0dc !important;
    cursor: pointer !important;
    font-size: 20px !important;
    line-height: 1 !important;
    color: #000000 !important;
    transition: all 0.2s ease !important;
}

.flyout__close-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

/* Card Body & Typography */
.taschen-card-body,
.product-tile__info-wrapper {
    padding-top: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.taschen-card-title,
.product-tile__heading {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: var(--t-black, #111111) !important;
    margin: 0 0 4px 0 !important;
    text-align: center !important;
    width: 100% !important;
}

.taschen-card-title a,
.product-tile__heading a {
    font-size: 15px !important;
    color: var(--t-black, #111111) !important;
    text-decoration: none !important;
    display: block !important;
    line-height: 1.4 !important;
}

.taschen-card-title strong,
.product-tile__heading strong {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-bottom: 2px !important;
    min-height: 42px !important;
    line-height: 1.4 !important;
}

.taschen-card-author-name {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #64748b !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    line-height: 1.3 !important;
}

.product-tile__price-row,
.taschen-card-footer {
    margin-top: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 32px !important;
    width: 100% !important;
}

.taschen-card-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 18px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
    border-radius: 2px !important;
    text-decoration: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
    cursor: pointer !important;
}

.taschen-card:hover .taschen-card-action,
.product-tile:hover .taschen-card-action,
.taschen-card:focus-within .taschen-card-action,
.product-tile:focus-within .taschen-card-action {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.taschen-card-action:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

@media (max-width: 768px) {
    .taschen-section {
        padding: 36px 0 48px 0 !important;
    }

    .taschen-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px 14px !important;
        align-items: start !important;
    }

    .taschen-card-body,
    .product-tile__info-wrapper {
        padding-top: 8px !important;
    }

    .taschen-card-title,
    .product-tile__heading {
        font-size: 13.5px !important;
        margin-bottom: 2px !important;
    }

    .taschen-card-title a,
    .product-tile__heading a {
        font-size: 13.5px !important;
    }

    .taschen-card-title strong,
    .product-tile__heading strong {
        font-size: 13.5px !important;
        min-height: 36px !important;
        line-height: 1.35 !important;
    }

    .taschen-card-author-name {
        font-size: 11.5px !important;
    }

    .taschen-card-footer,
    .taschen-card-action {
        display: none !important;
    }
}

/* ==========================================================================
   EDITORIAL SPLIT 50/50 SECTION
   ========================================================================== */

.taschen-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--t-black);
    color: var(--t-white);
    margin: 60px 0;
    overflow: hidden;
}

.taschen-split-image {
    position: relative;
    min-height: 480px;
    background-color: #111111;
}

.taschen-split-image picture,
.taschen-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 860px) {
    .taschen-split-section {
        grid-template-columns: 1fr;
        margin: 36px 0 48px 0 !important;
    }

    .taschen-split-image {
        min-height: unset !important;
        height: auto !important;
        max-height: none !important;
        width: 100% !important;
        background-color: transparent !important;
    }

    .taschen-split-image picture,
    .taschen-split-image img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }
}

.taschen-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
    max-width: 600px;
}

@media (max-width: 600px) {
    .taschen-split-content {
        padding: 36px 20px;
    }
}

/*
   INQUIRY / CONTACT FLOW
*/

.taschen-inquiry-success {
    margin: 24px 0 18px;
    padding: 14px 16px;
    border: 1px solid #b9d8c5;
    background: #f0f9f3;
    color: #1b5e3a;
    font-size: 13px;
    line-height: 1.55;
}

.taschen-inquiry-card {
    margin-top: 32px;
    padding: 28px;
    border: 1px solid var(--t-black);
    background: var(--t-gray-50);
}

.taschen-inquiry-kicker {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.taschen-inquiry-title {
    margin: 0 0 10px;
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.4vw, 27px);
    line-height: 1.15;
}

.taschen-inquiry-text {
    margin: 0 0 18px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.taschen-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.taschen-contact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 14px;
    border: 1px solid #bdbdb8;
    background: #fff;
    color: var(--t-black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.taschen-contact-action:hover {
    border-color: var(--t-black);
    background: var(--t-black);
    color: #fff;
}

.taschen-inquiry-form {
    padding-top: 20px;
    border-top: 1px solid #d9d9d4;
}

.taschen-inquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.taschen-inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.taschen-inquiry-field--full {
    grid-column: 1 / -1;
}

.taschen-inquiry-field label {
    color: var(--t-black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.taschen-inquiry-field label span:not(.optional) {
    color: var(--t-red);
}

.taschen-inquiry-field label .optional {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.taschen-inquiry-field input,
.taschen-inquiry-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c8c8c2;
    border-radius: 0;
    background: #fff;
    color: var(--t-black);
    font: inherit;
    font-size: 13px;
    padding: 11px 12px;
}

.taschen-inquiry-field textarea {
    resize: vertical;
    min-height: 90px;
}

.taschen-inquiry-field input:focus,
.taschen-inquiry-field textarea:focus {
    outline: 2px solid rgba(0, 0, 0, 0.14);
    outline-offset: 1px;
    border-color: var(--t-black);
}

.taschen-inquiry-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1.55;
}

.taschen-inquiry-consent input {
    flex: 0 0 auto;
    margin-top: 2px;
}

.taschen-inquiry-consent a {
    color: var(--t-black);
    text-decoration: underline;
}

.taschen-inquiry-submit {
    width: 100%;
    margin-top: 18px;
}

.taschen-inquiry-errors {
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #e4b5b5;
    background: #fff5f5;
    color: #8a2020;
    font-size: 12px;
    line-height: 1.5;
}

.taschen-inquiry-errors ul {
    margin: 5px 0 0 17px;
    padding: 0;
}

.taschen-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.taschen-detail-more-action {
    display: flex;
    margin-top: 18px;
}

.taschen-detail-more-action .taschen-btn {
    width: 100%;
}

@media (max-width: 600px) {
    .taschen-inquiry-card {
        padding: 20px;
    }

    .taschen-inquiry-grid {
        grid-template-columns: 1fr;
    }

    .taschen-inquiry-field--full {
        grid-column: auto;
    }
}

/* --- ADMIN INQUIRIES --- */

.admin-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: auto;
    padding: 0 5px;
    border-radius: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.inquiry-filter select {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    font: inherit;
    font-size: 13.5px;
}

.inquiry-status-new {
    background: #fff7ed;
    color: #c2410c;
}

.inquiry-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 24px;
    align-items: start;
}

.inquiry-detail-card,
.inquiry-status-card {
    min-width: 0;
}

.inquiry-contact-list {
    display: grid;
    gap: 8px;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
}

.inquiry-contact-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13.5px;
}

.inquiry-contact-list span,
.inquiry-meta-label {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.inquiry-contact-list a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.inquiry-message-box,
.inquiry-book-box {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.inquiry-message-box p {
    margin: 10px 0 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
}

.inquiry-book-box {
    display: grid;
    gap: 8px;
}

.inquiry-book-box small {
    color: #64748b;
    font-size: 12px;
}

.inquiry-status-card .form-header-bar {
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .inquiry-detail-layout {
        grid-template-columns: 1fr;
    }
}

.taschen-split-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--t-gray-400);
    margin-bottom: 16px;
}

.taschen-split-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3.2vw, 35px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--t-white);
}

.taschen-split-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.taschen-split-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--t-gray-400);
    margin-bottom: 32px;
}

/* ==========================================================================
   CATEGORY HIGHLIGHTS / THEMATIC TILES
   ========================================================================== */

.taschen-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .taschen-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .taschen-categories-grid {
        grid-template-columns: 1fr;
    }
}

.taschen-category-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background-color: var(--t-black);
    color: var(--t-white);
}

.taschen-category-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    transition: transform var(--transition-slow), opacity var(--transition-base);
}

.taschen-category-card:hover .taschen-category-bg {
    transform: scale(1.08);
    opacity: 0.8;
}

.taschen-category-content {
    position: relative;
    z-index: 2;
}

.taschen-category-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--t-white);
    margin-bottom: 4px;
}

.taschen-category-count {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Manifesto Band */
.taschen-manifesto {
    text-align: center;
    padding: 80px 24px;
    background-color: var(--t-gray-50);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 40px 0;
}

/* Editorial cards inspired by the reference site's "Discover more" rail */
.taschen-journal {
    padding-top: 34px;
}

.taschen-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.taschen-journal-card {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--t-gray-100);
    color: var(--t-white);
}

.taschen-journal-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.8) 100%);
}

.taschen-journal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.taschen-journal-card:hover img {
    transform: scale(1.06);
}

.taschen-journal-overlay {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.taschen-journal-overlay strong {
    font-family: var(--font-sans);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.taschen-journal-overlay small {
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.taschen-manifesto-quote {
    font-family: var(--font-sans);
    font-size: clamp(19px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.35;
    max-width: 800px;
    margin: 0 auto 24px;
    color: var(--t-black);
}

.taschen-manifesto-quote em {
    font-style: normal;
    font-weight: 800;
    color: #275890;
}

/* ==========================================================================
   LIBRARY & CATALOG INDEX PAGE
   ========================================================================== */

.taschen-catalog-header {
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.taschen-catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .taschen-catalog-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Sidebar Filters */
.taschen-sidebar {
    position: sticky;
    top: 96px;
    background-color: var(--t-white);
    padding-right: 16px;
}

.taschen-sidebar-group {
    margin-bottom: 32px;
}

.taschen-sidebar-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--t-black);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--t-black);
}

.taschen-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.taschen-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.taschen-filter-item:hover,
.taschen-filter-item.is-active {
    color: var(--t-black);
    font-weight: 700;
}

.taschen-filter-count {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Catalog Results Toolbar */
.taschen-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--t-gray-100);
}

.taschen-catalog-count {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.taschen-catalog-search-lg {
    display: flex;
    align-items: center;
    border: 1px solid var(--t-black);
    background-color: var(--t-white);
    max-width: 480px;
    margin-bottom: 24px;
}

.taschen-catalog-search-lg input {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    font-size: 14px;
}

.taschen-catalog-search-lg button {
    padding: 0 18px;
    height: 44px;
    background-color: var(--t-black);
    color: var(--t-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--border-color);
    color: var(--t-black);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    border-color: var(--t-black);
    background-color: var(--t-gray-50);
}

.pagination .current {
    background-color: var(--t-black);
    color: var(--t-white);
    border-color: var(--t-black);
}

.pagination .disabled {
    color: var(--text-muted);
    border-color: var(--t-gray-100);
    cursor: not-allowed;
}

/* ==========================================================================
   BOOK DETAIL / SINGLE PAGE (SHOW)
   ========================================================================== */

.taschen-detail {
    padding-top: 16px;
    padding-bottom: 70px;
}

.taschen-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 18px;
    transition: color var(--transition-fast);
}

.taschen-back-btn:hover {
    color: var(--t-black);
}

.taschen-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.taschen-detail-media {
    position: static;
    background: transparent !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none !important;
    box-shadow: none !important;
}

@media (min-width: 961px) {
    .taschen-detail-media {
        position: sticky;
        top: 80px;
        min-height: 520px;
    }
}

@media (max-width: 960px) {
    .taschen-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .taschen-detail-media {
        position: static !important;
        min-height: auto !important;
        margin-bottom: 20px;
    }
}

.taschen-detail-info {
    display: flex;
    flex-direction: column;
}

.taschen-detail-series {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.taschen-detail-title {
    font-family: var(--font-sans);
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: var(--t-black);
    margin-bottom: 12px;
}

.taschen-detail-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.taschen-detail-summary {
    font-size: 15px;
    line-height: 1.8;
    color: var(--t-gray-800);
    margin-bottom: 32px;
}

.taschen-specs-table {
    width: 100%;
    border-top: 1px solid var(--t-black);
    margin-bottom: 36px;
}

.taschen-specs-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.taschen-specs-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--t-black);
}

.taschen-specs-value {
    color: var(--text-secondary);
    text-align: right;
}

/* ==========================================================================
   ONLINE CONTACT CTA & MODAL (FACEBOOK / ZALO / EMAIL)
   ========================================================================== */

.taschen-contact-action-wrap {
    margin-top: 16px;
    margin-bottom: 32px;
}

.taschen-btn-online-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 14px 28px;
    background-color: var(--t-black);
    color: var(--t-white);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid var(--t-black);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.taschen-btn-online-contact:hover {
    background-color: #275890;
    border-color: #275890;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(39, 88, 144, 0.25);
}

.taschen-contact-direct-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.taschen-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--t-black);
    background-color: var(--t-gray-100);
    border: 1px solid var(--t-gray-300);
    border-radius: 4px;
    text-decoration: none !important;
    transition: all var(--transition-fast);
}

.taschen-direct-btn:hover {
    background-color: var(--t-black);
    border-color: var(--t-black);
    color: var(--t-white);
    transform: translateY(-1px);
}

.taschen-direct-btn--fb:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.taschen-direct-btn--zalo:hover {
    background-color: #0068ff;
    border-color: #0068ff;
    color: #ffffff;
}

.taschen-direct-btn--email:hover {
    background-color: #ea4335;
    border-color: #ea4335;
    color: #ffffff;
}

/* Contact Modal */
.taschen-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: taschenFadeIn 0.2s ease-out;
}

.taschen-contact-modal-dialog {
    background-color: #ffffff;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
    animation: taschenScaleUp 0.25s ease-out;
}

.taschen-contact-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--t-gray-600);
    cursor: pointer;
    padding: 4px;
    transition: color 0.15s ease;
}

.taschen-contact-modal-close:hover {
    color: var(--t-black);
}

.taschen-contact-modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.taschen-contact-modal-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 800;
    margin: 4px 0 6px;
    color: var(--t-black);
}

.taschen-contact-modal-book {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin: 0;
}

.taschen-modal-channels-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.taschen-modal-channel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid var(--t-gray-300);
    border-radius: 6px;
    text-decoration: none !important;
    color: var(--t-black);
    background-color: #ffffff;
    transition: all var(--transition-fast);
}

.taschen-modal-channel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.taschen-mc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.taschen-mc--fb .taschen-mc-icon {
    background-color: #1877f2;
}

.taschen-mc--zalo .taschen-mc-icon {
    background-color: #0068ff;
}

.taschen-mc--email .taschen-mc-icon {
    background-color: #ea4335;
}

.taschen-mc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.taschen-mc-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--t-black);
}

.taschen-mc-info span {
    font-size: 12px;
    color: var(--text-secondary);
}

.taschen-mc-arrow {
    font-size: 16px;
    font-weight: 700;
    color: var(--t-gray-400);
}

.taschen-modal-divider {
    text-align: center;
    position: relative;
    margin: 18px 0;
}

.taschen-modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--t-gray-200);
}

.taschen-modal-divider span {
    position: relative;
    background-color: #ffffff;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes taschenFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes taschenScaleUp {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Related section */
.taschen-related {
    margin-top: 96px;
    padding-top: 48px;
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   TASCHEN FOOTER (4-COLUMN LUXURY EDITORIAL)
   ========================================================================== */

.taschen-footer {
    background-color: var(--t-black);
    color: var(--t-white);
    padding: 80px 0 32px;
    border-top: 1px solid var(--t-gray-800);
}

.taschen-footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1.8fr;
    gap: 48px 40px;
    margin-bottom: 64px;
}

@media (max-width: 1024px) {
    .taschen-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .taschen-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.taschen-footer-brand {
    font-family: 'Plus Jakarta Sans', 'Montserrat', var(--font-sans), sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--t-white);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
}

.taschen-footer-brand .brand-blue-footer {
    color: #4f8ee2;
}

.taschen-footer-brand .brand-dash-footer {
    color: #ED1F24;
    margin: 0 5px;
    font-weight: 900;
}

.taschen-footer-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--t-gray-400);
    max-width: 320px;
    margin-bottom: 24px;
}

.taschen-footer-col h3 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.taschen-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background-color: var(--t-white);
}

.taschen-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.taschen-footer-links a {
    font-size: 13px;
    color: var(--t-gray-400);
    transition: color var(--transition-fast);
}

.taschen-footer-links a:hover {
    color: var(--t-white);
}

/* Newsletter Form */
.taschen-newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--t-white);
    padding: 6px 0;
    margin-top: 16px;
}

.taschen-newsletter-form input {
    flex: 1;
    height: 38px;
    font-size: 13px;
    color: var(--t-white);
}

.taschen-newsletter-form input::placeholder {
    color: var(--t-gray-400);
    font-size: 12px;
    letter-spacing: 1px;
}

.taschen-newsletter-form button {
    color: var(--t-white);
    padding: 0 8px;
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.taschen-newsletter-form button:hover {
    transform: translateX(4px);
}

.taschen-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: var(--t-gray-400);
}

@media (max-width: 768px) {
    .taschen-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   RESPONSIVE NAVIGATION / SMALL SCREENS
   ========================================================================== */

@media (max-width: 1180px) {
    .taschen-nav {
        gap: 16px;
    }

    .taschen-nav-link {
        font-size: 11px;
    }

    .taschen-search-input {
        width: 180px;
    }

    .taschen-lang-btn {
        display: none;
    }
}

@media (max-width: 920px) {
    .taschen-header-inner {
        padding: 0 20px;
    }

    .taschen-nav {
        display: none;
    }

    .taschen-mobile-toggle {
        display: flex;
    }

    .taschen-header-left {
        gap: 0;
    }

    .taschen-header-right {
        gap: 3px;
    }

    .taschen-search-input {
        width: 150px;
    }

    .taschen-journal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .taschen-journal-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --container-padding: 20px;
    }

    .taschen-header-inner {
        padding: 0 14px;
    }

    .taschen-brand-logo {
        font-size: 14px;
        letter-spacing: 0;
    }

    .taschen-brand img,
    .taschen-brand .taschen-brand-img {
        max-height: 20px;
        width: auto;
    }

    .taschen-search-form {
        width: 34px;
    }

    .taschen-search-input {
        width: 34px;
        height: 34px;
        padding: 0;
        border-color: transparent;
        font-size: 0;
        background: transparent;
    }

    .taschen-search-input:focus {
        width: 34px;
        border-color: transparent;
    }

    .taschen-search-input::placeholder {
        color: transparent;
        font-size: 0;
    }

    .taschen-search-btn {
        right: 2px;
    }

    .taschen-tool-btn {
        width: 30px;
        height: 34px;
    }

    .taschen-hero-slider {
        min-height: 540px;
    }

    .taschen-slide-content {
        padding: 34px var(--container-padding) 84px;
    }

    .taschen-slide-title {
        font-size: clamp(26px, 9vw, 38px);
    }

    .taschen-slide-quote {
        font-size: 19px;
    }

    .taschen-slider-arrow {
        display: none !important;
    }

    .taschen-section {
        padding: 44px 0;
    }

    .taschen-section-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
    }

    .taschen-section-header .taschen-view-all {
        position: static;
        margin-top: 16px;
    }

    .taschen-section-title {
        font-size: 26px;
    }

    .taschen-journal-grid {
        grid-template-columns: 1fr;
    }

    .taschen-journal-card:last-child {
        grid-column: auto;
    }

    .taschen-journal-overlay strong {
        font-size: 23px;
    }

    .taschen-catalog-layout {
        gap: 24px;
    }

    .taschen-sidebar {
        position: static;
        padding-right: 0;
    }

    .taschen-detail {
        padding-top: 16px;
    }

    .taschen-detail-media {
        padding: 0;
    }

    .taschen-specs-row {
        gap: 18px;
    }

    .taschen-specs-value {
        max-width: 58%;
    }
}

/* ==========================================================================
   AUTHENTICATION & ADMIN DASHBOARD SYSTEM
   ========================================================================== */

/* --- AUTH / LOGIN PAGE --- */
.auth-page {
    min-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--bg-subtle, #fbfbfa);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.auth-card .eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7280;
}

.auth-card h1 {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #0a0a0a;
    line-height: 1.2;
    margin: 0;
}

.auth-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-top: -6px;
}

.auth-card .form-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.auth-card label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-align: left;
}

.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.auth-card input[type="email"]:focus,
.auth-card input[type="password"]:focus,
.auth-card input[type="text"]:focus {
    border-color: #0a0a0a;
    box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.08);
    background: #ffffff;
}

.auth-card label.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    margin-top: -4px;
}

.auth-card label.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    accent-color: #0a0a0a;
    cursor: pointer;
}

.auth-card .button,
.auth-card button[type="submit"] {
    width: 100%;
    padding: 13px 20px;
    background: #0a0a0a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.auth-card .button:hover,
.auth-card button[type="submit"]:hover {
    background: #27272a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- ADMIN LAYOUT & SHELL --- */
body.admin-body {
    background-color: #f6f7f9;
    color: #1e293b;
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.admin-shell {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    min-width: 260px;
    background: #0d0f12;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s ease;
}

.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.admin-sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.admin-brand {
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    text-align: center;
}

.admin-brand-badge {
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Montserrat', var(--font-sans), sans-serif;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.8px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 90%;
}

.admin-brand:hover .admin-brand-badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
}

.admin-brand-badge .brand-blue {
    color: #275890 !important;
}

.admin-brand-badge .brand-dash {
    color: #ED1F24 !important;
    margin: 0 6px;
    font-weight: 900;
}

.admin-brand-badge .brand-badge-img {
    max-height: 30px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.admin-menu {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.admin-menu a,
.admin-menu form button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    border: none;
    background: transparent;
    cursor: pointer;
}

.admin-menu a svg,
.admin-menu form button svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.admin-menu a:hover,
.admin-menu form button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.admin-menu a:hover svg,
.admin-menu form button:hover svg {
    opacity: 1;
}

.admin-menu a.active {
    color: #ffffff;
    background: #1e242e;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #3b82f6;
}

.admin-menu a.active svg {
    opacity: 1;
    color: #60a5fa;
}

.admin-menu form {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-menu form button {
    color: #ef4444;
}

.admin-menu form button:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

/* Main Content Area */
.admin-content {
    flex: 1;
    min-width: 0;
    padding: 28px 36px 60px;
    overflow-y: auto;
    box-sizing: border-box;
}

.admin-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.admin-top h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}

.admin-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    cursor: pointer;
}

/* Flash Messages */
.flash {
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}

.flash.success {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.flash.form-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.flash.form-error strong {
    display: block;
    margin-bottom: 4px;
}

.flash.form-error ul {
    margin: 4px 0 0 18px;
    padding: 0;
}

.flash.form-error li {
    margin-bottom: 2px;
}

/* --- STATS OVERVIEW --- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.stat-card span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
}

.stat-card strong {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 6px;
    line-height: 1.1;
}

/* --- ADMIN CARD & TABLE --- */
.admin-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    box-sizing: border-box;
}

.admin-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-actions h2 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.admin-actions .help {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.table-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-search input {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 13.5px;
    color: #0f172a;
    min-width: 260px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.admin-search input:focus {
    background: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}

.admin-search button {
    background: #0f172a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

.admin-search button:hover {
    background: #334155;
}

.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.admin-button:hover {
    background: #334155;
    color: #ffffff;
}

.admin-button.secondary {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.admin-button.secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.table-wrap {
    overflow-x: auto;
    width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table thead th {
    background: #f8fafc;
    color: #475569;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.data-table tbody td {
    padding: 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13.5px;
    color: #334155;
    vertical-align: middle;
}

.data-table tbody tr:hover td {
    background: #f8fafc;
}

.data-table td strong {
    color: #0f172a;
    font-weight: 600;
}

.data-table .help {
    font-size: 12px;
    color: #94a3b8;
}

.admin-link {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.admin-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    background: #ecfdf5;
    color: #059669;
    white-space: nowrap;
}

.status.off {
    background: #f1f5f9;
    color: #64748b;
}

.action-buttons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 11px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn-edit {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.btn-edit:hover {
    background: #dbeafe;
    color: #1d4ed8;
}

.btn-delete {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.btn-delete:hover {
    background: #fee2e2;
    color: #b91c1c;
}

.inline-form {
    display: inline;
    margin: 0;
}

/* --- FORMS & CRUD EDITING --- */
.form-card {
    max-width: 960px;
}

.form-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
    gap: 16px;
}

.form-header-bar h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.form-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    padding: 7px 13px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-back:hover {
    background: #f8fafc;
    color: #0f172a;
}

.form-sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 22px;
    background: #f8fafc;
}

.form-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.form-section-head h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 2px 0;
    padding: 0;
    text-align: left;
    width: 100%;
    cursor: default;
}

.form-label .req {
    color: #e11d48;
    display: inline-block;
    margin-left: 2px;
    font-size: 14px;
    line-height: 1;
}

.form-label .sub-label {
    font-weight: 400;
    color: #94a3b8;
    font-size: 12px;
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

/* File Upload Zone */
.file-upload-box {
    position: relative;
    width: 100%;
}

.file-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.file-upload-box:hover .file-upload-label {
    border-color: #0f172a;
    background: #f1f5f9;
}

.current-cover-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.cover-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.cover-preview {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Live Image Previews in Admin */
.admin-upload-preview-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-top: 10px;
}

.admin-upload-preview-card img {
    width: 56px;
    height: 76px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #94a3b8;
}

.admin-upload-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-upload-preview-info strong {
    font-size: 13px;
    color: #0f172a;
}

.admin-upload-preview-info span {
    font-size: 11.5px;
    color: #64748b;
}

.admin-gallery-batch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    margin-top: 14px;
    font-size: 13px;
    color: #166534;
}

.admin-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.admin-preview-item {
    position: relative;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.admin-preview-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: #f1f5f9;
}

.admin-preview-item-info {
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #ffffff;
}

.admin-preview-item-info span {
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-preview-item-info small {
    font-size: 10px;
    color: #94a3b8;
}

.admin-preview-remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.9);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    transition: background 0.15s ease, transform 0.15s ease;
    z-index: 5;
}

.admin-preview-remove-btn:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

/* Category Chips */
.cat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.cat-chip {
    cursor: pointer;
    margin: 0;
}

.cat-chip input[type="checkbox"] {
    display: none;
}

.cat-chip .chip-body {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    transition: all 0.2s ease;
    user-select: none;
}

.cat-chip .chip-body .check-icon {
    display: none;
}

.cat-chip input:checked + .chip-body {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
}

.cat-chip input:checked + .chip-body .check-icon {
    display: inline-block;
}

/* Status Toggle Card */
.status-toggle-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cbd5e1;
    border-radius: 24px;
    transition: 0.25s ease;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: #10b981;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.toggle-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.toggle-info strong {
    font-size: 13px;
    color: #0f172a;
}

.toggle-info span {
    font-size: 12px;
    color: #64748b;
}

.form-footer-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 24px;
}

/* Excel Import specifics */
.danger-note {
    background: #fff1f2;
    border: 1px solid #ffe4e6;
    color: #be123c;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin: 16px 0;
}

.admin-card code {
    background: #f1f5f9;
    color: #e11d48;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
}

/* --- DELETE MODAL --- */
.delete-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
    box-sizing: border-box;
}

.delete-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.delete-modal-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.25s ease;
    box-sizing: border-box;
}

.delete-modal-backdrop.active .delete-modal-card {
    transform: scale(1);
}

.delete-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.delete-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.delete-modal-text {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 24px;
}

.delete-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-modal-cancel {
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn-modal-cancel:hover {
    background: #e2e8f0;
}

.btn-modal-confirm {
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    background: #dc2626;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn-modal-confirm:hover {
    background: #b91c1c;
}

/* --- PAGINATION COMPONENT --- */
nav.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    flex-wrap: wrap;
}

nav.pagination a,
nav.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    text-decoration: none;
    transition: all 0.15s ease;
    box-sizing: border-box;
}

nav.pagination a:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

nav.pagination .current {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

nav.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8fafc;
}

/* --- RESPONSIVE BREAKPOINTS FOR ADMIN --- */
@media (max-width: 1024px) {
    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-sidebar-overlay {
        display: block;
    }

    .admin-mobile-toggle {
        display: inline-flex;
    }

    .admin-content {
        padding: 20px 18px 40px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .admin-actions,
    .table-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-search {
        width: 100%;
    }

    .admin-search input {
        min-width: 0;
        flex: 1;
    }

    .form-header-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   ABOUT US PAGE (TASCHEN EDITORIAL GALLERY & PHILOSOPHY)
   ========================================================================== */

.taschen-about-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-color: var(--t-black);
    color: var(--t-white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .taschen-about-hero {
        min-height: 520px;
        height: 48vw;
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .taschen-about-hero {
        min-height: 400px !important;
        height: 118vw !important;
        max-height: 500px !important;
        align-items: flex-end !important;
        padding-bottom: 28px !important;
    }
}

.taschen-about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.taschen-about-hero-bg picture,
.taschen-about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.taschen-about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.90) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.25) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .taschen-about-hero-bg::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.25) 85%, rgba(0, 0, 0, 0.35) 100%) !important;
    }
}

.taschen-about-hero-content {
    max-width: 680px;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .taschen-about-hero-content {
        padding: 0 !important;
        max-width: 100% !important;
    }
}

.taschen-about-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background-color: var(--t-white);
    color: var(--t-black);
    padding: 6px 14px;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .taschen-about-hero-badge {
        font-size: 9px !important;
        letter-spacing: 1.5px !important;
        padding: 4px 10px !important;
        margin-bottom: 12px !important;
    }
}

.taschen-about-hero-title {
    font-family: var(--font-sans);
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--t-white);
}

@media (max-width: 768px) {
    .taschen-about-hero-title {
        font-size: 21px !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
    }
}

.taschen-about-hero-quote {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    padding-left: 18px;
}

@media (max-width: 768px) {
    .taschen-about-hero-quote {
        font-size: 13px !important;
        line-height: 1.45 !important;
        padding-left: 10px !important;
        border-left-width: 2px !important;
    }
}

/* About Narrative Grid */
.taschen-about-story {
    padding: 70px 0 50px 0;
}

.taschen-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 64px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .taschen-about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.taschen-about-heading {
    font-family: var(--font-sans);
    font-size: clamp(21px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--t-black);
    margin-top: 8px;
    margin-bottom: 28px;
}

.taschen-about-quote-box {
    background-color: var(--t-gray-50);
    border-left: 3px solid var(--t-black);
    padding: 24px 28px;
    margin-top: 24px;
}

.taschen-about-quote-box p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--t-black);
    margin-bottom: 12px;
}

.taschen-about-quote-box span {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.taschen-about-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--t-black);
    margin-bottom: 20px;
    font-weight: 400;
}

.taschen-about-lead strong {
    font-weight: 700;
}

.taschen-about-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

/* 4 Core Pillars */
.taschen-about-pillars {
    padding: 60px 0;
    background-color: var(--t-gray-50);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.taschen-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .taschen-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .taschen-pillars-grid {
        grid-template-columns: 1fr;
    }
}

.taschen-pillar-card {
    background-color: var(--t-white);
    padding: 34px 28px;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.taschen-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--t-black);
}

.taschen-pillar-num {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--t-gold, #c59b27);
    margin-bottom: 16px;
    line-height: 1;
}

.taschen-pillar-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--t-black);
    margin-bottom: 12px;
    line-height: 1.25;
}

.taschen-pillar-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Stats Counter Band */
.taschen-about-stats {
    padding: 50px 0;
    background-color: var(--t-black);
    color: var(--t-white);
}

.taschen-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .taschen-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }
}

.taschen-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.taschen-stat-value {
    font-family: var(--font-serif);
    font-size: clamp(29px, 3.6vw, 43px);
    font-weight: 700;
    color: var(--t-white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.taschen-stat-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   LEGAL & POLICY PAGES (TASCHEN DOCUMENT & EDITORIAL STANDARDS)
   ========================================================================== */

.taschen-legal-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--t-white);
    padding: 10px 0 40px 0;
}

.taschen-legal-header {
    margin-bottom: 24px;
}

.taschen-legal-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.9vw, 34px);
    font-weight: 700;
    color: var(--t-black);
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.taschen-legal-meta {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.taschen-legal-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color, #e8e8e5);
    margin: 20px 0 36px 0;
}

.taschen-legal-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.taschen-legal-section {
    margin-bottom: 28px;
}

.taschen-legal-h2 {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    color: var(--t-black);
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.taschen-legal-section p {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.75;
    color: #2b2b29;
    margin-bottom: 14px;
}

.taschen-legal-section strong {
    color: #000000;
    font-weight: 700;
}

.taschen-legal-list {
    list-style-type: disc !important;
    padding-left: 24px !important;
    margin-top: 8px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.taschen-legal-list li {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: #2b2b29;
    list-style-type: disc !important;
}

.taschen-legal-contact-box {
    background-color: var(--t-gray-50, #fbfbfa);
    border: 1px solid var(--border-color, #e8e8e5);
    border-left: 4px solid var(--t-black);
    padding: 22px 26px;
    margin-top: 18px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.taschen-legal-contact-box p {
    margin-bottom: 4px !important;
    font-size: 14.5px !important;
}

.taschen-legal-contact-box a {
    color: var(--t-black);
    text-decoration: underline;
    font-weight: 600;
}

/* ==========================================================================\n+   BOOK GALLERY / LIGHTBOX\n+   ========================================================================== */

.taschen-gallery {
    width: 100%;
}

.taschen-gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    margin: 0;
    width: 100%;
}

.taschen-detail-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 480px;
    perspective: 1400px;
    padding: 16px;
}

.taschen-detail-book-3d {
    position: relative;
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    border-radius: 4px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 42px -8px rgba(0, 0, 0, 0.24),
        0 8px 18px -4px rgba(0, 0, 0, 0.1),
        0 1px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-in;
}

.taschen-detail-book-3d:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 26px 54px -8px rgba(0, 0, 0, 0.3),
        0 12px 24px -4px rgba(0, 0, 0, 0.14);
}

.taschen-detail-book-3d .taschen-detail-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 500px !important;
    object-fit: contain !important;
    border-radius: 4px;
    display: block !important;
    box-shadow: none !important;
    transition: none !important;
    transform: none !important;
}

.taschen-detail-book-3d .taschen-book-spine,
.taschen-detail-book-3d .taschen-book-sheen,
.taschen-detail-book-3d .taschen-book-pages {
    display: none !important;
}

@media (max-width: 768px) {
    .taschen-detail-stage {
        min-height: 360px;
        padding: 8px 0;
    }

    .taschen-detail-book-3d {
        max-height: 400px;
    }

    .taschen-detail-book-3d .taschen-detail-img {
        max-height: 380px !important;
    }
}

@media (max-width: 480px) {
    .taschen-detail-stage {
        min-height: 300px;
        padding: 4px 0;
    }

    .taschen-detail-book-3d {
        max-height: 320px;
    }

    .taschen-detail-book-3d .taschen-detail-img {
        max-height: 300px !important;
    }
}

/* Stage Navigation Arrows (like Taschen Reference Image 4) */
.taschen-stage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--t-black);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.taschen-stage-prev {
    left: 4px;
}

.taschen-stage-next {
    right: 4px;
}

.taschen-stage-arrow:hover {
    background: var(--t-black);
    color: var(--t-white);
    border-color: var(--t-black);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.taschen-gallery-expand {
    position: absolute;
    right: 8px;
    top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, .15);
    background: rgba(255, 255, 255, .92);
    color: var(--t-black);
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-fast);
    z-index: 5;
}

.taschen-gallery-expand:hover {
    border-color: var(--t-black);
    background: var(--t-black);
    color: var(--t-white);
}

/* Stage Counter e.g. 1 / 4 */
.taschen-stage-counter {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 3px 12px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.admin-gallery-item {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.admin-gallery-item > img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #e2e8f0;
}

.admin-gallery-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}

.taschen-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.taschen-lightbox.is-open {
    display: flex;
}

.taschen-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
}

.taschen-lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1100px, 100%);
    height: min(90vh, 820px);
}

/* Smart search, advanced discovery filters and no-result suggestions */
.taschen-search-field-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.taschen-search-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 120;
    width: min(360px, 82vw);
    max-height: min(480px, 70vh);
    overflow-y: auto;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border-color, #ddd);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
}

.taschen-search-autocomplete[hidden] {
    display: none;
}

.taschen-search-autocomplete__heading {
    padding: 5px 8px 8px;
    color: var(--text-muted, #777);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.taschen-search-autocomplete__book {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 8px;
    color: var(--t-black, #111);
    text-decoration: none;
    border-top: 1px solid #f0f0ed;
}

.taschen-search-autocomplete__book:hover {
    background: #f7f7f4;
}

.taschen-search-autocomplete__book strong {
    font-size: 13px;
    font-weight: 700;
}

.taschen-search-autocomplete__book span {
    color: var(--text-secondary, #666);
    font-size: 11px;
}

.taschen-search-autocomplete__popular {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 2px 8px 6px;
}

.taschen-search-autocomplete__popular a,
.taschen-popular-searches a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    color: var(--t-black, #111);
    font-size: 11px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 999px;
}

.taschen-search-autocomplete__popular a:hover,
.taschen-popular-searches a:hover {
    color: #fff;
    background: var(--t-black, #111);
    border-color: var(--t-black, #111);
}

.taschen-search-autocomplete__empty {
    padding: 16px 8px;
    color: var(--text-secondary, #666);
    font-size: 12px;
}

.taschen-popular-searches {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 30px;
}

.taschen-popular-searches__label {
    margin-right: 4px;
    color: var(--text-muted, #777);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.taschen-filter-summary {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: var(--text-secondary, #666);
    font-size: 11px;
    border: 1px dashed #bbb;
    border-radius: 4px;
}

.smart-filter-block {
    margin-bottom: 30px;
}

.smart-filter-block h3 {
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.smart-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
}

.smart-filter-grid label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-secondary, #666);
    font-size: 11px;
    font-weight: 700;
}

.smart-filter-grid select {
    width: 100%;
    min-height: 40px;
    padding: 8px 9px;
    color: var(--t-black, #111);
    background: #fff;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 12px;
    font-weight: 500;
}

.taschen-no-results {
    grid-column: 1 / -1;
    padding: 80px 0;
    text-align: center;
}

.taschen-similar-results {
    max-width: 620px;
    margin: 0 auto 28px;
    padding: 18px;
    text-align: left;
    background: #f7f7f4;
    border: 1px solid #e8e8e5;
}

.taschen-similar-results__title {
    margin: 0 0 10px;
    color: var(--text-secondary, #666);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.taschen-similar-results__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}

.taschen-similar-results__list a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px 0;
    color: var(--t-black, #111);
    text-decoration: none;
    border-bottom: 1px solid #deded9;
}

.taschen-similar-results__list a:hover {
    color: var(--t-red, #d92b2b);
}

.taschen-similar-results__list span {
    color: var(--text-muted, #777);
    font-size: 12px;
}

@media (max-width: 640px) {
    .taschen-search-autocomplete {
        right: -44px;
        width: min(330px, 88vw);
    }

    .smart-filter-grid,
    .taschen-similar-results__list {
        grid-template-columns: 1fr;
    }
}

.taschen-lightbox-image {
    max-width: calc(100% - 96px);
    max-height: calc(100% - 58px);
    object-fit: contain;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .45);
}

.taschen-lightbox-close,
.taschen-lightbox-arrow {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .4);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.taschen-lightbox-close:hover,
.taschen-lightbox-arrow:hover {
    border-color: #fff;
    background: #000;
}

.taschen-lightbox-close {
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    font-size: 28px;
    line-height: 1;
}

.taschen-lightbox-arrow {
    top: 50%;
    width: 44px;
    height: 58px;
    margin-top: -29px;
    font-size: 36px;
    line-height: 1;
}

.taschen-lightbox-arrow--prev { left: 0; }
.taschen-lightbox-arrow--next { right: 0; }

.taschen-lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .taschen-gallery-main {
        min-height: 420px;
    }
}

@media (max-width: 600px) {
    .taschen-gallery-main {
        min-height: 300px;
    }

    .taschen-lightbox {
        padding: 18px;
    }

    .taschen-lightbox-image {
        max-width: calc(100% - 30px);
        max-height: calc(100% - 70px);
    }

    .taschen-lightbox-arrow {
        width: 34px;
        height: 46px;
        margin-top: -23px;
        font-size: 28px;
    }
}

/* ==========================================================================
   EXPANDABLE READ MORE SECTION (TASCHEN LIRE DAVANTAGE STYLE)
   ========================================================================== */

.taschen-readmore-wrapper {
    margin-top: 52px;
    margin-bottom: 56px;
    border-top: 1px solid var(--border-color);
    padding-top: 36px;
    text-align: center;
    width: 100%;
}

.taschen-readmore-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--t-black);
    cursor: pointer;
    padding: 8px 24px;
    background: transparent;
    border: none;
    transition: none;
}

.taschen-readmore-toggle:hover {
    color: var(--t-black);
    transform: none;
}

.taschen-readmore-toggle #readMoreSymbol {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    color: var(--t-black);
}

.taschen-readmore-content {
    margin-top: 36px;
    text-align: left;
    animation: taschenFadeDown 0.35s ease forwards;
}

@keyframes taschenFadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.taschen-readmore-inner {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 32px 0;
}

.taschen-readmore-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 960px) {
    .taschen-readmore-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.taschen-readmore-col-main {
    font-family: var(--font-sans);
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--t-gray-800);
}

.taschen-readmore-col-main h2,
.taschen-readmore-col-main .readmore-title {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--t-black);
    margin-top: 0;
    margin-bottom: 8px;
}

.taschen-readmore-col-main .readmore-subtitle,
.taschen-readmore-col-main h3 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--t-black);
    margin-bottom: 20px;
    line-height: 1.4;
}

.taschen-readmore-col-main p {
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #2b2b2b;
}

.taschen-readmore-col-main a {
    color: var(--t-black);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.taschen-readmore-col-main strong {
    font-weight: 700;
    color: var(--t-black);
}

.taschen-readmore-col-side {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.75;
    color: #4a4a4a;
    padding-top: 4px;
}

.taschen-readmore-col-side h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--t-black);
    margin-top: 0;
    margin-bottom: 12px;
}

.taschen-readmore-col-side p {
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.75;
}

.taschen-readmore-col-side a {
    color: var(--t-black);
    text-decoration: underline;
    font-weight: 600;
}

.taschen-readmore-quick-specs {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eaeaea;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

.taschen-readmore-quick-specs p {
    margin-bottom: 6px;
}


/* Admin management and analytics */
.bulk-toolbar { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin:18px 0; padding:12px 14px; background:#f8fafc; border:1px solid #e5e7eb; border-radius:8px; }
.bulk-toolbar select { min-height:38px; padding:8px 10px; border:1px solid #cbd5e1; background:#fff; }
.check-cell { width:42px; text-align:center; }
.featured-mark { display:inline-flex; margin-left:6px; padding:3px 7px; color:#92400e; background:#fef3c7; border-radius:999px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.4px; }
.admin-table-thumb { width:46px; height:46px; margin-right:10px; vertical-align:middle; object-fit:cover; border-radius:5px; background:#f1f5f9; }
.seo-image-preview, .banner-preview { display:block; max-width:220px; max-height:150px; margin-top:10px; object-fit:cover; border:1px solid #e2e8f0; border-radius:6px; }
.collection-book-picker { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; max-height:420px; overflow:auto; padding:10px; background:#f8fafc; border:1px solid #e2e8f0; }
.collection-book-picker label { display:flex; align-items:flex-start; gap:9px; padding:10px; background:#fff; border:1px solid #e5e7eb; cursor:pointer; }
.collection-book-picker span { display:flex; flex-direction:column; gap:3px; }
.collection-book-picker small { color:#64748b; }
.import-preview-header { align-items:flex-start; }
.import-row-error td { background:#fff7f7; }
.import-errors { display:flex; flex-direction:column; gap:3px; color:#b42318; font-size:12px; }
.import-errors span::before { content:'• '; }
.import-preview-actions { justify-content:space-between; }
.analytics-filter { margin-bottom:18px; }
.analytics-filter form { display:flex; align-items:center; gap:10px; }
.analytics-filter select { min-height:36px; padding:7px 10px; border:1px solid #cbd5e1; background:#fff; }
.analytics-stats .stat-card small { display:block; margin-top:5px; color:#64748b; font-size:11px; }
.analytics-columns { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.admin-managed-banners { display:grid; gap:10px; padding:18px var(--container-padding,32px); background:#f4f4f0; }
.admin-managed-banner { min-height:220px; display:flex; align-items:center; background:linear-gradient(90deg,rgba(0,0,0,.8),rgba(0,0,0,.18)),var(--banner-image) center/cover,#1f2937; color:#fff; }
.admin-managed-banner__content { max-width:680px; padding:42px max(24px,calc((100vw - 1200px)/2)); }
.admin-managed-banner__content > span { font-size:11px; font-weight:800; letter-spacing:2px; }
.admin-managed-banner__content h2 { margin:8px 0; font-family:var(--font-brand,sans-serif); font-size:clamp(22px,4vw,45px); text-transform:uppercase; }
.admin-managed-banner__content p { max-width:560px; color:rgba(255,255,255,.82); }
.taschen-collections-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.taschen-collection-card { position:relative; min-height:250px; display:flex; align-items:flex-end; overflow:hidden; color:#fff; background:#111; text-decoration:none; }
.taschen-collection-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.72; transition:transform .4s ease; }
.taschen-collection-card::after { content:''; position:absolute; inset:35% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.9)); }
.taschen-collection-card > div { position:relative; z-index:1; padding:22px; }
.taschen-collection-card p { margin:0 0 5px; font-size:11px; letter-spacing:1.4px; text-transform:uppercase; }
.taschen-collection-card h3 { margin:0 0 8px; font-size:20px; }
.taschen-collection-card span { font-size:12px; }
.taschen-collection-card:hover img { transform:scale(1.05); }
.collection-page { padding-bottom:80px; }
.collection-hero { position:relative; min-height:360px; display:flex; align-items:flex-end; overflow:hidden; margin-bottom:50px; background:#111; color:#fff; }
.collection-hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.62; }
.collection-hero::after { content:''; position:absolute; inset:25% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.9)); }
.collection-hero__content { position:relative; z-index:1; max-width:760px; padding:48px; }
.collection-hero__content h1 { margin:8px 0; font-family:var(--font-brand,sans-serif); font-size:clamp(30px,5.6vw,62px); text-transform:uppercase; }
.collection-hero__subtitle { font-size:20px; }
.collection-hero__description { max-width:600px; color:rgba(255,255,255,.82); line-height:1.7; }
.collection-empty { grid-column:1 / -1; padding:60px; text-align:center; }
@media (max-width:900px) { .analytics-columns,.taschen-collections-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:640px) { .collection-book-picker,.analytics-columns,.taschen-collections-grid { grid-template-columns:1fr; } .collection-hero__content { padding:28px; } .bulk-toolbar { align-items:stretch; flex-direction:column; } }

/* ==========================================================================
   CUSTOM SELECT DROPDOWN COMPONENT (LUXURY & MINIMALIST)
   ========================================================================== */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    user-select: none;
    box-sizing: border-box;
    width: auto;
}

.custom-select-wrapper.custom-select--form-control {
    display: block;
    width: 100%;
}

.custom-select-native-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 40px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #111827;
    font-size: 13.5px;
    font-weight: 500;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.custom-select-trigger:hover {
    border-color: #9ca3af;
    background: #ffffff;
}

.custom-select-wrapper.is-open .custom-select-trigger,
.custom-select-trigger:focus {
    outline: none;
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.custom-select-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.custom-select-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.custom-select-wrapper.is-open .custom-select-arrow {
    transform: rotate(180deg);
    color: #111827;
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    min-width: 190px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 
        0 14px 28px -4px rgba(0, 0, 0, 0.14),
        0 6px 12px -2px rgba(0, 0, 0, 0.06);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.custom-select-wrapper.opens-up .custom-select-menu {
    top: auto;
    bottom: calc(100% + 5px);
    transform: translateY(6px) scale(0.98);
}

.custom-select-wrapper.is-open .custom-select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.custom-select-options {
    max-height: 250px;
    overflow-y: auto;
    padding: 6px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.custom-select-options::-webkit-scrollbar {
    width: 5px;
}
.custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}
.custom-select-options::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.custom-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 13.5px;
    color: #374151;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.custom-select-option:hover {
    background: #f3f4f6;
    color: #111827;
}

.custom-select-option.is-selected {
    background: #f3f4f6;
    color: #111827;
    font-weight: 600;
}

.custom-select-option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.custom-select-option-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-check {
    display: inline-flex;
    align-items: center;
    color: #111827;
    opacity: 0;
    transition: opacity 0.15s ease;
    flex-shrink: 0;
}

.custom-select-option.is-selected .custom-select-check {
    opacity: 1;
}

.custom-select-wrapper.is-disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* Specific Context Sizing */
.bulk-toolbar .custom-select-wrapper {
    min-width: 200px;
}
.analytics-filter .custom-select-wrapper {
    min-width: 140px;
}
.smart-filter-grid .custom-select-wrapper {
    width: 100%;
}
.smart-filter-grid label span {
    margin-bottom: 6px;
    display: block;
}

