/* ============================================
   HOLGENVY - Light Theme E-Commerce Website
   Color System: Red Gradient + White + Dark Accents
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --neon: #E60012;
    --neon-light: #FF3344;
    --neon-dark: #B3000E;
    --neon-glow: rgba(230, 0, 18, 0.35);
    --neon-glow-strong: rgba(230, 0, 18, 0.6);

    /* Light theme backgrounds */
    --white: #FFFFFF;
    --bg-main: #F5F7FA;
    --bg-section: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-elevated: #F8F9FB;
    --bg-hover: #F0F2F5;

    /* Dark accents (Header, Hero, Footer) */
    --dark: #0A0A0A;
    --dark-light: #111111;
    --dark-card: #1A1A1A;
    --dark-elevated: #222222;
    --dark-hover: #2A2A2A;

    /* Borders */
    --border: #E2E5EA;
    --border-light: #EBEDF0;
    --border-hover: #D0D4DA;
    --border-dark: #2A2A2A;

    /* Text */
    --text: #1A1A2E;
    --text-secondary: #555566;
    --text-muted: #888899;
    --text-dim: #AAAAAA;

    /* Text on dark backgrounds */
    --text-light: #FFFFFF;
    --text-light-secondary: #CCCCCC;
    --text-light-muted: #888888;

    --danger: #FF4444;
    --sale: #FF3333;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-neon: 0 0 20px rgba(230, 0, 18, 0.15);
    --shadow-neon-lg: 0 0 40px rgba(230, 0, 18, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.neon {
    background: linear-gradient(90deg, var(--neon-dark), var(--neon), var(--neon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-neon {
    background: linear-gradient(135deg, var(--neon-dark), var(--neon), var(--neon-light));
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
}

.btn-neon:hover {
    background: linear-gradient(135deg, var(--neon), var(--neon-light), var(--neon));
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--neon);
    color: var(--neon);
    box-shadow: var(--shadow-neon);
    background: rgba(230, 0, 18, 0.08);
}

.btn-dark {
    background: var(--dark);
    color: var(--neon);
    border: 1px solid var(--border-dark);
}

.btn-dark:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.75rem;
}

/* === VIEW ALL LINK === */
.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.view-all:hover {
    color: var(--neon);
    gap: 10px;
}

.view-all svg {
    transition: var(--transition);
}

/* === SECTION TITLE BAR === */
.section-title-bar {
    margin-bottom: 32px;
}

.section-title-bar h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
}

/* ============================================
   DARK SECTIONS: Top Bar, Header, Cat Nav, Hero
   ============================================ */

/* === TOP BAR === */
.top-bar {
    background: var(--dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 8px 0;
    font-size: 0.75rem;
    color: var(--text-light-muted);
}

.top-bar p { font-size: 0.75rem; }

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: var(--text-light-muted);
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--neon);
}

/* === MAIN HEADER (BLACK) === */
.main-header {
    background: var(--dark-light);
    border-bottom: 1px solid var(--border-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner { gap: 24px; }

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo {
    height: 38px;
    width: 38px;
    object-fit: contain;
    border-radius: 4px;
}

.main-header .brand-logo {
    height: 42px;
    width: 42px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--neon);
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 400;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.brand-tag {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-light-muted);
    text-transform: uppercase;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 48px 12px 18px;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.search-bar input::placeholder {
    color: var(--text-light-muted);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--neon);
    color: var(--dark);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--neon-light);
    box-shadow: var(--shadow-neon);
}

/* === Search Results Dropdown === */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    max-height: 420px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.search-results.active {
    display: block;
}

.search-results .search-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-light-muted);
    font-size: 0.85rem;
}

.search-results .search-no-result {
    padding: 20px;
    text-align: center;
    color: var(--text-light-muted);
    font-size: 0.85rem;
}

.search-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-dark);
    text-decoration: none;
    color: var(--text-light);
}

.search-results .search-result-item:last-child {
    border-bottom: none;
}

.search-results .search-result-item:hover {
    background: rgba(230, 0, 18, 0.06);
}

.search-results .search-result-img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--dark-bg);
    flex-shrink: 0;
}

.search-results .search-result-info {
    flex: 1;
    min-width: 0;
}

.search-results .search-result-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.search-results .search-result-category {
    font-size: 0.75rem;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-results .search-view-all {
    display: block;
    padding: 14px 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon);
    text-decoration: none;
    border-top: 1px solid var(--border-dark);
    transition: background 0.2s ease;
}

.search-results .search-view-all:hover {
    background: rgba(230, 0, 18, 0.06);
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-light-secondary);
    font-size: 0.7rem;
    position: relative;
    transition: var(--transition);
}

.action-icon:hover {
    color: var(--neon);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    background: var(--neon);
    color: var(--dark);
    font-size: 0.6rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* === CATEGORY NAV (BLACK) === */
.cat-nav {
    background: var(--dark-card);
    border-bottom: 1px solid var(--border-dark);
    padding: 0;
}

.cat-nav-inner { height: 48px; }

.cat-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    height: 100%;
    background: var(--neon);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}

.cat-menu-btn:hover {
    background: var(--neon-light);
}

.cat-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.cat-links a {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cat-links a:hover {
    color: var(--neon);
    background: rgba(230, 0, 18, 0.08);
}

.cat-links a.hot {
    color: var(--neon);
}

.cat-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light-secondary);
}

.cat-phone svg {
    color: var(--neon);
}

/* === HERO SECTION (BLACK) === */
.hero-section {
    padding: 24px 0;
    background: var(--dark);
}

.hero-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

/* Sidebar */
.hero-sidebar {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar-cats li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light-secondary);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition);
}

.sidebar-cats li:last-child a {
    border-bottom: none;
}

.sidebar-cats li a:hover {
    background: rgba(230, 0, 18, 0.08);
    color: var(--neon);
    padding-left: 24px;
}

.sidebar-cats li a svg {
    margin-left: auto;
    opacity: 0.5;
    transition: var(--transition);
}

.sidebar-cats li a:hover svg {
    opacity: 1;
    color: var(--neon);
    transform: translateX(4px);
}

.cat-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
}

.hero-slide {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
}

/* Hero panel: non-active hidden */
.hero-slide:not(.active) {
    display: none;
}

/* Hero sidebar active state */
.sidebar-cat-link.active {
    background: var(--neon);
    color: #fff;
    border-radius: var(--radius-sm);
}
.sidebar-cat-link.active svg {
    stroke: #fff;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-placeholder-banner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: #444444;
}

.ph-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ph-sub {
    font-size: 0.75rem;
    color: #555555;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.3) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 48px 56px;
    max-width: 550px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(230, 0, 18, 0.12);
    border: 1px solid rgba(230, 0, 18, 0.3);
    color: var(--neon);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.hero-slide-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-slide-content h1 .neon {
    text-shadow: 0 0 30px rgba(230, 0, 18, 0.5);
}

.hero-slide-content p {
    font-size: 0.95rem;
    color: var(--text-light-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-slide-btns {
    display: flex;
    gap: 12px;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 56px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333333;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon-glow);
}

/* ============================================
   LIGHT SECTIONS: Main Content Area
   ============================================ */

/* === SHOP BY CATEGORY === */
.shop-cats {
    padding: 56px 0 32px;
    background: var(--bg-section);
    overflow: hidden;
}

.cats-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    --cat-item-w: calc((100vw - 80px - 100px) / 6);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.cats-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: catsScroll 162s linear infinite;
}

.cats-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes catsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cat-item {
    flex: 0 0 var(--cat-item-w);
    max-width: var(--cat-item-w);
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.cat-item:hover {
    transform: translateY(-6px);
}

.cat-img {
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
    overflow: hidden;
    padding: 8px;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.cat-item:hover .cat-img {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.cat-item:hover .cat-img img {
    transform: scale(1.05);
}

.cat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    display: block;
}

.cat-item:hover .cat-label {
    color: var(--neon);
}

/* === FEATURES BAR === */
.features-bar {
    padding: 32px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(230, 0, 18, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.1);
    border-radius: var(--radius-md);
    color: var(--neon);
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text);
}

.feature-box p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === TODAY'S DEAL === */
.todays-deal {
    padding: 56px 0;
    background: var(--bg-main);
}

.title-with-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.deal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.deal-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.deal-img {
    position: relative;
    overflow: hidden;
}

.deal-img .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.deal-info {
    padding: 18px;
}

.deal-cat {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.deal-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 6px 0 10px;
    line-height: 1.3;
    color: var(--text);
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.new-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--neon-dark);
}

.old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.deal-progress {
    margin-bottom: 14px;
}

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-dark), var(--neon));
    border-radius: 100px;
}

.deal-progress span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* === FEATURED PRODUCTS === */
.featured-products {
    padding: 56px 0;
    background: var(--bg-section);
}

.product-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-elevated);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.tab-btn {
    padding: 6px 14px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    background: var(--neon);
    color: var(--dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card.hidden {
    display: none;
}

/* 产品卡片链接样式 */
.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-link:hover {
    color: inherit;
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img .img-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.product-card:hover .product-img .img-placeholder {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.p-action {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.p-action:hover {
    background: var(--neon);
    border-color: var(--neon);
    color: var(--dark);
}

.product-details {
    padding: 16px;
}

.p-cat {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-details h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 6px 0 10px;
    line-height: 1.3;
    color: var(--text);
}

.p-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--neon-dark);
    margin-bottom: 6px;
}

.p-price .sale-price {
    color: var(--neon-dark);
}

.p-price .orig-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 6px;
}

/* === PROMO BANNER === */
.promo-banner {
    padding: 56px 0;
    background: var(--bg-main);
}

.promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.08), rgba(230, 0, 18, 0.03));
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.promo-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 0, 18, 0.12), transparent 70%);
    pointer-events: none;
}

.promo-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(230, 0, 18, 0.1);
    border: 1px solid rgba(230, 0, 18, 0.2);
    color: var(--neon-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.promo-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text);
}

.promo-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.promo-img .img-placeholder {
    height: 260px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* === CATEGORY GRID SECTION === */
.cat-grid-section {
    padding: 56px 0;
    background: var(--bg-section);
}

.cat-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 20px;
}

.cat-grid-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cat-grid-item:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.cat-grid-item.large {
    grid-row: span 2;
}

.cat-grid-item.wide {
    grid-column: span 2;
}

.grid-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.cat-grid-item:hover .grid-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(10,10,10,0.9) 100%);
}

.grid-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.grid-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--text-light);
}

/* === FULL BANNER === */
.full-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.full-banner-bg {
    position: absolute;
    inset: 0;
}

.banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #151515);
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
}

.full-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.full-banner-content .container {
    max-width: 600px;
    margin-left: max(20px, calc((100% - 1320px) / 2 + 20px));
}

.banner-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(230, 0, 18, 0.12);
    border: 1px solid rgba(230, 0, 18, 0.3);
    color: var(--neon);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.full-banner-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-light);
}

.full-banner-content h2 .neon {
    text-shadow: 0 0 30px rgba(230, 0, 18, 0.5);
}

.full-banner-content p {
    font-size: 0.95rem;
    color: var(--text-light-secondary);
    margin-bottom: 28px;
    max-width: 450px;
    line-height: 1.7;
}

/* === BEST SELLERS === */
.best-sellers {
    padding: 56px 0;
    background: var(--bg-main);
}

.seller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.seller-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.seller-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.seller-img .img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.seller-info {
    padding: 16px;
}

.seller-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text);
}

.seller-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--neon-dark);
    margin-bottom: 4px;
}

/* === SPLIT SHOWCASE === */
.split-showcase {
    padding: 56px 0;
    background: var(--bg-section);
}

.split-section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.split-list {
    display: flex;
    flex-direction: column;
}

/* 2x2 Product Grid */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    flex: 1;
}

.split-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    min-height: 200px;
}

.split-card:hover {
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.split-card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.split-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.split-card:hover .split-card-img .img-placeholder {
    transform: scale(1.05);
}

.split-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    background: var(--neon);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.split-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.split-card-info h5 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--text-light);
}

/* Right Feature Banner */
.split-feature {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    min-height: 420px;
}

.split-feature:hover {
    box-shadow: var(--shadow-neon);
}

.feature-img-placeholder {
    position: absolute;
    inset: 0;
    height: 100%;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img-placeholder .placeholder-content {
    color: var(--text-dim);
}

.feature-img-placeholder .ph-label {
    color: var(--text-dim);
}

.feature-img-placeholder .ph-sub {
    color: var(--text-muted);
}

.split-feature-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(230, 0, 18, 0.15);
    border: 1px solid rgba(230, 0, 18, 0.4);
    color: var(--neon);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.split-feature-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--text-light);
}

.split-feature-info p {
    font-size: 0.88rem;
    color: var(--text-light-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-dark);
    margin-bottom: 16px;
}

/* === SERVICE ICONS === */
.service-icons {
    padding: 40px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(230, 0, 18, 0.05);
    border-radius: var(--radius-md);
}

.service-item svg {
    color: var(--neon);
    margin-bottom: 12px;
}

.service-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.service-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === RECENT COLLECTIONS === */
.recent-collections {
    padding: 56px 0;
    background: var(--bg-main);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.collection-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.collection-img .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.collection-info {
    padding: 20px;
}

.collection-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.collection-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text);
}

.collection-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-dark);
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

/* === NEWSLETTER === */
.newsletter {
    padding: 56px 0;
    background: var(--bg-section);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.06), rgba(230, 0, 18, 0.02));
    border: 1px solid rgba(230, 0, 18, 0.12);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text);
}

.newsletter-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   DARK SECTION: Footer
   ============================================ */

/* === FOOTER (BLACK) === */
.main-footer {
    background: var(--dark);
    border-top: 3px solid var(--neon);
}

.footer-top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--neon-dark), var(--neon), var(--neon-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 60px 0 40px;
}

.brand-col .brand {
    margin-bottom: 16px;
}

.brand-col .brand .brand-logo {
    height: 48px;
    width: 48px;
}

.brand-col .brand .brand-name {
    color: var(--text-light);
}

.brand-col p {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: var(--text-light-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--neon);
    border-color: var(--neon);
    color: var(--dark);
    box-shadow: var(--shadow-neon);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--neon);
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

.contact-list li svg {
    color: var(--neon);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #555555;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 220px 1fr;
    }
    .deal-grid, .product-grid, .seller-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   QUALITY PAGE
   ============================================ */

.quality-page {
    padding: 56px 0;
    background: var(--bg-main);
}

.quality-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--text);
}

/* Certifications */
.quality-cert-section {
    margin-bottom: 56px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cert-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.cert-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: 50%;
    color: var(--neon);
    margin: 0 auto 16px;
}

.cert-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.cert-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* QC Process */
.quality-process-section {
    margin-bottom: 56px;
}

.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon), var(--border));
}

.process-step {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neon);
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-content:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Quality Stats */
.quality-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.stat-card {
    background: var(--dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--neon);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-light-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Lab Equipment */
.quality-lab-section {
    margin-bottom: 56px;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lab-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.lab-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.lab-card .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lab-info {
    padding: 20px;
}

.lab-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.lab-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quality CTA */
.quality-cta {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.06), rgba(230, 0, 18, 0.02));
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.quality-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text);
}

.quality-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* Quality Page Responsive */
@media (max-width: 992px) {
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-stats { grid-template-columns: repeat(2, 1fr); }
    .lab-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cert-grid { grid-template-columns: 1fr; }
    .quality-stats { grid-template-columns: 1fr 1fr; }
    .lab-grid { grid-template-columns: 1fr; }
    .quality-cta { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .quality-stats { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.2rem; }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }
    .hero-sidebar { display: none; }
    .cats-scroll-wrapper { --cat-item-w: calc((100vw - 80px - 60px) / 3); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .deal-grid, .product-grid, .seller-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-inner { grid-template-columns: 1fr; }
    .cat-grid-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    .cat-grid-item.large { grid-row: span 1; }
    .split-layout { grid-template-columns: 1fr; }
    .split-grid { grid-template-columns: 1fr 1fr; }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { max-width: 100%; width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .search-bar, .header-actions { display: none; }
    .mobile-toggle { display: flex; }
    .cat-nav {
        background: var(--dark-card);
        border-top: 1px solid var(--border-dark);
        border-bottom: 1px solid var(--border-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0;
    }
    .cat-nav.active {
        max-height: 500px;
        padding: 12px 0;
    }
    .cat-nav-inner {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
        gap: 0;
    }
    .cat-menu-btn {
        display: none;
    }
    .cat-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .cat-links a {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid var(--border-dark);
        text-align: center;
        font-size: 0.9rem;
    }
    .cat-links li:last-child a {
        border-bottom: none;
    }
    .cat-phone {
        display: none;
    }
    .hero-slide-content { padding: 32px; }
    .hero-slide-content h1 { font-size: 2.5rem; }
    .cats-scroll-wrapper { --cat-item-w: calc((100vw - 40px - 20px) / 2); }
    .features-grid { grid-template-columns: 1fr; }
    .deal-grid, .product-grid, .seller-grid {
        grid-template-columns: 1fr;
    }
    .cat-grid-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .cat-grid-item.wide { grid-column: span 1; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .full-banner-content .container { margin: 0 20px; }
    .full-banner-content h2 { font-size: 2.2rem; }
    .section-title-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
    .product-tabs { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-slide-content h1 { font-size: 2rem; }
    .hero-slide-btns { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .newsletter-form { flex-direction: column; }
    .title-with-badge { flex-direction: column; align-items: flex-start; }
}

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

.page-header {
    background: var(--dark);
    padding: 48px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.products-page {
    padding: 40px 0 56px;
    background: var(--bg-main);
}

.products-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar Filter */
.product-sidebar {
    position: sticky;
    top: 80px;
}

.filter-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}

.filter-box h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

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

.filter-btn {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--bg-hover);
    color: var(--text);
}

.filter-btn.active {
    background: rgba(230, 0, 18, 0.1);
    color: var(--neon-dark);
    font-weight: 600;
}

.filter-cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.filter-cta p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Product Main */
.product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}

.product-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-count strong {
    color: var(--text);
    font-weight: 700;
}

/* Power Type Filter */
.power-filter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-elevated);
    padding: 3px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.power-btn {
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.power-btn:hover {
    color: var(--text);
    background: var(--bg-hover);
}

.power-btn.active {
    background: var(--dark);
    color: var(--neon);
    box-shadow: var(--shadow-sm);
}

.product-sort select {
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text);
    cursor: pointer;
    outline: none;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-page-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-page-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-page-card.hidden {
    display: none;
}

.product-page-card.filter-hidden {
    display: none;
}

.product-page-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-page-img .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.product-page-card:hover .product-page-img .img-placeholder {
    transform: scale(1.03);
}

.product-page-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-page-info .btn {
    margin-top: auto;
}

.product-page-cat {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-page-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 6px 0 12px;
    line-height: 1.3;
    color: var(--text);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 48px 0 64px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.page-btn:hover {
    border-color: var(--neon);
    color: var(--neon);
}

.page-btn.active {
    background: var(--neon);
    border-color: var(--neon);
    color: var(--dark);
}

.page-dots {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0 4px;
}

/* Products Page Responsive */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    .product-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .filter-cta {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
    .filter-cta p { margin-bottom: 0; }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.2rem; }
    .product-sidebar {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page {
    padding: 56px 0;
    background: var(--bg-main);
}

.service-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--text);
}

/* Service Overview Grid */
.services-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.service-overview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-overview-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.service-overview-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: var(--radius-md);
    color: var(--neon);
    margin-bottom: 16px;
}

.service-overview-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-overview-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Process */
.service-process-section {
    margin-bottom: 56px;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-process-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.process-card-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: rgba(230, 0, 18, 0.15);
    line-height: 1;
}

.service-process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-process-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-section {
    margin-bottom: 56px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-choose-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-choose-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.why-choose-card .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-choose-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.why-choose-info {
    padding: 20px;
}

.why-choose-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.why-choose-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.06), rgba(230, 0, 18, 0.02));
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.services-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text);
}

.services-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .services-overview { grid-template-columns: repeat(2, 1fr); }
    .service-process-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .services-overview { grid-template-columns: 1fr; }
    .service-process-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .services-cta { padding: 32px 24px; }
    .cert-inline-grid { grid-template-columns: 1fr; }
    .lab-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES PAGE — QC TIMELINE (inside Step 3)
   ============================================ */

.qc-timeline {
    margin-top: 16px;
    padding-left: 16px;
    border-left: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qc-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.qc-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon);
    border: 2px solid var(--dark);
    flex-shrink: 0;
    margin-top: 5px;
    margin-left: -21px;
    box-shadow: 0 0 6px rgba(230, 0, 18, 0.3);
}

.qc-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qc-step-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}

.qc-step-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   SERVICES PAGE — QUALITY STATS
   ============================================ */

.quality-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}

.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--neon);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--neon);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ============================================
   SERVICES PAGE — CERTIFICATIONS INLINE
   ============================================ */

.certs-inline-section {
    margin-bottom: 48px;
}

.cert-inline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-inline-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.cert-inline-card:hover {
    border-color: var(--neon);
    transform: translateY(-3px);
}

.cert-inline-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(230, 0, 18, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    flex-shrink: 0;
}

.cert-inline-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.cert-inline-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   SERVICES PAGE — LAB / TESTING EQUIPMENT
   ============================================ */

.lab-section {
    margin-bottom: 48px;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lab-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.lab-card:hover {
    border-color: var(--neon);
    transform: translateY(-3px);
}

.lab-card .img-placeholder,
.lab-card .card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.lab-card .img-placeholder {
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lab-info {
    padding: 20px;
}

.lab-info h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.lab-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats responsive */
@media (max-width: 768px) {
    .quality-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
    padding: 56px 0;
    background: var(--bg-main);
}

.about-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--text);
}

/* Intro */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
}

.about-intro-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text);
}

.about-intro-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-intro-image .img-placeholder {
    height: 360px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.mv-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.mv-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: var(--radius-md);
    color: var(--neon);
    margin-bottom: 16px;
}

.mv-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.mv-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline */
.about-timeline-section {
    margin-bottom: 56px;
}

.about-timeline {
    position: relative;
    padding-left: 40px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon), var(--border));
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neon);
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.timeline-content:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.timeline-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

/* Team */
.about-team-section {
    margin-bottom: 56px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.team-card .img-placeholder,
.team-card .card-img {
    height: 240px;
    object-fit: cover;
    display: block;
}

.team-card .img-placeholder {
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.team-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.06), rgba(230, 0, 18, 0.02));
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.about-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text);
}

.about-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-intro { grid-template-columns: 1fr; }
    .about-intro-image { order: -1; }
    .about-intro-image .img-placeholder { height: 260px; }
    .mission-vision { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-stats { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-cta { padding: 32px 24px; }
}

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

/* ============================================
   FACTORY PAGE
   ============================================ */

.factory-page {
    padding: 56px 0;
    background: var(--bg-main);
}

.factory-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--text);
}

/* Factory Intro */
.factory-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
}

.factory-intro-image .img-placeholder {
    height: 360px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.factory-intro-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text);
}

.factory-intro-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Factory Stats */
.factory-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

/* Production Lines */
.factory-lines-section {
    margin-bottom: 56px;
}

.factory-lines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.factory-line-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.factory-line-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.factory-line-card .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.line-info {
    padding: 20px;
}

.line-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.line-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Equipment */
.factory-equipment-section {
    margin-bottom: 56px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.equipment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.equipment-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.equipment-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: var(--radius-md);
    color: var(--neon);
    margin-bottom: 14px;
}

.equipment-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.equipment-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Certifications Banner */
.factory-certs {
    background: var(--dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 56px;
}

.certs-inner {
    text-align: center;
}

.certs-inner h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--text-light);
}

.certs-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.certs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neon);
    font-size: 0.85rem;
    font-weight: 600;
}

.certs-item svg {
    flex-shrink: 0;
}

/* Factory CTA */
.factory-cta {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.06), rgba(230, 0, 18, 0.02));
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.factory-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text);
}

.factory-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* Factory Page Responsive */
@media (max-width: 992px) {
    .factory-intro { grid-template-columns: 1fr; }
    .factory-intro-image { order: -1; }
    .factory-intro-image .img-placeholder { height: 260px; }
    .factory-stats { grid-template-columns: repeat(2, 1fr); }
    .factory-lines-grid { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .factory-stats { grid-template-columns: 1fr 1fr; }
    .equipment-grid { grid-template-columns: 1fr; }
    .certs-list { gap: 20px; }
    .factory-cta { padding: 32px 24px; }
}

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

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

.contact-page {
    padding: 56px 0;
    background: var(--bg-main);
}

.contact-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--text);
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: var(--radius-md);
    color: var(--neon);
    margin-bottom: 16px;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-sub {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    margin-top: 6px;
}

/* Contact Main Layout */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Inquiry Form */
.contact-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: auto;
}

.inquiry-form .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

/* Contact Side */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-map .img-placeholder {
    height: 280px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-office-card {
    background: var(--dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.contact-office-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 16px;
}

.office-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-light-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.office-details li:last-child {
    margin-bottom: 0;
}

.office-details li svg {
    flex-shrink: 0;
    color: var(--neon);
    margin-top: 2px;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-main { grid-template-columns: 1fr; }
    .contact-side { flex-direction: row; }
    .contact-map { flex: 1; }
    .contact-office-card { flex: 1; }
}

@media (max-width: 768px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-side { flex-direction: column; }
    .contact-form-section { padding: 24px; }
}

/* ============================================
   RESOURCES PAGE
   ============================================ */

.resources-page {
    padding: 56px 0;
    background: var(--bg-main);
}

.resources-section {
    margin-bottom: 56px;
}

.resources-section:last-of-type {
    margin-bottom: 0;
}

.resources-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--text);
}

.section-title-with-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-title-with-more .resources-section-title {
    margin-bottom: 0;
}

.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-dark);
    transition: var(--transition);
}

.view-more-link:hover {
    color: var(--neon);
    gap: 10px;
}

.view-more-link svg {
    transition: var(--transition);
}

/* White Papers */
.whitepaper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.whitepaper-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.whitepaper-card h4 {
    color: var(--text);
}

.whitepaper-card p {
    color: var(--text-secondary);
}

.whitepaper-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.wp-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: var(--radius-md);
    color: var(--neon);
    margin-bottom: 16px;
}

.wp-content {
    flex: 1;
}

.wp-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wp-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 8px 0 10px;
    line-height: 1.3;
    color: var(--text);
}

.wp-content p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.wp-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.wp-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wp-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Blog List Page */
.blog-list-page {
    padding: 56px 0;
    background: var(--bg-main);
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .blog-page-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .blog-page-grid { grid-template-columns: 1fr; }
    .section-title-with-more {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.blog-img .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-info {
    padding: 20px;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.blog-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    background: rgba(230, 0, 18, 0.1);
    border-radius: var(--radius-sm);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text);
}

.blog-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neon-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--neon);
}

/* Sourcing Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: block;
    text-decoration: none;
    color: inherit;
}

.event-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.event-img .img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-info {
    padding: 20px;
}

.event-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--dark);
    background: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.event-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--text);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.event-details svg {
    flex-shrink: 0;
    color: var(--neon);
}

.event-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Resources CTA */
.resources-cta {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.06), rgba(230, 0, 18, 0.02));
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-top: 56px;
}

.resources-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text);
}

.resources-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* Resources Page Responsive */
@media (max-width: 992px) {
    .whitepaper-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .events-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .whitepaper-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .resources-cta { padding: 32px 24px; }
}

/* ============================================
   BLOG POST PAGE - Two Column Layout
   ============================================ */

/* Hero Section */
.blog-hero {
    position: relative;
    padding: 48px 0 40px;
    min-height: 180px;
    overflow: hidden;
    background: var(--dark);
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
}

.blog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-img-placeholder svg {
    color: var(--text-light-muted);
    opacity: 0.5;
}

.hero-img-placeholder span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-light-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

/* Blog Post Section */
.blog-post-section {
    padding: 0 0 80px;
    background: var(--bg-main);
}

/* Two Column Layout */
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

/* Main Content */
.blog-post-main {
    min-width: 0;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    box-shadow: var(--shadow-lg);
}

/* Inline Breadcrumb */
.blog-breadcrumb-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.blog-breadcrumb-inline a {
    color: var(--text-muted);
    transition: var(--transition);
}

.blog-breadcrumb-inline a:hover {
    color: var(--neon);
}

.blog-breadcrumb-inline .separator {
    color: var(--text-dim);
    font-size: 0.75rem;
}

.blog-breadcrumb-inline .current {
    color: var(--text);
    font-weight: 500;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Back to Blog Link */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-dark);
    margin-bottom: 20px;
    transition: var(--transition);
}

.back-to-blog:hover {
    color: var(--neon);
    gap: 12px;
}

.back-to-blog svg {
    transition: var(--transition);
}

/* Article Meta Inline */
.blog-post-meta-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.meta-item svg {
    color: var(--neon);
}

/* Article Title */
.blog-post-title-main {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}

/* Article Excerpt Inline */
.blog-post-excerpt-inline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

/* Article Body */
.article-body {
    background: transparent;
    padding: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 24px;
}

.article-body .lead-paragraph {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 32px;
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text);
    margin: 48px 0 20px;
    padding-top: 8px;
}

.article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 16px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0 28px 28px;
}

.article-body li {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 10px;
    padding-left: 8px;
}

.article-body ul li::marker {
    color: var(--neon);
}

.article-body ol li::marker {
    color: var(--neon);
    font-weight: 700;
}

.article-body li strong {
    color: var(--text);
}

.article-body blockquote {
    margin: 40px 0;
    padding: 24px 28px;
    background: var(--bg-elevated);
    border-left: 4px solid var(--neon);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body blockquote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    margin-top: 40px;
}

.share-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.share-buttons-inline {
    display: flex;
    gap: 10px;
}

.share-btn-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.share-btn-circle:hover {
    background: var(--neon);
    border-color: var(--neon);
    color: var(--dark);
    box-shadow: var(--shadow-neon);
}

.share-btn-circle.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.3);
}

.share-btn-circle.twitter:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.share-btn-circle.copied {
    background: var(--neon);
    border-color: var(--neon);
    color: #fff;
}

/* Author Box Inline */
.author-box-inline {
    display: flex;
    gap: 20px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 32px;
}

.author-avatar-inline {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(230, 0, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--neon);
}

.author-avatar-inline svg {
    color: var(--neon);
}

.author-content {
    flex: 1;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.author-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.author-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    background: rgba(230, 0, 18, 0.12);
    border-radius: var(--radius-sm);
}

.author-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Sidebar */
.blog-post-sidebar {
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--neon);
}

/* Sidebar Tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sidebar-tag:hover {
    background: rgba(230, 0, 18, 0.1);
    color: var(--neon-dark);
    border-color: var(--neon);
}

/* Sidebar Links */
.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0;
}

.sidebar-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.5;
    transition: var(--transition);
}

.sidebar-links li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-links a:hover {
    color: var(--neon);
    padding-left: 6px;
}

/* Sidebar Products */
.sidebar-products {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-product-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sidebar-product-card:hover {
    border-color: var(--neon);
    background: rgba(230, 0, 18, 0.03);
    transform: translateX(4px);
    box-shadow: var(--shadow-neon);
}

.sidebar-product-img {
    flex-shrink: 0;
}

.sidebar-product-img .product-thumb {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #E8EAEE, #DEE2E6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-product-img .product-thumb svg {
    color: var(--text-dim);
}

.sidebar-product-info h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.35;
}

.sidebar-product-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Blog Post Page Responsive */
@media (max-width: 1100px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-post-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        position: static;
    }
    
    .sidebar-section {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero { 
        padding: 32px 0 24px;
        min-height: 140px;
    }
    
    .blog-post-layout {
        gap: 24px;
        padding: 24px 16px 60px;
    }
    
    .blog-post-main {
        padding: 24px 20px;
    }
    
    .blog-post-sidebar {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sidebar-section {
        padding: 20px;
    }
    
    .blog-post-title-main { font-size: 2rem; }
    
    .blog-post-excerpt-inline { 
        font-size: 1rem; 
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .article-body h2 { 
        font-size: 1.4rem; 
        margin: 36px 0 16px;
    }
    
    .article-body h3 { 
        font-size: 1.1rem; 
    }
    
    .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    
    .author-box-inline {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }
    
    .author-header {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   PRODUCT CARD CAROUSELS
   ============================================ */

.product-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.deal-img .product-carousel,
.collection-img .product-carousel {
    height: 200px;
}

.product-img .product-carousel {
    height: 220px;
}

.seller-img .product-carousel {
    height: 180px;
}

.split-card-img .product-carousel {
    position: absolute;
    inset: 0;
    height: 100%;
}

.product-page-img .product-carousel {
    height: 200px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.carousel-slide .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* Arrows */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 30px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 10;
    border-radius: 4px;
    font-size: 22px;
    line-height: 1;
    padding: 0;
}

.product-carousel:hover .carousel-prev,
.product-carousel:hover .carousel-next {
    opacity: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--neon);
    color: var(--dark);
}

.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--neon);
    transform: scale(1.2);
}

/* Ensure product-actions stay above carousel in product-img */
.product-img .product-actions {
    z-index: 20;
}

/* Carousel responsive */
@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next {
        opacity: 1;
        width: 26px;
        height: 36px;
        font-size: 18px;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================ */

/* --- Breadcrumb --- */
.breadcrumb-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.breadcrumb li:not(.current)::after {
    content: '>';
    color: var(--text-muted);
    margin-left: 8px;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.breadcrumb .current {
    color: var(--text);
    font-weight: 600;
}

/* --- Product Hero --- */
.product-hero {
    padding: 40px 0 56px;
    background: var(--bg-main);
}

.product-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* --- Left: Gallery --- */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-main {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
}

.gallery-main .product-carousel {
    height: 100%;
    border-radius: 0;
}

.gallery-main .carousel-slide .gallery-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumbs .thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    padding: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gallery-thumbs .thumb .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F2F5, #E8EAEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--text-dim);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-thumbs .thumb.active {
    border-color: var(--neon);
    box-shadow: 0 0 0 2px rgba(230, 0, 18, 0.15);
}

.gallery-thumbs .thumb:hover {
    border-color: var(--neon);
}

.product-sku {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.product-sku strong {
    color: var(--text);
    font-family: var(--font-mono, monospace);
    letter-spacing: 0.03em;
}

/* --- Right: Product Info Panel --- */
.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-info-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-info-panel h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.15;
    color: var(--text);
}

.product-info-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Key Specs */
.product-key-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.key-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.key-spec-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.key-spec-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

/* Trade Info */
.product-trade-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trade-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trade-row svg {
    color: var(--neon);
    flex-shrink: 0;
}

.trade-row strong {
    color: var(--text);
}

/* CTA */
.product-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
    gap: 8px;
}

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

.btn-outline:hover {
    background: var(--neon);
    color: var(--dark);
}

.product-cta-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: -8px;
}

.product-cta-note svg {
    flex-shrink: 0;
    color: var(--neon);
}

/* Trust Badges */
.product-trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.trust-badge svg {
    color: var(--neon);
}

/* --- Product Tabs Section --- */
.product-tabs-section {
    padding: 0 0 64px;
    background: var(--bg-main);
}

.pdp-tabs {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.pdp-tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.pdp-tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
}

.pdp-tab-btn:hover {
    color: var(--text);
}

.pdp-tab-btn.active {
    color: var(--neon);
}

.pdp-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--neon);
    border-radius: 2px 2px 0 0;
}

.pdp-tab-panel {
    display: none;
    padding: 32px;
}

.pdp-tab-panel.active {
    display: block;
}

/* Spec Table */
.spec-table-wrap {
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.spec-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.spec-table tr:nth-child(odd) td {
    background: rgba(255,255,255,0.02);
}

.spec-table td:first-child {
    width: 35%;
    color: var(--text-muted);
    font-weight: 500;
}

.spec-table td:last-child {
    color: var(--text);
    font-weight: 600;
}

/* Applications Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-item {
    padding: 24px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.app-item:hover {
    border-color: var(--neon);
    transform: translateY(-3px);
}

.app-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(230, 0, 18, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    margin-bottom: 14px;
}

.app-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.app-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Downloads */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-decoration: none;
}

.download-item:hover {
    border-color: var(--neon);
    transform: translateX(4px);
}

.download-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(230, 0, 18, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.download-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.download-tag {
    padding: 4px 10px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Certifications */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.cert-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.cert-item:hover {
    border-color: var(--neon);
}

.cert-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(230, 0, 18, 0.1);
    border: 1px solid rgba(230, 0, 18, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--neon);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.cert-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- Related Products --- */
.related-products {
    padding: 48px 0 64px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.related-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.related-img .product-carousel {
    height: 180px;
}

.related-info {
    padding: 16px;
}

.related-cat {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.related-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 6px 0 12px;
    line-height: 1.3;
    color: var(--text);
}

/* ============================================
   INQUIRY STEPS & FAQ
   ============================================ */

.inquiry-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.inq-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.inq-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(230, 0, 18, 0.12);
    border: 1px solid rgba(230, 0, 18, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--neon);
    flex-shrink: 0;
}

.inq-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.inq-step-text strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.inq-step-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FAQ */
.inquiry-faq {
    margin-top: 36px;
    margin-bottom: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.inquiry-faq h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--neon);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
    color: var(--neon);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 18px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PDP RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .product-hero-layout {
        grid-template-columns: 1fr;
    }
    .apps-grid { grid-template-columns: repeat(2, 1fr); }
    .certs-grid { grid-template-columns: repeat(3, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .product-hero { padding: 24px 0 40px; }
    .product-info-panel h1 { font-size: 1.6rem; }
    .product-key-specs { grid-template-columns: 1fr; }
    .product-cta { flex-direction: column; }
    .btn-large { width: 100%; justify-content: center; }
    .pdp-tab-panel { padding: 20px; }
    .apps-grid { grid-template-columns: 1fr; }
    .certs-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    .gallery-main { aspect-ratio: 1 / 1; }
}

/* ============================================
   INQUIRY FORM
   ============================================ */

.inquiry-section {
    padding: 64px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.inquiry-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}

.inquiry-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    color: var(--text);
}

.inquiry-info > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.inquiry-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.inquiry-contact-item svg {
    color: var(--neon);
    flex-shrink: 0;
}

/* Form */
.inquiry-form-wrap {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group label .required {
    color: #FF4444;
    margin-left: 2px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: var(--text-muted);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
}

.inquiry-form input[readonly] {
    background: rgba(230, 0, 18, 0.04);
    border-color: rgba(230, 0, 18, 0.15);
    color: var(--neon);
    cursor: default;
}

.inquiry-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.inquiry-form select option {
    background: var(--dark-card);
    color: var(--text);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Inquiry responsive */
@media (max-width: 992px) {
    .inquiry-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .inquiry-section { padding: 40px 0; }
    .inquiry-form-wrap { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .inquiry-info h2 { font-size: 1.6rem; }
}

/* === PRODUCT IMAGE STYLES === */
.carousel-slide {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.product-img .carousel-slide img,
.product-page-img .carousel-slide img,
.deal-img .carousel-slide img,
.seller-img .carousel-slide img,
.split-card-img .carousel-slide img,
.collection-img .carousel-slide img,
.related-img .carousel-slide img {
    border-radius: var(--radius-md);
}

.gallery-thumbs .thumb {
    background: #FFFFFF;
}
.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* === VIEW MORE CARD === */
.view-more-card .product-img {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.view-more-card .view-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.view-more-card .view-more-link:hover {
    color: var(--neon);
    background: rgba(0, 255, 136, 0.05);
}
.view-more-card .view-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.view-more-card .view-more-content svg {
    transition: transform 0.3s ease;
}
.view-more-card .view-more-link:hover .view-more-content svg {
    transform: translateX(4px);
}
.view-more-card .view-more-content span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.view-more-card .product-details h4 {
    color: var(--neon);
}

/* ============================================
   REPORT SUBPAGE
   ============================================ */

.report-download-card {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.05), rgba(0, 200, 255, 0.05));
    border: 1px solid rgba(230, 0, 18, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.report-download-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
}

.download-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: var(--radius);
    color: var(--neon);
}

.download-card-info {
    flex: 1;
    min-width: 0;
}

.download-card-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text);
    word-break: break-all;
}

.download-card-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.report-download-card .btn-neon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.related-reports {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.related-reports h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text);
}

.related-reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.related-report-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.related-report-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.related-report-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.08);
    border-radius: var(--radius);
    color: var(--neon);
}

.related-report-card div:last-child {
    flex: 1;
    min-width: 0;
}

.related-report-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 4px;
}

.related-report-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
    .report-download-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .download-card-info {
        text-align: center;
    }

    .report-download-card .btn-neon {
        width: 100%;
        justify-content: center;
    }

    .related-reports-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INQUIRY LIST PAGE
   ============================================ */

.inquiry-list-section {
    padding: 48px 0 80px;
    min-height: 50vh;
}

/* Empty State */
.inquiry-list-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.empty-icon {
    color: var(--text-dim);
    margin-bottom: 24px;
}

.inquiry-list-empty h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 12px;
}

.inquiry-list-empty p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Toolbar */
.inquiry-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.toolbar-left .item-count {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.toolbar-left .item-count strong {
    color: var(--neon);
    font-weight: 700;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-sm:hover {
    color: var(--danger);
    border-color: var(--danger);
    background: rgba(255, 68, 68, 0.04);
}

/* List Items */
.inquiry-list-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inq-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.inq-list-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.inq-item-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.inq-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inq-item-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-dim);
}

.inq-item-details {
    flex: 1;
    min-width: 0;
}

.inq-item-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--neon-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 4px;
}

.inq-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.inq-item-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.inq-item-link:hover {
    color: var(--neon);
}

.inq-item-actions {
    flex-shrink: 0;
}

.btn-remove-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove-item:hover {
    color: var(--danger);
    border-color: var(--danger);
    background: rgba(255, 68, 68, 0.06);
}

/* Actions Bar */
.inquiry-list-actions {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.actions-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.actions-info svg {
    flex-shrink: 0;
    color: var(--neon);
}

.actions-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    color: var(--text);
    border-color: var(--text);
}

/* Inquiry List Responsive */
@media (max-width: 768px) {
    .inquiry-list-section {
        padding: 32px 0 60px;
    }

    .inquiry-list-empty {
        padding: 48px 20px;
    }

    .inquiry-list-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .inq-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .inq-item-img {
        width: 64px;
        height: 64px;
    }

    .inq-item-actions {
        align-self: flex-end;
        margin-top: -60px;
    }

    .inquiry-list-actions {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .actions-info {
        justify-content: center;
    }

    .actions-buttons {
        width: 100%;
        flex-direction: column;
    }

    .actions-buttons .btn-outline,
    .actions-buttons .btn-neon {
        width: 100%;
        justify-content: center;
    }
}


