/**
 * HRK Wholesale Theme Core Design System and Styles.
 *
 * @package HRK_Wholesale
 */

/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #111111;
    --secondary: #1e1e1e;
    --accent: #8c765c;
    --accent-light: #f5f2eb;
    --background: #fcfcfc;
    --surface: #ffffff;
    --text: #2d2d2d;
    --muted: #757575;
    --border: #e0e0e0;
    --success: #2e7d32;
    --error: #c62828;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Effects & Transitions */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Base layouts */
.hrk-container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.max-w-xl { max-width: 600px; }
.max-w-3xl { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.py-12,
.hrk-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 768px) {
    .py-12,
    .hrk-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }

/* Font styles */
.font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Screen reader only */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   2. BUTTONS & UTILITIES
   ========================================================================== */
.hrk-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.hrk-btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.hrk-btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.hrk-btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.hrk-btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.hrk-btn-text {
    padding: 0;
    background: transparent;
    border: none;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

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

.hrk-btn-text.text-white {
    color: #ffffff;
}
.hrk-btn-text.text-white:hover {
    color: var(--accent-light);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

/* Badges styling */
.section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ==========================================================================
   3. HEADER & TOP BAR
   ========================================================================== */
.hrk-top-bar {
    background-color: var(--primary);
    color: var(--accent-light);
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 101;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header {
    background-color: var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    z-index: 9999 !important;
    position: sticky;
    top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Branding */
.site-branding the_custom_logo img,
.custom-logo-link img,
.hrk-logo {
    max-height: 60px;
    width: auto;
    display: block;
    background: transparent;
}

.site-logo-link-container {
    display: block;
    text-decoration: none;
}

.hrk-primary-logo {
    display: block;
}

.hrk-transparent-logo {
    display: none;
}

/* 1. In non-sticky header state (background is dark/transparent on ALL pages), show the transparent/light logo and hide the primary logo */
.site-header:not(.is-sticky) .has-transparent-logo .hrk-transparent-logo {
    display: block !important;
}
.site-header:not(.is-sticky) .has-transparent-logo .hrk-primary-logo {
    display: none !important;
}

/* 2. In sticky header state (background is white on ALL pages), show the primary/dark logo and hide the transparent/light logo */
.site-header.is-sticky .has-transparent-logo .hrk-primary-logo {
    display: block !important;
}
.site-header.is-sticky .has-transparent-logo .hrk-transparent-logo {
    display: none !important;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo-text .site-title {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.1;
}

.site-logo-text .site-tagline {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Navigation */
.nav-menu-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu-list a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    padding: 8px 0;
    position: relative;
}

.nav-menu-list a:hover,
.nav-menu-list .current-menu-item > a {
    color: var(--accent);
}

.nav-menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-menu-list a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.wa-btn {
    color: #25d366;
}
.wa-btn:hover {
    background-color: rgba(37, 211, 102, 0.1);
}

.header-cta-btn {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    background-color: transparent !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-radius: 2px !important;
    transition: var(--transition) !important;
}

.header-cta-btn:hover {
    background-color: #ffffff !important;
    color: #111111 !important;
    border-color: #ffffff !important;
}

/* Menu Toggle Hamburger (Mobile only) */
.menu-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.menu-toggle-btn span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: var(--transition);
}

/* Search drawer */
.header-search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    display: none;
    box-shadow: var(--shadow-sm);
    z-index: 99;
}

.header-search-bar.open {
    display: block;
}

.search-container .search-form {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 8px 16px;
    border-radius: 4px;
}

.search-container .search-form svg {
    color: var(--muted);
    margin-right: 12px;
}

.search-container .search-field {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: #111111 !important;
    outline: none;
}

/* Sticky & Transparent Header States */
.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transparent-header:not(.is-sticky) {
    --text: #ffffff;
    --primary: #ffffff;
}



.transparent-header:not(.is-sticky) .site-logo-text .site-title {
    color: #ffffff;
}
.transparent-header:not(.is-sticky) .nav-menu-list a {
    color: #ffffff;
}
.transparent-header:not(.is-sticky) .action-btn {
    color: #ffffff;
}
.transparent-header:not(.is-sticky) .header-cta-btn {
    border-color: #ffffff;
    color: #ffffff;
}
.transparent-header:not(.is-sticky) .header-cta-btn:hover {
    background-color: #ffffff;
    color: #111111;
}
.transparent-header:not(.is-sticky) .menu-toggle-btn span {
    background-color: #ffffff;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff !important;
    box-shadow: var(--shadow-sm) !important;
    border-bottom: 1px solid var(--border) !important;
    animation: slideDown 0.3s ease;
}

.site-header.is-sticky .site-title {
    color: #111111 !important;
}

.site-header.is-sticky .site-tagline {
    color: var(--muted) !important;
}

.site-header.is-sticky .nav-menu-list a {
    color: #111111 !important;
}

.site-header.is-sticky .nav-menu-list a:hover {
    color: var(--accent) !important;
}

.site-header.is-sticky .action-btn {
    color: #111111 !important;
}

.site-header.is-sticky .action-btn:hover {
    background-color: var(--accent-light) !important;
    color: var(--accent) !important;
}

.site-header.is-sticky .menu-toggle-btn span {
    background-color: #111111 !important;
}

.site-header.is-sticky .header-cta-btn {
    border-color: rgba(17, 17, 17, 0.2) !important;
    color: #111111 !important;
    background-color: transparent !important;
}

.site-header.is-sticky .header-cta-btn:hover {
    background-color: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
}

/* WordPress Admin Bar Compatibility */
.admin-bar .site-header {
    top: 32px;
}
.admin-bar .mobile-drawer {
    top: 32px;
    height: calc(100vh - 32px);
}
@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
    .admin-bar .mobile-drawer {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ==========================================================================
   4. MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--surface);
    box-shadow: var(--shadow-lg);
    z-index: 100000 !important;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.drawer-title {
    font-size: 20px;
    color: var(--primary);
}

.drawer-close-btn {
    font-size: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--muted);
}

.drawer-body {
    flex-grow: 1;
    padding: 30px 20px;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-list a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
    display: block;
    padding: 8px 0;
}

.drawer-actions {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999 !important;
    display: none;
    backdrop-filter: blur(2px);
}

.drawer-overlay.open {
    display: block;
}

/* ==========================================================================
   5. HOMEPAGE SECTIONS
   ========================================================================== */

/* Hero Slider Styling */
.hrk-hero-slider-section {
    height: 90vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #0f0f0f;
}

.hrk-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hrk-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrk-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: #ffffff;
    z-index: 3;
    position: relative;
}
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-tagline {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Slider Dots */
.hrk-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.hrk-hero-dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
}

/* Slider Arrows */
.hrk-hero-prev,
.hrk-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, 0.4);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    outline: none;
}

.hrk-hero-prev:hover,
.hrk-hero-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.hrk-hero-prev {
    left: 30px;
}

.hrk-hero-next {
    right: 30px;
}

.hero-tagline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.hero-btn-sec {
    border-color: #ffffff;
    color: #ffffff;
}
.hero-btn-sec:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Tuesday launch section */
.tuesday-drop-section {
    background-color: var(--accent-light);
}

.tuesday-drop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tuesday-badge {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.tuesday-desc {
    color: var(--text);
    margin-bottom: 30px;
    font-size: 15px;
}

.tuesday-drop-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.drop-banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.tuesday-drop-image:hover .drop-banner-img {
    transform: scale(1.03);
}

/* Size sets explanation card */
.size-set-explanation-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border);
}

.size-set-visualizer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.visualizer-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.visualizer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 30px;
}

.size-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.size-box-item {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px 10px;
    transition: var(--transition);
}

.size-box-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.size-box-letter {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.size-box-quantity {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.visualizer-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px dashed var(--border);
    padding-top: 20px;
    color: var(--error);
}

/* Category cards Editorial */
.categories-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.category-editorial-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.card-bg-wrapper {
    width: 100%;
    height: 100%;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-editorial-card:hover .card-bg-img {
    transform: scale(1.05);
}

.card-editorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.3) 50%, rgba(17,17,17,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #ffffff;
}

.card-editorial-overlay .card-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.card-editorial-overlay .card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Trust columns */
.trust-pillars-section {
    background-color: var(--accent-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-pillar-card {
    background-color: var(--surface);
    border-radius: 4px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

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

.pillar-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.pillar-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.pillar-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* Brand story editorial */
.brand-story-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.brand-story-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.story-p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Bottom Conversion CTA section */
.bottom-cta-section {
    background-color: var(--primary);
    color: #ffffff;
    padding: 80px 0;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-wa-btn {
    border-color: #25d366;
    color: #25d366;
}
.cta-wa-btn:hover {
    background-color: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

/* ==========================================================================
   6. PRODUCT CARD & CATALOG ARCHIVE
   ========================================================================== */
.hrk-archive-header-banner {
    background-color: var(--primary);
    color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
}

.archive-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.archive-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.hrk-archive-layout-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar filter cards */
.hrk-archive-filters-sidebar {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
    height: fit-content;
    box-shadow: var(--shadow-sm);
}

.filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.filter-title {
    font-size: 18px;
    color: var(--primary);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 12px;
}

.filter-search-input-wrapper input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 2px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.filter-search-input-wrapper input:focus {
    border-color: var(--accent);
}

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

.filter-radio-option,
.filter-checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
}

.filter-radio-option input,
.filter-checkbox-option input {
    cursor: pointer;
    accent-color: var(--accent);
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    background-color: var(--surface);
    outline: none;
    cursor: pointer;
}

.filter-group select:focus {
    border-color: var(--accent);
}

/* Toolbar and main view */
.hrk-archive-products-main {
    position: relative;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.catalog-result-count {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Products grid & card designs */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.product-image-wrapper {
    position: relative;
    padding-top: 130%; /* Editorial tall aspect ratio */
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badges-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.product-badges-overlay span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
}

.badge-tuesday {
    background-color: var(--accent);
    color: #ffffff;
}

.badge-new {
    background-color: #2196f3;
    color: #ffffff;
}

.badge-wholesale {
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.4);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.product-details-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-meta-code {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.product-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.product-card-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    color: var(--text);
    margin-bottom: 20px;
}

.product-card-specs-table th {
    text-align: left;
    font-weight: 500;
    color: var(--muted);
    padding: 4px 0;
    width: 60px;
}

.product-card-specs-table td {
    padding: 4px 0;
}

.product-card-action {
    margin-top: auto;
}

/* Pagination container styles */
.hrk-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.hrk-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 4px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border-radius: 2px;
}

.hrk-pagination .page-numbers.current {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.hrk-pagination .page-numbers:hover:not(.current) {
    border-color: var(--accent);
    color: var(--accent);
}

.hrk-pagination .page-numbers.prev,
.hrk-pagination .page-numbers.next {
    width: auto;
    padding: 0 16px;
}

/* AJAX Spinner loading layout */
.catalog-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   7. PRODUCT DETAIL SINGLE PAGE
   ========================================================================== */
.hrk-breadcrumbs {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.hrk-breadcrumbs a:hover {
    color: var(--accent);
}

.hrk-breadcrumbs .sep {
    margin: 0 8px;
    font-size: 10px;
}

.hrk-breadcrumbs .current {
    color: var(--primary);
    font-weight: 600;
}

.hrk-product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Image gallery zoom slider styles */
.hrk-gallery-main-view {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background-color: #f5f5f5;
    padding-top: 120%; /* Tall proportion */
}

.hrk-gallery-main-view img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
}

.zoomable-image {
    cursor: zoom-in;
}

.badge-tuesday-drop-single,
.badge-new-single {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
}

.badge-tuesday-drop-single { background-color: var(--accent); }
.badge-new-single { background-color: #2196f3; }

.hrk-gallery-thumbnails-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumb-btn {
    flex: 0 0 80px;
    height: 96px;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    padding: 0;
    transition: var(--transition);
}

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

.gallery-thumb-btn.active,
.gallery-thumb-btn:hover {
    border-color: var(--accent);
    opacity: 0.9;
}

/* Right side specifications */
.hrk-single-wholesale-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-light);
    border-left: 3px solid var(--accent);
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.product-single-title {
    font-size: 36px;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 12px;
}

.product-single-code-cat {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}

.product-single-code-cat .divider {
    margin: 0 10px;
    color: var(--border);
}

.product-single-code-cat a {
    color: var(--accent);
    font-weight: 600;
}

.product-single-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

/* Set size configuration layout */
.single-size-set-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
}

.single-size-set-card .card-title {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

.single-size-set-card .card-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.set-sizes-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.set-sizes-badges .size-badge {
    background-color: var(--surface);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.card-warning-msg {
    font-size: 12px;
    font-weight: 600;
    color: var(--error);
}

/* Specs table */
.specs-table-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
}

.hrk-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.hrk-specs-table th,
.hrk-specs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.hrk-specs-table th {
    text-align: left;
    font-weight: 600;
    color: var(--muted);
    width: 200px;
    background-color: #fbfbfb;
}

.hrk-specs-table td {
    color: var(--text);
}

.price-on-inquiry {
    color: var(--error);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Policy warning box */
.hrk-product-policy-notice-box {
    background-color: #fff9f9;
    border: 1px solid #ffdcdc;
    border-left: 3px solid var(--error);
    border-radius: 4px;
    padding: 20px;
}

.hrk-product-policy-notice-box .notice-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--error);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hrk-product-policy-notice-box .notice-txt {
    font-size: 12px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* ==========================================================================
   8. BULK INQUIRY PAGES & STANDALONE FORMS
   ========================================================================== */
.hrk-page-header {
    margin-bottom: 40px;
}

.hrk-page-title {
    font-size: 40px;
    color: var(--primary);
    margin-top: 8px;
}

.hrk-page-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    margin: 8px auto 0 auto;
}

.hrk-inquiry-form-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-section-title {
    font-size: 18px;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-field-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-field-group input[type="text"],
.form-field-group input[type="email"],
.form-field-group input[type="tel"],
.form-field-group select,
.form-field-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background-color: var(--surface);
    transition: var(--transition);
}

.form-field-group input:focus,
.form-field-group select:focus,
.form-field-group textarea:focus {
    border-color: var(--accent);
}

.form-field-group input[type="file"] {
    font-size: 13px;
}

.field-help-txt {
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
    margin-top: 4px;
}

.form-warning-callout {
    background-color: #fff9f9;
    border: 1px solid #ffdcdc;
    padding: 16px;
    border-radius: 2px;
}

.form-warning-callout .warning-txt {
    font-size: 13px;
    line-height: 1.5;
    color: var(--error);
}

/* Success and error alerts style */
.form-alert {
    padding: 16px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-alert.success {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: var(--success);
}

.form-alert.error {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    color: var(--error);
}

/* ==========================================================================
   9. POPUP INQUIRY MODAL OVERLAY
   ========================================================================== */
.hrk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.hrk-modal-overlay.open {
    display: flex;
}

.hrk-modal-container {
    background-color: var(--surface);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hrk-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--muted);
    z-index: 10;
}

.hrk-modal-close-btn:hover {
    color: var(--primary);
}

.hrk-modal-body {
    padding: 40px 30px;
}

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

/* Loading buttons states */
.hrk-btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.hrk-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.hrk-btn-outline.loading::after {
    border-top-color: var(--primary);
}

/* ==========================================================================
   10. OTHER PAGE TEMPLATES (ABOUT, CONTACT, POLICY)
   ========================================================================== */

/* About Page */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-image .about-img {
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-section-heading {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.about-pillar-card .pillar-num {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.4;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.about-pillar-card .pillar-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.about-pillar-card .pillar-txt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.about-showroom-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.showroom-image .showroom-img {
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.showroom-heading {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.showroom-txt {
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--text);
}

/* Contact Page Grid */
.hrk-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 30px;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
}

.contact-column-heading {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary);
}

.contact-address-txt {
    font-size: 15px;
    line-height: 1.7;
}

.contact-column-subheading {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
}

.contact-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list-items li {
    font-size: 15px;
}

.contact-list-items a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-hours-card {
    background-color: var(--accent-light);
    padding: 24px;
    border-radius: 2px;
    border: 1px solid var(--border);
}

.contact-hours-card .hours-txt {
    font-size: 14px;
    margin-bottom: 6px;
}
.contact-hours-card .hours-txt:last-child {
    margin-bottom: 0;
}

.contact-form-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.map-iframe-container {
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Policy Page Layout */
.policy-layout-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content-wrapper {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.policy-sections-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 45px;
}

.policy-item-box {
    display: flex;
    gap: 20px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.policy-item-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.policy-item-box .policy-icon {
    font-size: 28px;
    background-color: var(--accent-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.policy-item-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.policy-item-txt {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.policy-bottom-warning-card {
    display: flex;
    gap: 20px;
    background-color: #fff9f9;
    border: 1px solid #ffdcdc;
    border-left: 4px solid var(--error);
    padding: 24px;
    border-radius: 4px;
}

.policy-bottom-warning-card .warning-icon {
    font-size: 24px;
    color: var(--error);
}

.policy-bottom-warning-card .warning-title {
    font-size: 15px;
    color: var(--error);
    margin-bottom: 6px;
}

.policy-bottom-warning-card .warning-txt {
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* ==========================================================================
   11. EDITORIAL FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--primary);
    color: #ffffff;
    padding: 70px 0 0 0;
    border-top: 4px solid var(--accent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col .footer-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent);
}

.brand-col .footer-logo {
    margin-bottom: 20px;
}
.brand-col .footer-logo img {
    max-height: 50px;
    object-fit: contain;
}
.brand-col .logo-text {
    font-size: 24px;
    color: #ffffff;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badge-b2b span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 10px;
    border-radius: 2px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-link-list a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.footer-contact-list .icon {
    font-size: 16px;
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials .social-icon {
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials .social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-container strong {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   12. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Viewports */
@media (max-width: 1024px) {
    .hrk-archive-layout-wrapper {
        grid-template-columns: 1fr; /* Stack sidebar filter on mobile */
    }
    
    .hrk-archive-filters-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        z-index: 1002;
        overflow-y: auto;
        border-radius: 0;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .hrk-archive-filters-sidebar.open {
        left: 0;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .tuesday-drop-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .drop-banner-img {
        height: 400px;
    }
    
    .brand-story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-img {
        height: 400px;
    }

    .hrk-product-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-showroom-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hrk-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    .main-navigation {
        display: none; /* Hide desktop menu */
    }
    
    .menu-toggle-btn {
        display: flex; /* Show hamburger toggle */
    }
    
    .header-cta-btn {
        display: none; /* Hide primary CTA header link */
    }

    .hrk-hero-slider-section {
        height: 85vh;
    }
    .hrk-hero-prev,
    .hrk-hero-next {
        display: none !important;
    }
    .hrk-hero-slide {
        align-items: flex-end !important;
        padding-top: 120px !important;
        padding-bottom: 75px !important;
    }
    .hero-content {
        margin-top: auto !important;
        margin-bottom: 10px !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    .hero-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
    }
    
    .hero-ctas {
        flex-direction: row !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    .hero-ctas .hrk-btn {
        flex: 1 1 auto !important;
        padding: 8px 12px !important;
        font-size: 11px !important;
        text-align: center !important;
        min-width: 0 !important;
        white-space: nowrap !important;
    }
    
    .categories-editorial-grid {
        grid-template-columns: 1fr;
    }
    
    .category-editorial-card {
        height: 400px;
    }
    
    .size-boxes-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-pillars-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .hrk-modal-body {
        padding: 30px 15px;
    }
}

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

/* ==========================================================================
   12. B2B PRODUCT CATALOG GRID LAYOUT SWITCHER
   ========================================================================== */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 15px;
}

.layout-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.layout-switcher-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-right: 6px;
}

.layout-btn {
    width: 32px;
    height: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    outline: none;
}

.layout-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.layout-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* Products Grid Column Overrides (based on active layout class on grid wrapper) */
/* Desktop */
@media (min-width: 769px) {
    #catalog-grid-container.cols-4 .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    #catalog-grid-container.cols-3 .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    #catalog-grid-container.cols-2 .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #catalog-grid-container.cols-1 .products-grid {
        grid-template-columns: 1fr !important;
    }
    /* List View (1 column) style alignment overrides */
    #catalog-grid-container.cols-1 .products-grid .product-card {
        flex-direction: row !important;
        align-items: center !important;
        height: auto !important;
    }
    #catalog-grid-container.cols-1 .products-grid .product-card .product-image-wrapper {
        width: 250px !important;
        flex-shrink: 0 !important;
        height: 100% !important;
    }
    #catalog-grid-container.cols-1 .products-grid .product-card .product-image-wrapper img {
        height: 250px !important;
        object-fit: cover !important;
        width: 100% !important;
    }
    #catalog-grid-container.cols-1 .products-grid .product-card .product-details-body {
        padding: 25px !important;
        flex-grow: 1 !important;
    }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
    /* Hide 4-column switcher on tablet and mobile */
    .layout-btn[data-cols="4"] {
        display: none !important;
    }
    
    #catalog-grid-container.cols-3 .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    #catalog-grid-container.cols-2 .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #catalog-grid-container.cols-1 .products-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    /* Hide 3-column switcher on mobile */
    .layout-btn[data-cols="3"] {
        display: none !important;
    }
}

/* Print Media Blocker (Ensures print/save actions show blank screen) */
@media print {
    body, html {
        display: none !important;
    }
}

/* B2B Layout Switcher Visual Icons */
.layout-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.layout-icon {
    display: grid;
    gap: 2px;
    width: 16px;
    height: 16px;
    color: var(--text);
    transition: var(--transition);
}

.layout-btn.active .layout-icon {
    color: #ffffff;
}

.layout-btn:hover:not(.active) .layout-icon {
    color: var(--accent);
}

/* 4 Columns Icon (2x2 Grid) */
.cols-4-icon {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.cols-4-icon span {
    background-color: currentColor;
    display: block;
    border-radius: 1px;
}

/* 3 Columns Icon (3 Verticals) */
.cols-3-icon {
    grid-template-columns: repeat(3, 1fr);
}
.cols-3-icon span {
    background-color: currentColor;
    display: block;
    border-radius: 1px;
}

/* 2 Columns Icon (2 Verticals) */
.cols-2-icon {
    grid-template-columns: repeat(2, 1fr);
}
.cols-2-icon span {
    background-color: currentColor;
    display: block;
    border-radius: 1px;
}

/* 1 Column Icon (Horizontal List Bars) */
.cols-1-icon {
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
}
.cols-1-icon span {
    background-color: currentColor;
    display: block;
    border-radius: 1px;
    height: 3px;
    width: 100%;
}

/* Specificity Double-Protection Column overrides */
@media (min-width: 769px) {
    #catalog-grid-container.cols-4 .products-grid,
    .products-grid.cols-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    #catalog-grid-container.cols-3 .products-grid,
    .products-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    #catalog-grid-container.cols-2 .products-grid,
    .products-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #catalog-grid-container.cols-1 .products-grid,
    .products-grid.cols-1 {
        grid-template-columns: 1fr !important;
    }
    
    /* Horizontal List View card adjustments */
    #catalog-grid-container.cols-1 .products-grid .product-card,
    .products-grid.cols-1 .product-card {
        flex-direction: row !important;
        align-items: center !important;
        height: auto !important;
    }
    #catalog-grid-container.cols-1 .products-grid .product-card .product-image-wrapper,
    .products-grid.cols-1 .product-card .product-image-wrapper {
        width: 250px !important;
        flex-shrink: 0 !important;
        height: 100% !important;
    }
    #catalog-grid-container.cols-1 .products-grid .product-card .product-image-wrapper img,
    .products-grid.cols-1 .product-card .product-image-wrapper img {
        height: 250px !important;
        object-fit: cover !important;
        width: 100% !important;
    }
    #catalog-grid-container.cols-1 .products-grid .product-card .product-details-body,
    .products-grid.cols-1 .product-card .product-details-body {
        padding: 25px !important;
        flex-grow: 1 !important;
    }
}

@media (max-width: 768px) {
    #catalog-grid-container.cols-3 .products-grid,
    .products-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    #catalog-grid-container.cols-2 .products-grid,
    .products-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #catalog-grid-container.cols-1 .products-grid,
    .products-grid.cols-1 {
        grid-template-columns: 1fr !important;
    }
}

/* B2B Image Copying & Screenshot Watermark Protection Overlay */
.product-image-wrapper,
.hrk-gallery-main-view {
    position: relative;
}

.product-image-wrapper::after {
    content: 'HRK WHOLESALE • DO NOT COPY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.12);
    padding: 4px 10px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    pointer-events: none;
    z-index: 5;
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
}

.hrk-gallery-main-view::after {
    content: 'HRK WHOLESALE • PROPRIETARY DESIGN';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.32);
    background: rgba(0, 0, 0, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
    white-space: nowrap;
    letter-spacing: 0.12em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Product Gallery Video Styles (9:16 vertical/portrait support) */
.video-thumb-btn {
    background-color: #0b0b0b !important;
    border-color: #1a1a1a !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    position: relative;
    padding: 0 !important;
    border-radius: 4px;
    overflow: hidden;
    width: 60px;
    height: 60px;
}

.video-thumb-play-icon {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 2px;
    color: var(--accent);
}

.video-thumb-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.video-thumb-btn.active {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 1px var(--accent);
}

#main-view-video-wrapper video {
    background: #000000;
}

/* ==========================================================================
   11. B2B EDITORIAL BLOG STYLING SYSTEM
   ========================================================================== */
.hrk-blog-main-wrapper {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.blog-header-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.blog-sub-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.blog-main-title {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    color: var(--text);
}

.blog-desc {
    color: var(--muted);
    max-width: 600px;
    margin: 15px auto 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* Featured Blog Card */
.blog-featured-card {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.featured-card-img-wrapper {
    width: 55%;
    position: relative;
    min-height: 350px;
}

.featured-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.featured-card-img-wrapper:hover img {
    transform: scale(1.03);
}

.featured-card-content {
    width: 45%;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Blog Cards Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-img {
    position: relative;
    padding-top: 60%; /* 5:3 landscape crop */
    overflow: hidden;
    background: #eaeaea;
}

.blog-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
}

.blog-card-title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.blog-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

.blog-card-excerpt {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pagination styling */
.blog-pagination {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    background: var(--surface);
}

.blog-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.blog-pagination span.current {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* Single Blog Post Layout */
.hrk-blog-single-wrapper {
    padding: 80px 0;
    background-color: var(--surface);
}

.hrk-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-single-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-single-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.blog-single-title {
    font-size: 2.8rem;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text);
}

.blog-single-meta {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.blog-single-featured-img {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.blog-single-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post content typography */
.blog-post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333333;
}

.blog-post-content p {
    margin-bottom: 30px;
}

.blog-post-content h2,
.blog-post-content h3 {
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--text);
}

.blog-post-content h2 { font-size: 1.8rem; }
.blog-post-content h3 { font-size: 1.4rem; }

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 30px;
    padding-left: 25px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 10px 0 10px 25px;
    margin: 0 0 30px 0;
    font-style: italic;
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

.blog-single-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tags-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-right: 5px;
}

.post-tags a {
    font-size: 12px;
    padding: 4px 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.post-tags a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Related articles elements */
.blog-section-divider {
    border: 0;
    height: 1px;
    background: var(--border);
    margin: 60px 0;
}

.related-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .blog-featured-card {
        flex-direction: column;
    }
    .featured-card-img-wrapper,
    .featured-card-content {
        width: 100% !important;
    }
    .featured-card-img-wrapper {
        min-height: 250px;
    }
    .blog-single-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-main-title {
        font-size: 2rem;
    }
    .blog-single-title {
        font-size: 1.8rem;
    }
}

/* Reading Scroll Progress indicator */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 99999;
    pointer-events: none;
}

.reading-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    transition: width 0.1s ease-out;
}

/* Blog Category Navigation Pill Bar */
.blog-category-filter-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.category-pill {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.category-pill:hover,
.category-pill.active {
    color: #ffffff;
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Post Tagline */
.blog-single-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--muted);
    line-height: 1.5;
    margin: 10px auto 25px auto;
    max-width: 700px;
    text-align: center;
}

/* Product Showcase Grid Layout inside Blog */
.blog-showcase-products-section {
    padding: 40px 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(198, 40, 40, 0.08);
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text);
}

.showcase-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
}

.blog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-prod-card {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.showcase-prod-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.showcase-card-img {
    width: 40%;
    position: relative;
    background: #eaeaea;
}

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

.showcase-card-code-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.85);
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.showcase-card-body {
    width: 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin: 0 0 12px 0;
}

.showcase-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.showcase-card-title a:hover {
    color: var(--accent);
}

.showcase-card-specs {
    margin-bottom: 20px;
}

.showcase-spec-item {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
}

.showcase-spec-item:last-child {
    border-bottom: 0;
}

.showcase-spec-item strong {
    color: var(--text);
}

.showcase-spec-item span {
    color: var(--muted);
}

.showcase-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-wa-btn:hover {
    background-color: #128c7e;
}

@media (max-width: 768px) {
    .blog-showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-prod-card {
        flex-direction: column;
    }
    .showcase-card-img,
    .showcase-card-body {
        width: 100% !important;
    }
    .showcase-card-img {
        padding-top: 100%; /* square ratio on mobile */
    }
    .showcase-card-img img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* B2B Two-Column Editorial Blog Sidebar Layout */
.blog-layout-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.blog-main-content {
    flex: 1;
    min-width: 0;
}

.blog-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Sidebar Widgets styling */
.sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Info Widget */
.showroom-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 15px 0;
}

.showroom-moq-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(198, 40, 40, 0.08);
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

/* Recent Posts Widget */
.sidebar-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

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

.sidebar-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eaeaea;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-title {
    font-size: 0.95rem;
    line-height: 1.35;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.sidebar-post-title a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-post-title a:hover {
    color: var(--accent);
}

.sidebar-post-date {
    font-size: 11px;
    color: var(--muted);
    display: block;
}

/* Top Trends Curated list */
.sidebar-trend-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border);
}

.sidebar-trend-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-trend-title {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.sidebar-trend-title a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-trend-title a:hover {
    color: var(--accent);
}

.sidebar-trend-date {
    font-size: 11px;
    color: var(--muted);
    display: block;
}

/* Sidebar Call to Action card */
.cta-widget {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff;
}

.sidebar-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--accent);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    border: 0;
}

.sidebar-cta-btn:hover {
    background-color: #9e1b1b;
}

/* Sidebar responsive rules */
@media (max-width: 991px) {
    .blog-layout-container {
        flex-direction: column;
        gap: 30px;
    }
    .blog-sidebar {
        width: 100%;
    }
}

/* Center menu header alignment system (Logo Left, Menu Center, Actions Right) */
@media (min-width: 992px) {
    .header-container {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        max-width: 100% !important;
        padding: 0 40px !important;
        width: 100% !important;
        height: 80px;
        justify-content: stretch !important;
    }
    .site-branding {
        justify-self: start !important;
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
    }
    .main-navigation {
        justify-self: center !important;
        display: block !important;
        flex: 0 0 auto !important;
    }
    .header-actions {
        justify-self: end !important;
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        flex: 0 0 auto !important;
    }
}

/* B2B Exclusive Anti-Screenshot Mobile Shield (Blanking) */
body.hrk-screenshot-shield-blank {
    opacity: 0 !important;
    visibility: hidden !important;
    background: #000000 !important;
    pointer-events: none !important;
    transition: none !important;
}

/* B2B Exclusive Anti-Save & Anti-Download Security Shield */
img, a, .hrk-logo, .site-logo-link-container {
    -webkit-touch-callout: none !important; /* Disables iOS touch-and-hold context menu */
    -webkit-user-select: none !important;   /* Disables selection */
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;     /* Disables image dragging */
}

/* Intercept Android Chrome touch-and-hold menus on all catalog image loops */
.hrk-product-gallery-column img,
.product-card-img img,
.blog-showcase-grid img,
.featured-card-img-wrapper img,
.post-thumb img,
.showcase-card-img img,
.sidebar-post-thumb img,
.no-image-placeholder {
    pointer-events: none !important;
}

/* Desktop vs Mobile secure gallery overlay routing */
.hrk-image-secure-overlay {
    pointer-events: none !important; /* Allow hover zoom on desktop */
}

@media (max-width: 991px) {
    .hrk-image-secure-overlay {
        pointer-events: auto !important; /* Block touch-and-hold on mobile */
    }
    
    /* Double safety: block pointer events on main img on mobile */
    #hrk-active-gallery-img {
        pointer-events: none !important;
    }
}

/* Security: Blur screen on hardware focus loss (screenshot triggers) */
body.screenshot-blur {
    filter: blur(15px) !important;
    pointer-events: none !important;
    user-select: none !important;
}
