/* ============================================================
   Theme 2 — Modern Minimal
   A clean, editorial-inspired design with generous whitespace,
   sharp typography, and subtle interactions.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
    --t2-font: 'Inter', 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --t2-font-display: 'Inter', 'Public Sans', sans-serif;
    --t2-black: #0a0a0a;
    --t2-white: #ffffff;
    --t2-gray-50: #fafafa;
    --t2-gray-100: #f5f5f5;
    --t2-gray-200: #e5e5e5;
    --t2-gray-300: #d4d4d4;
    --t2-gray-400: #a3a3a3;
    --t2-gray-500: #737373;
    --t2-gray-600: #525252;
    --t2-gray-700: #404040;
    --t2-gray-800: #262626;
    --t2-gray-900: #171717;
    --t2-radius: 12px;
    --t2-radius-sm: 8px;
    --t2-radius-lg: 20px;
    --t2-shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --t2-shadow: 0 4px 24px rgba(0,0,0,.06);
    --t2-shadow-lg: 0 12px 40px rgba(0,0,0,.1);
    --t2-transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Google Font Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Base Body Override ---------- */
body {
    font-family: var(--t2-font) !important;
    color: var(--t2-gray-900);
    background: var(--t2-white);
    -webkit-font-smoothing: antialiased;
}

/* ================================================================
   HEADER
   ================================================================ */
.t2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--t2-gray-200);
    transition: all var(--t2-transition);
}

.t2-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.t2-logo a {
    display: flex;
    align-items: center;
}

.t2-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Center Nav */
.t2-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.t2-nav-link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--t2-gray-600);
    text-decoration: none;
    letter-spacing: .02em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color var(--t2-transition);
}

.t2-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--t2-black);
    transition: width var(--t2-transition);
}

.t2-nav-link:hover {
    color: var(--t2-black);
}

.t2-nav-link:hover::after,
.t2-nav-link.active::after {
    width: 100%;
}

/* Right Actions */
.t2-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.t2-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--t2-gray-700);
    transition: all var(--t2-transition);
    position: relative;
}

.t2-action-btn:hover {
    background: var(--t2-gray-100);
    color: var(--t2-black);
}

.t2-account-name {
    font-size: .8rem;
    font-weight: 500;
    margin-left: 6px;
    display: none;
}

@media (min-width: 1024px) {
    .t2-account-name {
        display: inline;
    }
    .t2-account-wrap > .t2-action-btn {
        width: auto;
        border-radius: var(--t2-radius-sm);
        padding: 6px 12px;
    }
}

/* Account Dropdown */
.t2-account-wrap {
    position: relative;
}

.t2-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--t2-white);
    border: 1px solid var(--t2-gray-200);
    border-radius: var(--t2-radius);
    box-shadow: var(--t2-shadow-lg);
    min-width: 180px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--t2-transition);
    z-index: 100;
}

.t2-account-wrap:hover .t2-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.t2-dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: .875rem;
    color: var(--t2-gray-700);
    text-decoration: none;
    border-radius: var(--t2-radius-sm);
    transition: background var(--t2-transition);
}

.t2-dropdown a:hover {
    background: var(--t2-gray-100);
    color: var(--t2-black);
}

/* Cart Badge */
.t2-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--t2-white);
    font-size: .65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.t2-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--t2-gray-700);
}

@media (max-width: 768px) {
    .t2-nav {
        display: none;
    }
    .t2-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .t2-header-inner {
        padding: 0 1rem;
        height: 60px;
    }
    .t2-logo img {
        height: 34px;
    }
    .t2-account-name {
        display: none !important;
    }
}

/* ================================================================
   DEPARTMENT NAV BAR
   ================================================================ */
.t2-dept-bar {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--t2-white);
    border-bottom: 1px solid var(--t2-gray-200);
    transition: all .3s ease;
}

.t2-dept-bar.is-hidden {
    transform: translateY(-100%);
}

.t2-dept-bar.is-home-view {
    background: var(--t2-gray-50);
}

.t2-dept-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.t2-dept-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--t2-gray-200);
    background: var(--t2-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--t2-gray-500);
    transition: all var(--t2-transition);
    z-index: 2;
}

.t2-dept-arrow:hover {
    border-color: var(--t2-gray-400);
    color: var(--t2-black);
}

.t2-dept-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0;
    flex: 1;
    padding: 0 1rem;
}

.t2-dept-track::-webkit-scrollbar {
    display: none;
}

.t2-dept-item {
    flex-shrink: 0;
    position: relative;
}

.t2-dept-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 14px 18px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--t2-gray-600);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .01em;
    transition: color var(--t2-transition);
    border-bottom: 2px solid transparent;
}

.t2-dept-link:hover,
.t2-dept-link.active {
    color: var(--t2-black);
    border-bottom-color: var(--t2-black);
}

.t2-dept-chevron {
    font-size: .55rem;
    transition: transform var(--t2-transition);
}

.t2-dept-item:hover .t2-dept-chevron {
    transform: rotate(180deg);
}

/* Sub-dept panel reuses existing vt-subdept-panel styles */

/* Override header.css sticky positioning — theme 2 uses fixed */
body:not(.shopBody) .t2-header.vt-header-wrap,
body.shopBody .t2-header.vt-header-wrap {
    position: fixed;
    top: 0;
}

body:not(.shopBody) .t2-dept-bar.vt-dept-nav,
body.shopBody .t2-dept-bar.vt-dept-nav {
    position: fixed;
    top: 72px;
}

/* Override header.css vt-header-inner max-width for theme 2 */
.t2-header .vt-header-inner {
    max-width: 1400px;
    padding: 0 2rem;
}

/* Override header.css vt-dept-slider styles — theme 2 uses transform-based scrolling */
.t2-dept-bar .vt-dept-slider-wrapper {
    overflow-x: clip;
    overflow-y: visible;
}

.t2-dept-bar .vt-dept-slider {
    transition: transform 0.25s ease-out;
    will-change: transform;
    overflow: visible;
}

/* Override vt-dept-arrow visibility for theme 2 — always show arrows */
.t2-dept-bar .vt-dept-arrow {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.t2-dept-bar .vt-dept-arrow.show {
    opacity: 1;
    visibility: visible;
}

.t2-dept-bar .vt-dept-arrow-left {
    left: 0;
}

.t2-dept-bar .vt-dept-arrow-right {
    right: 0;
}

@media (max-width: 768px) {
    .t2-dept-bar {
        top: 60px;
    }
    .t2-dept-inner {
        padding: 0 0.5rem;
    }
    .t2-dept-link {
        padding: 12px 14px;
        font-size: .75rem;
    }
}

/* Push shop & orders content below the fixed header + dept bar */
.shopBody,
.ordersBody {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .shopBody,
    .ordersBody {
        padding-top: 110px;
    }
}

/* ================================================================
   HERO — Split-screen with parallax image
   ================================================================ */
.t2-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
    background: var(--t2-gray-50);
}

.t2-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}

.t2-hero-left {
    padding: 6rem 4rem 4rem 4rem;
    display: flex;
    align-items: center;
}

.t2-hero-left-inner {
    max-width: 540px;
    margin-left: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

.t2-hero-left-inner.t2-visible,
.t2-visible .t2-hero-left-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Always show hero on load */
.t2-hero .t2-hero-left-inner {
    animation: t2FadeUp .9s cubic-bezier(.16,1,.3,1) .3s both;
}

@keyframes t2FadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.t2-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.t2-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--t2-black);
    animation: t2LineGrow .6s cubic-bezier(.16,1,.3,1) .6s both;
}

@keyframes t2LineGrow {
    from { width: 0; }
    to   { width: 40px; }
}

.t2-eyebrow-text {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--t2-gray-500);
}

.t2-hero-title {
    font-family: var(--t2-font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: var(--t2-black);
    margin-bottom: 1.5rem;
}

.t2-hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--t2-gray-500);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.t2-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Scroll hint */
.t2-hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: t2FadeUp 1s cubic-bezier(.16,1,.3,1) 1.2s both;
}

.t2-hero-scroll-hint span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--t2-gray-400);
}

.t2-scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--t2-gray-300);
    border-radius: 12px;
    position: relative;
}

.t2-scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--t2-gray-400);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: t2ScrollBounce 2s ease-in-out infinite;
}

@keyframes t2ScrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50%      { top: 16px; opacity: .3; }
}

/* Right side — image stack */
.t2-hero-right {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.t2-hero-img-stack {
    position: absolute;
    inset: 0;
}

.t2-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 6s cubic-bezier(.4,0,.2,1);
}

.t2-hero-img.active {
    opacity: 1;
    transform: scale(1);
}

.t2-hero-img-frame {
    position: absolute;
    inset: 2rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--t2-radius-lg);
    pointer-events: none;
    z-index: 2;
}

/* Floating badge */
.t2-hero-float-badge {
    position: absolute;
    bottom: 3rem;
    left: -1.5rem;
    z-index: 3;
    background: var(--t2-white);
    padding: 12px 20px;
    border-radius: var(--t2-radius);
    box-shadow: var(--t2-shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--t2-gray-800);
    animation: t2Float 4s ease-in-out infinite;
}

@keyframes t2Float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .t2-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .t2-hero-left {
        padding: 7rem 2rem 3rem;
        order: 2;
    }
    .t2-hero-left-inner {
        margin: 0 auto;
        text-align: center;
    }
    .t2-hero-actions {
        justify-content: center;
    }
    .t2-hero-scroll-hint {
        justify-content: center;
    }
    .t2-hero-right {
        height: 50vh;
        order: 1;
    }
    .t2-hero-float-badge {
        left: 1rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .t2-hero-left {
        padding: 6rem 1.5rem 2rem;
    }
    .t2-hero-right {
        height: 40vh;
    }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.t2-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--t2-font);
    font-size: .875rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--t2-transition);
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.t2-btn-arrow {
    display: inline-flex;
    transition: transform .3s cubic-bezier(.16,1,.3,1);
}

.t2-btn:hover .t2-btn-arrow {
    transform: translateX(4px);
}

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

.t2-btn-primary:hover {
    background: var(--t2-gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.t2-btn-outline-dark {
    background: transparent;
    color: var(--t2-black);
    border: 1.5px solid var(--t2-gray-300);
}

.t2-btn-outline-dark:hover {
    border-color: var(--t2-black);
    background: var(--t2-black);
    color: var(--t2-white);
}

.t2-btn-ghost {
    background: transparent;
    color: var(--t2-white);
    border: 1.5px solid rgba(255,255,255,.5);
}

.t2-btn-ghost:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--t2-white);
}

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

.t2-btn-white:hover {
    background: var(--t2-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,.2);
}

.t2-btn-sm {
    padding: 10px 22px;
    font-size: .8rem;
    background: var(--t2-black);
    color: var(--t2-white);
}

.t2-btn-sm:hover {
    background: var(--t2-gray-800);
}

/* ================================================================
   MARQUEE TICKER (replaces trust bar)
   ================================================================ */
.t2-marquee {
    background: var(--t2-black);
    padding: .85rem 0;
    overflow: hidden;
    position: relative;
}

.t2-marquee-track {
    overflow: hidden;
    width: 100%;
}

.t2-marquee-content {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: t2Marquee 30s linear infinite;
    width: max-content;
}

@keyframes t2Marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.t2-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 3rem;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--t2-white);
}

.t2-marquee-item i {
    font-style: normal;
    color: var(--t2-gray-500);
    font-size: .65rem;
}

/* ================================================================
   SECTION HEADERS — left-aligned editorial style
   ================================================================ */
.t2-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.t2-section-header--left {
    text-align: left;
}

.t2-section-number {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--t2-gray-400);
    margin-bottom: .75rem;
    padding: 4px 12px;
    border: 1px solid var(--t2-gray-200);
    border-radius: 100px;
}

.t2-section-header h2 {
    font-family: var(--t2-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--t2-black);
    margin-bottom: .5rem;
}

.t2-section-header p {
    font-size: .95rem;
    color: var(--t2-gray-500);
    margin: 0;
}

/* ================================================================
   REVEAL ANIMATION SYSTEM
   ================================================================ */
[data-t2-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

[data-t2-reveal].t2-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-t2-stagger] .t2-bento-card,
[data-t2-stagger] .t2-gallery-card {
    opacity: 0;
    transform: translateY(40px) scale(.97);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}

[data-t2-stagger].t2-visible .t2-bento-card:nth-child(1),
[data-t2-stagger].t2-visible .t2-gallery-card:nth-child(1) { opacity: 1; transform: none; transition-delay: .1s; }
[data-t2-stagger].t2-visible .t2-bento-card:nth-child(2),
[data-t2-stagger].t2-visible .t2-gallery-card:nth-child(2) { opacity: 1; transform: none; transition-delay: .25s; }
[data-t2-stagger].t2-visible .t2-bento-card:nth-child(3),
[data-t2-stagger].t2-visible .t2-gallery-card:nth-child(3) { opacity: 1; transform: none; transition-delay: .4s; }

/* ================================================================
   COLLECTIONS — Bento asymmetric grid
   ================================================================ */
.t2-collections {
    padding: 6rem 0;
    background: var(--t2-white);
}

.t2-bento-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 280px 280px;
    gap: 1.25rem;
}

.t2-bento-card {
    position: relative;
    display: block;
    border-radius: var(--t2-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--t2-white);
    cursor: pointer;
    transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s cubic-bezier(.16,1,.3,1);
    will-change: transform;
}

.t2-bento-card--1 {
    grid-row: 1 / 3;
}

.t2-bento-card--2,
.t2-bento-card--3 {
    grid-column: 2;
}

.t2-bento-img {
    position: absolute;
    inset: 0;
}

.t2-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.t2-bento-card:hover .t2-bento-img img {
    transform: scale(1.1);
}

.t2-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 30%, rgba(0,0,0,.7) 100%);
    z-index: 1;
    transition: background .5s ease;
}

.t2-bento-card:hover .t2-bento-overlay {
    background: linear-gradient(160deg, transparent 10%, rgba(0,0,0,.8) 100%);
}

.t2-bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.t2-bento-count {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.6);
    margin-bottom: .5rem;
    padding: 3px 10px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
}

.t2-bento-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}

.t2-bento-card--2 .t2-bento-content h3,
.t2-bento-card--3 .t2-bento-content h3 {
    font-size: 1.15rem;
}

.t2-bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: 0;
    transform: translateY(12px);
    transition: all .4s cubic-bezier(.16,1,.3,1);
}

.t2-bento-card:hover .t2-bento-cta {
    opacity: 1;
    transform: translateY(0);
}

.t2-bento-cta svg {
    transition: transform .3s ease;
}

.t2-bento-card:hover .t2-bento-cta svg {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .t2-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 220px 220px;
    }
    .t2-bento-card--1 {
        grid-row: auto;
    }
    .t2-bento-card--2,
    .t2-bento-card--3 {
        grid-column: auto;
    }
}

/* ================================================================
   CATEGORIES — Horizontal scroll cards
   ================================================================ */
.t2-categories {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color1) 100%);
    overflow: hidden;
}

.t2-hscroll-wrapper {
    padding: 1rem 0 2rem;
}

.t2-hscroll-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 2rem 1.5rem;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.t2-hscroll-track::-webkit-scrollbar {
    display: none;
}

.t2-hscroll-track.t2-grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.t2-hscroll-card {
    flex-shrink: 0;
    width: 260px;
    background: var(--t2-white);
    border-radius: var(--t2-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--t2-gray-900);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--t2-gray-200);
    transition: all .4s cubic-bezier(.16,1,.3,1);
    scroll-snap-align: start;
    position: relative;
}

.t2-hscroll-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
    border-color: var(--t2-gray-300);
}

.t2-hscroll-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--t2-gray-100);
}

.t2-hscroll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.t2-hscroll-card:hover .t2-hscroll-img img {
    transform: scale(1.1);
}

.t2-hscroll-info {
    padding: 1.25rem;
    flex: 1;
}

.t2-hscroll-info h4 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--t2-gray-900);
}

.t2-hscroll-info span {
    font-size: .75rem;
    color: var(--t2-gray-500);
}

.t2-hscroll-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--t2-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--t2-shadow);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all .3s cubic-bezier(.16,1,.3,1);
    color: var(--t2-gray-700);
}

.t2-hscroll-card:hover .t2-hscroll-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {
    .t2-hscroll-track {
        padding: .5rem 1rem 1rem;
        gap: 1rem;
    }
    .t2-hscroll-card {
        width: 220px;
    }
}

/* ================================================================
   ABOUT / DESCRIPTION — Cinematic full-width panel
   ================================================================ */
.t2-about {
    padding: 0;
}

.t2-about-cinematic {
    position: relative;
    background: var(--t2-gray-900);
    color: var(--t2-white);
    padding: 6rem 0;
    overflow: hidden;
}

.t2-about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.03) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
    pointer-events: none;
}

.t2-about-layout {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.t2-about-accent {
    flex-shrink: 0;
}

.t2-about-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--t2-gray-700);
    display: block;
    margin-top: -1.5rem;
}

.t2-about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--t2-gray-400);
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .t2-about-cinematic {
        padding: 4rem 0;
    }
    .t2-about-layout {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .t2-about-accent {
        align-self: center;
    }
    .t2-about-quote-mark {
        font-size: 5rem;
        margin-top: 0;
    }
    .t2-about-text {
        padding-top: 0;
    }
}

/* ================================================================
   GALLERY — hover-reveal overlay with zoom icon
   ================================================================ */
.t2-gallery {
    padding: 6rem 0;
    background: var(--t2-white);
}

.t2-gallery-card {
    position: relative;
    border-radius: var(--t2-radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.t2-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s ease;
}

.t2-gallery-card:hover img {
    transform: scale(1.1);
    filter: brightness(.7);
}

.t2-gallery-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 2;
}

.t2-gallery-card:hover .t2-gallery-hover {
    opacity: 1;
}

.t2-gallery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--t2-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2-black);
    transform: scale(.7);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.t2-gallery-card:hover .t2-gallery-icon {
    transform: scale(1);
}

.t2-gallery-name {
    color: var(--t2-white);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    transform: translateY(8px);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.t2-gallery-card:hover .t2-gallery-name {
    transform: translateY(0);
}

/* ================================================================
   FEATURED PRODUCTS — card with badge and reveal link
   ================================================================ */
.t2-featured {
    padding: 6rem 0;
    background: var(--t2-gray-50);
}

.t2-product-card {
    background: var(--t2-white);
    border: 1px solid var(--t2-gray-200);
    border-radius: var(--t2-radius-lg);
    overflow: hidden;
    transition: all .4s cubic-bezier(.16,1,.3,1);
    position: relative;
}

.t2-product-card:hover {
    border-color: var(--t2-gray-300);
    box-shadow: 0 16px 48px rgba(0,0,0,.08);
    transform: translateY(-6px);
}

.t2-product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--t2-gray-100);
    position: relative;
}

.t2-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
    mix-blend-mode: multiply;
}

.t2-product-card:hover .t2-product-img img {
    transform: scale(1.08);
}

.t2-product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 4px 12px;
    background: var(--t2-black);
    color: var(--t2-white);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 100px;
    z-index: 2;
}

.t2-product-info {
    padding: 1.25rem;
}

.t2-product-info h3 {
    font-size: .875rem;
    font-weight: 600;
    color: var(--t2-gray-900);
    margin-bottom: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.t2-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--t2-gray-500);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color .3s ease;
}

.t2-product-link:hover {
    color: var(--t2-black);
}

.t2-product-link svg {
    transition: transform .3s ease;
}

.t2-product-link:hover svg {
    transform: translate(2px, -2px);
}

/* ================================================================
   TESTIMONIALS — Top meta + bottom quote layout
   ================================================================ */
.t2-testimonials {
    padding: 6rem 0;
    background: var(--t2-white);
}

.t2-testimonial-card {
    background: var(--t2-gray-50);
    border: 1px solid var(--t2-gray-200);
    border-radius: var(--t2-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all .4s cubic-bezier(.16,1,.3,1);
    position: relative;
    overflow: hidden;
}

.t2-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 1.5rem;
    font-family: Georgia, serif;
    font-size: 7rem;
    color: var(--t2-gray-200);
    line-height: 1;
    pointer-events: none;
}

.t2-testimonial-card:hover {
    border-color: var(--t2-gray-300);
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
    transform: translateY(-4px);
}

.t2-testimonial-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.t2-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--t2-white);
    box-shadow: var(--t2-shadow-sm);
}

.t2-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2-testimonial-meta {
    flex: 1;
}

.t2-testimonial-meta strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--t2-gray-900);
}

.t2-testimonial-meta span {
    font-size: .72rem;
    color: var(--t2-gray-500);
}

.t2-testimonial-stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
    flex-shrink: 0;
}

.t2-testimonial-text {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--t2-gray-600);
    margin: 0;
    padding: 0;
    border: none;
    font-style: normal;
    position: relative;
    z-index: 1;
}

/* ================================================================
   CTA BANNER — Animated gradient with floating orbs
   ================================================================ */
.t2-cta {
    padding: 5rem 0;
}

.t2-cta-inner {
    position: relative;
    padding: 5rem 2rem;
    border-radius: var(--t2-radius-lg);
    background: var(--t2-black);
    color: var(--t2-white);
    overflow: hidden;
}

.t2-cta-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.t2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
}

.t2-orb--1 {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: -100px;
    right: -50px;
    animation: t2OrbDrift1 8s ease-in-out infinite alternate;
}

.t2-orb--2 {
    width: 200px;
    height: 200px;
    background: #ec4899;
    bottom: -60px;
    left: 10%;
    animation: t2OrbDrift2 10s ease-in-out infinite alternate;
}

.t2-orb--3 {
    width: 160px;
    height: 160px;
    background: #06b6d4;
    top: 30%;
    left: 50%;
    animation: t2OrbDrift3 12s ease-in-out infinite alternate;
}

@keyframes t2OrbDrift1 {
    from { transform: translate(0, 0); }
    to   { transform: translate(-40px, 30px); }
}

@keyframes t2OrbDrift2 {
    from { transform: translate(0, 0); }
    to   { transform: translate(50px, -20px); }
}

@keyframes t2OrbDrift3 {
    from { transform: translate(0, 0); }
    to   { transform: translate(-30px, -40px); }
}

.t2-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.t2-cta-content h2 {
    font-family: var(--t2-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .5rem;
}

.t2-cta-content p {
    font-size: 1rem;
    color: var(--t2-gray-400);
    margin-bottom: 2rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.t2-footer {
    background: var(--t2-gray-900);
    color: var(--t2-gray-400);
    padding: 4.5rem 0 0;
}

.t2-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--t2-gray-800);
}

.t2-footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.t2-footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.5);
}

.t2-footer-desc {
    font-size: .85rem;
    line-height: 1.7;
    color: var(--t2-gray-500);
    margin-bottom: 1.25rem;
}

.t2-footer-social {
    display: flex;
    gap: 10px;
}

.t2-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--t2-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2-gray-500);
    text-decoration: none;
    font-size: .85rem;
    transition: all var(--t2-transition);
}

.t2-footer-social a:hover {
    border-color: var(--t2-white);
    color: var(--t2-white);
    transform: translateY(-2px);
}

.t2-footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--t2-white);
    margin-bottom: 1.25rem;
}

.t2-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t2-footer-col ul li {
    margin-bottom: 10px;
}

.t2-footer-col ul a {
    font-size: .85rem;
    color: var(--t2-gray-500);
    text-decoration: none;
    transition: color var(--t2-transition);
}

.t2-footer-col ul a:hover {
    color: var(--t2-white);
}

.t2-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .85rem;
}

.t2-footer-contact i {
    margin-top: 2px;
    color: var(--t2-gray-600);
    width: 16px;
    flex-shrink: 0;
}

.t2-footer-contact a {
    color: var(--t2-gray-500);
    text-decoration: none;
    transition: color var(--t2-transition);
}

.t2-footer-contact a:hover {
    color: var(--t2-white);
}

.t2-footer-newsletter-text {
    font-size: .85rem;
    color: var(--t2-gray-500);
    margin-bottom: 1rem;
}

.t2-footer-newsletter {
    display: flex;
    gap: 0;
    border: 1px solid var(--t2-gray-700);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color var(--t2-transition);
}

.t2-footer-newsletter:focus-within {
    border-color: var(--t2-gray-500);
}

.t2-footer-newsletter input {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: var(--t2-white);
    font-size: .85rem;
    font-family: var(--t2-font);
    outline: none;
    min-width: 0;
}

.t2-footer-newsletter input::placeholder {
    color: var(--t2-gray-600);
}

.t2-footer-newsletter button {
    padding: 12px 18px;
    background: var(--t2-white);
    border: none;
    cursor: pointer;
    color: var(--t2-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t2-transition);
}

.t2-footer-newsletter button:hover {
    background: var(--t2-gray-200);
}

.t2-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: .8rem;
    color: var(--t2-gray-600);
}

.t2-footer-bottom a {
    color: var(--t2-gray-400);
    text-decoration: none;
    transition: color var(--t2-transition);
}

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

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

@media (max-width: 768px) {
    .t2-footer {
        padding: 3rem 0 0;
    }
    .t2-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .t2-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ================================================================
   FULLPAGE LOADER (keep existing behavior)
   ================================================================ */
.fullpage-loader {
    z-index: 10000;
}

/* ================================================================
   SHARED OVERRIDES
   These override some theme-1 base styles that leak through
   from style.php and vendor CSS, keeping theme 2 clean.
   ================================================================ */

/* Remove default body top-padding that theme 1 may set */
body.theme__color {
    padding-top: 0 !important;
}

/* Ensure slick slider arrows match theme 2 */
.t2-featured .slick-prev,
.t2-featured .slick-next,
.t2-gallery .slick-prev,
.t2-gallery .slick-next,
.t2-testimonials .slick-prev,
.t2-testimonials .slick-next {
    width: 40px;
    height: 40px;
    background: var(--t2-white) !important;
    border: 1px solid var(--t2-gray-200) !important;
    border-radius: 50% !important;
    z-index: 2;
    transition: all var(--t2-transition);
}

.t2-featured .slick-prev:hover,
.t2-featured .slick-next:hover,
.t2-gallery .slick-prev:hover,
.t2-gallery .slick-next:hover,
.t2-testimonials .slick-prev:hover,
.t2-testimonials .slick-next:hover {
    background: var(--t2-gray-100) !important;
    border-color: var(--t2-gray-300) !important;
}

.t2-featured .slick-prev::before,
.t2-featured .slick-next::before,
.t2-gallery .slick-prev::before,
.t2-gallery .slick-next::before,
.t2-testimonials .slick-prev::before,
.t2-testimonials .slick-next::before {
    color: var(--t2-black) !important;
    font-size: 16px;
}

/* Keep search overlay and modals working */
.vt-search-container,
.vt-search-overlay,
.vt-search-results,
.vt-subdept-panel,
.vt-subdept-list,
.vt-subdept-item {
    font-family: var(--t2-font) !important;
}
