/**
 * Hibo Pharma Main Design System & Responsive Stylesheet
 * 100% Mobile First & Spatial 3D Enhanced
 */

:root {
    /* Derma Natural Official Brand Colors */
    --hibo-primary: #0d4a2f;
    --hibo-primary-hover: #1b7a48;
    --hibo-primary-dark: #072a1a;
    --hibo-primary-light: #e8f5e9;
    --hibo-primary-surface: #f1f8f4;

    --hibo-secondary: #2e7d32;
    --hibo-secondary-light: #f1f8e9;

    --hibo-accent: #689f38;
    --hibo-sale: #e11d48;
    --hibo-sale-bg: #ffe4e6;

    --hibo-bg: #f8fafc;
    --hibo-surface: #ffffff;
    --hibo-surface-muted: #f4f7f5;
    --hibo-border: #e2e8f0;

    --hibo-text-main: #0f172a;
    --hibo-text-muted: #475569;
    --hibo-text-light: #64748b;
    --hibo-text-subtle: #94a3b8;

    /* Typography */
    --hibo-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Shadows */
    --hibo-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --hibo-shadow-md: 0 4px 10px rgba(15, 23, 42, 0.06);
    --hibo-shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.08);
    --hibo-shadow-3d: 0 20px 40px -10px rgba(14, 116, 144, 0.2);

    /* Radii */
    --hibo-radius-sm: 8px;
    --hibo-radius-md: 12px;
    --hibo-radius-lg: 20px;
    --hibo-radius-xl: 28px;
    --hibo-radius-full: 9999px;

    /* Layout */
    --hibo-container-width: 1200px;
    --hibo-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --hibo-transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Mobile Constraints */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--hibo-font-sans);
    background-color: var(--hibo-bg);
    color: var(--hibo-text-main);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.hibo-container {
    width: 100%;
    max-width: var(--hibo-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

/* -------------------------------------------------------------
   1. ANNOUNCEMENT BAR
   ------------------------------------------------------------- */
.hibo-announcement-bar {
    background: linear-gradient(90deg, #0d4a2f 0%, #1b7a48 50%, #0d4a2f 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 100;
    width: 100%;
}

.hibo-announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 28px 0 12px;
}

.hibo-announcement-tag {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: var(--hibo-radius-full);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
    flex-shrink: 0;
}

.hibo-announcement-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.8;
}

/* -------------------------------------------------------------
   2. HEADER & NAVIGATION
   ------------------------------------------------------------- */
.hibo-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hibo-border);
    position: sticky;
    top: 0;
    z-index: 90;
    width: 100%;
}

.hibo-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.hibo-logo {
    display: flex;
    align-items: center;
}

.hibo-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hibo-brand-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    border-radius: var(--hibo-radius-sm);
    box-shadow: 0 2px 8px rgba(13, 74, 47, 0.12);
}

.hibo-brand-text {
    display: flex;
    flex-direction: column;
}

.hibo-logo-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--hibo-primary);
    line-height: 1.1;
}

.hibo-logo-title span {
    color: var(--hibo-secondary);
}

.hibo-logo-subtitle {
    font-size: 10px;
    letter-spacing: 0.4px;
    color: var(--hibo-text-muted);
    font-weight: 700;
    font-style: italic;
}

.hibo-primary-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.hibo-primary-nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--hibo-text-muted);
    padding: 6px 0;
    position: relative;
}

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

.hibo-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hibo-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--hibo-radius-full);
    color: var(--hibo-text-muted);
    background: var(--hibo-surface-muted);
    border: 1px solid var(--hibo-border);
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.hibo-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--hibo-sale);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: var(--hibo-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #ffffff;
}

.hibo-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--hibo-text-main);
}

/* -------------------------------------------------------------
   3. SPATIAL 3D HERO SECTION
   ------------------------------------------------------------- */
.hibo-spatial-hero {
    background: radial-gradient(120% 120% at 50% 0%, #e0f2fe 0%, #f0fdfa 60%, var(--hibo-bg) 100%);
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hibo-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hibo-hero-glow-1 {
    position: absolute;
    top: -100px;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.18) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.hibo-hero-glow-2 {
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.hibo-spatial-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
    width: 100%;
}

.hibo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 5px 14px;
    border-radius: var(--hibo-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    color: var(--hibo-primary-dark);
    margin-bottom: 16px;
}

.hibo-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--hibo-radius-full);
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.hibo-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -1px;
    color: var(--hibo-text-main);
    margin-bottom: 16px;
}

.hibo-hero-title span {
    background: linear-gradient(135deg, var(--hibo-primary) 0%, var(--hibo-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hibo-hero-subtitle {
    font-size: 15px;
    color: var(--hibo-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 520px;
}

.hibo-hero-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hibo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--hibo-radius-md);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--hibo-transition);
}

.hibo-btn-primary {
    background: linear-gradient(135deg, var(--hibo-primary) 0%, var(--hibo-primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(14, 116, 144, 0.25);
}

.hibo-btn-secondary {
    background: #ffffff;
    color: var(--hibo-text-main);
    border-color: var(--hibo-border);
    box-shadow: var(--hibo-shadow-sm);
}

.hibo-booth-pillars {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hibo-pillar-tag {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-full);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--hibo-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Derma Natural 4 Category Panels (From Booth) */
.hibo-booth-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.hibo-booth-cat-panel {
    background: var(--hibo-primary-surface);
    border: 1px solid rgba(13, 74, 47, 0.12);
    border-radius: var(--hibo-radius-lg);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--hibo-transition);
    border-top: 4px solid var(--hibo-primary);
    box-shadow: var(--hibo-shadow-sm);
}

.hibo-booth-cat-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--hibo-shadow-lg);
    background: #ffffff;
}

.hibo-booth-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.hibo-booth-cat-header h4 {
    font-size: 13px;
    font-weight: 900;
    color: var(--hibo-primary-dark);
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.hibo-booth-cat-header p {
    font-size: 12px;
    color: var(--hibo-text-muted);
}

.hibo-booth-cat-action {
    font-size: 11px;
    font-weight: 800;
    color: var(--hibo-primary);
    margin-top: 14px;
    display: inline-block;
}

/* Brand Exhibition Showcase Banner */
.hibo-brand-showcase-card {
    background: var(--hibo-surface);
    border-radius: var(--hibo-radius-xl);
    border: 1px solid var(--hibo-border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    box-shadow: var(--hibo-shadow-lg);
    width: 100%;
    align-items: center;
}

.hibo-brand-showcase-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

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

.hibo-showcase-overlay-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(13, 74, 47, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--hibo-radius-full);
    font-size: 11px;
    font-weight: 800;
}

.hibo-brand-showcase-content {
    padding: 36px 32px;
}

.hibo-showcase-features {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--hibo-border);
    font-size: 12px;
    color: var(--hibo-text-muted);
}

.hibo-showcase-features strong {
    font-size: 16px;
    color: var(--hibo-primary);
    display: block;
}

/* 3D Stage Viewport & Physics Card */
.hibo-3d-stage-viewport {
    perspective: 1200px;
    perspective-origin: 50% 50%;
    width: 100%;
}

.hibo-3d-stage-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--hibo-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.95);
    padding: 28px 24px 20px;
    box-shadow: var(--hibo-shadow-3d);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hibo-3d-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-md);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--hibo-shadow-md);
    z-index: 15;
    pointer-events: none;
}

.hibo-badge-top-right {
    top: -12px;
    right: 12px;
    transform: translateZ(40px);
    border-left: 3px solid #10b981;
}

.hibo-badge-bottom-left {
    bottom: 16px;
    left: -10px;
    transform: translateZ(40px);
    border-left: 3px solid var(--hibo-primary);
}

.hibo-badge-icon {
    font-size: 18px;
}

.hibo-3d-float-badge strong {
    font-size: 11px;
    font-weight: 800;
    color: var(--hibo-text-main);
    display: block;
}

.hibo-3d-float-badge small {
    font-size: 9px;
    color: var(--hibo-text-light);
    display: block;
}

.hibo-3d-podium-ring {
    position: absolute;
    bottom: 100px;
    width: 220px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(14, 116, 144, 0.25) 0%, transparent 70%);
    box-shadow: 0 0 35px rgba(14, 116, 144, 0.3);
    transform: translateZ(5px) rotateX(60deg);
    pointer-events: none;
}

.hibo-3d-visualizer-container {
    position: relative;
    border-radius: var(--hibo-radius-lg);
    overflow: hidden;
    width: 280px;
    height: 230px;
    background: radial-gradient(circle at 50% 40%, #155e38 0%, #0d4a2f 60%, #072a1a 100%);
    box-shadow: 0 16px 36px rgba(13, 74, 47, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    transform: translateZ(30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hibo-3d-bottle-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hibo-video-overlay-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(7, 42, 26, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: var(--hibo-radius-full);
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hibo-pulse-dot {
    width: 5px;
    height: 5px;
    border-radius: var(--hibo-radius-full);
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: hiboPulseGlow 1.5s infinite;
}

.hibo-3d-product-display {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transform: translateZ(30px);
    animation: hibo3DReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hibo3DReveal {
    0% {
        opacity: 0;
        transform: translateZ(5px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateZ(30px) scale(1);
    }
}

.hibo-3d-product-display.is-active {
    display: flex;
}

.hibo-3d-prod-img {
    height: 210px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(14, 116, 144, 0.2));
    animation: hiboFloatLevitate 4s ease-in-out infinite alternate;
}

@keyframes hiboFloatLevitate {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hibo-3d-prod-info {
    margin-top: 10px;
    width: 100%;
    max-width: 280px;
}

.hibo-3d-prod-cat {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--hibo-primary);
}

.hibo-3d-prod-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--hibo-text-main);
    margin: 2px 0 4px;
    line-height: 1.25;
}

.hibo-3d-prod-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--hibo-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hibo-3d-dock {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-full);
    padding: 4px;
    margin-top: 14px;
    box-shadow: var(--hibo-shadow-sm);
    justify-content: center;
    max-width: 100%;
}

.hibo-dock-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: var(--hibo-radius-full);
    font-size: 11px;
    font-weight: 800;
    color: var(--hibo-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.hibo-dock-btn.is-active {
    background: var(--hibo-primary);
    color: #ffffff;
}

/* -------------------------------------------------------------
   4. TRUST SIGNALS BAR
   ------------------------------------------------------------- */
.hibo-trust-section {
    padding: 24px 0;
    background: var(--hibo-surface);
    border-bottom: 1px solid var(--hibo-border);
    width: 100%;
}

.hibo-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.hibo-trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--hibo-radius-md);
}

.hibo-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--hibo-radius-md);
    background: var(--hibo-primary-surface);
    color: var(--hibo-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hibo-trust-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--hibo-text-main);
    line-height: 1.2;
}

.hibo-trust-desc {
    font-size: 11px;
    color: var(--hibo-text-muted);
}

/* -------------------------------------------------------------
   5. PRODUCT GRID & CARDS (2 Columns on Mobile)
   ------------------------------------------------------------- */
.hibo-section {
    padding: 48px 0;
    width: 100%;
}

.hibo-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.hibo-section-title {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--hibo-text-main);
}

.hibo-section-subtitle {
    font-size: 13px;
    color: var(--hibo-text-muted);
    margin-top: 2px;
}

.hibo-view-all {
    font-size: 13px;
    font-weight: 800;
    color: var(--hibo-primary);
    white-space: nowrap;
}

.hibo-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.hibo-product-card {
    background: var(--hibo-surface);
    border-radius: var(--hibo-radius-lg);
    border: 1px solid var(--hibo-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--hibo-shadow-sm);
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hibo-product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 35px -8px rgba(13, 74, 47, 0.18), 0 10px 18px -6px rgba(0, 0, 0, 0.05);
    border-color: rgba(13, 74, 47, 0.3);
}

.hibo-product-thumb-wrap {
    position: relative;
    background: #f8fafc;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    width: 100%;
}

.hibo-product-thumb-wrap img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hibo-product-card:hover .hibo-product-thumb-wrap img {
    transform: scale(1.06);
}

.hibo-wishlist-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: var(--hibo-radius-full);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--hibo-border);
    color: var(--hibo-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.hibo-wishlist-toggle.is-active {
    color: var(--hibo-sale);
    background: #ffe4e6;
}

.hibo-wishlist-toggle.is-active svg {
    fill: var(--hibo-sale);
}

.hibo-badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--hibo-sale);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--hibo-radius-sm);
    z-index: 2;
    text-transform: uppercase;
}

.hibo-product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.hibo-product-cat {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hibo-primary);
    margin-bottom: 4px;
}

.hibo-product-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--hibo-text-main);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.hibo-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 8px;
}

.hibo-rating-count {
    color: var(--hibo-text-light);
    font-size: 10px;
    margin-left: 3px;
    font-weight: 600;
}

.hibo-product-pricing {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 12px;
}

.hibo-price-current {
    font-size: 17px;
    font-weight: 900;
    color: var(--hibo-text-main);
}

.hibo-price-regular {
    font-size: 12px;
    color: var(--hibo-text-subtle);
    text-decoration: line-through;
}

.hibo-card-btn {
    width: 100%;
    padding: 10px;
    border-radius: var(--hibo-radius-md);
    font-size: 12px;
    font-weight: 800;
    background: var(--hibo-primary-surface);
    color: var(--hibo-primary-dark);
    border: 1px solid var(--hibo-primary-light);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    box-sizing: border-box;
}

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

/* -------------------------------------------------------------
   6. CATEGORIES STRIP
   ------------------------------------------------------------- */
.hibo-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    width: 100%;
}

.hibo-cat-card {
    background: var(--hibo-surface);
    border-radius: var(--hibo-radius-lg);
    border: 1px solid var(--hibo-border);
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--hibo-shadow-sm);
    width: 100%;
}

.hibo-cat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--hibo-radius-full);
    background: var(--hibo-primary-surface);
    color: var(--hibo-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hibo-cat-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--hibo-text-main);
}

.hibo-cat-count {
    font-size: 10px;
    color: var(--hibo-text-light);
    font-weight: 600;
}

/* -------------------------------------------------------------
   7. SINGLE PRODUCT & TABS
   ------------------------------------------------------------- */
.hibo-single-product-wrap {
    padding: 32px 0 56px;
    width: 100%;
}

.hibo-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    width: 100%;
}

.hibo-main-image-wrap {
    background: var(--hibo-surface);
    border-radius: var(--hibo-radius-xl);
    border: 1px solid var(--hibo-border);
    padding: 24px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hibo-shadow-md);
    width: 100%;
}

.hibo-main-image-wrap img {
    max-height: 100%;
    object-fit: contain;
}

.hibo-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    width: 100%;
}

.hibo-thumb-btn {
    width: 68px;
    height: 68px;
    border-radius: var(--hibo-radius-md);
    border: 2px solid var(--hibo-border);
    background: var(--hibo-surface);
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.hibo-thumb-btn.is-active {
    border-color: var(--hibo-primary);
}

.hibo-single-info h1 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 10px;
}

.hibo-single-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.hibo-sku-tag {
    font-size: 11px;
    color: var(--hibo-text-light);
    font-weight: 700;
}

.hibo-single-price-box {
    background: var(--hibo-primary-surface);
    border: 1px solid var(--hibo-primary-light);
    border-radius: var(--hibo-radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.hibo-single-price-box .hibo-price-current {
    font-size: 26px;
    color: var(--hibo-primary-dark);
}

.hibo-delivery-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 12px;
}

.hibo-icon-truck {
    color: var(--hibo-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.hibo-add-to-cart-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.hibo-quantity-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-md);
    background: var(--hibo-surface);
    overflow: hidden;
}

.hibo-qty-btn {
    width: 38px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: var(--hibo-text-main);
}

.hibo-qty-input {
    width: 44px;
    height: 44px;
    border: none;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    background: none;
}

.hibo-btn-add-to-cart {
    flex-grow: 1;
    height: 44px;
    padding: 0 20px;
}

.hibo-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    height: 44px;
    padding: 0 16px;
}

.hibo-tabs-container {
    background: var(--hibo-surface);
    border-radius: var(--hibo-radius-lg);
    border: 1px solid var(--hibo-border);
    overflow: hidden;
    margin-bottom: 40px;
    width: 100%;
}

.hibo-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--hibo-border);
    background: #f8fafc;
    overflow-x: auto;
    width: 100%;
}

.hibo-tab-btn {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 800;
    color: var(--hibo-text-muted);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.hibo-tab-btn.is-active {
    color: var(--hibo-primary);
    border-bottom-color: var(--hibo-primary);
    background: var(--hibo-surface);
}

.hibo-tab-content {
    padding: 28px;
    display: none;
}

.hibo-tab-content.is-active {
    display: block;
}

.hibo-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.hibo-spec-table th,
.hibo-spec-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--hibo-border);
    font-size: 13px;
}

.hibo-spec-table th {
    width: 35%;
    font-weight: 800;
    color: var(--hibo-text-muted);
    background: var(--hibo-surface-muted);
}

/* -------------------------------------------------------------
   8. AEO ACCORDION (FAQ)
   ------------------------------------------------------------- */
.hibo-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hibo-faq-item {
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-md);
    background: var(--hibo-surface);
    overflow: hidden;
    width: 100%;
}

.hibo-faq-trigger {
    width: 100%;
    padding: 16px 18px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 800;
    color: var(--hibo-text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hibo-faq-icon {
    font-size: 18px;
    color: var(--hibo-primary);
    font-weight: 800;
}

.hibo-faq-item.is-open .hibo-faq-icon {
    transform: rotate(45deg);
}

.hibo-faq-body {
    display: none;
    padding: 0 18px 16px;
    font-size: 13px;
    color: var(--hibo-text-muted);
    line-height: 1.65;
}

.hibo-faq-item.is-open .hibo-faq-body {
    display: block;
}

/* -------------------------------------------------------------
   9. LIVE SALES ALERT TOAST
   ------------------------------------------------------------- */
.hibo-sales-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-lg);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--hibo-shadow-3d);
    z-index: 88;
    max-width: 320px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hibo-sales-toast.is-active {
    transform: translateX(0);
    opacity: 1;
}

.hibo-toast-info {
    flex-grow: 1;
}

.hibo-toast-user {
    font-size: 11px;
    font-weight: 800;
    color: var(--hibo-text-main);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hibo-toast-verified {
    color: #10b981;
    font-size: 10px;
}

.hibo-toast-product {
    font-size: 11px;
    color: var(--hibo-primary-dark);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    display: block;
}

.hibo-toast-time {
    font-size: 9px;
    color: var(--hibo-text-light);
}

.hibo-toast-close {
    background: none;
    border: none;
    color: var(--hibo-text-subtle);
    cursor: pointer;
    font-size: 14px;
}

/* -------------------------------------------------------------
   10. SHOP ARCHIVE / TOOLBAR
   ------------------------------------------------------------- */
.hibo-archive-header {
    background: linear-gradient(135deg, #0d4a2f 0%, #1b7a48 100%);
    color: #ffffff;
    padding: 40px 0;
    margin-bottom: 28px;
    width: 100%;
}

.hibo-archive-title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 4px;
}

.hibo-archive-desc {
    font-size: 14px;
    opacity: 0.9;
    max-width: 600px;
}

.hibo-shop-toolbar {
    background: var(--hibo-surface);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-lg);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.hibo-cat-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hibo-cat-pill {
    padding: 6px 14px;
    border-radius: var(--hibo-radius-full);
    font-size: 12px;
    font-weight: 700;
    background: var(--hibo-surface-muted);
    color: var(--hibo-text-muted);
    border: 1px solid var(--hibo-border);
}

.hibo-cat-pill.is-active {
    background: var(--hibo-primary);
    color: #ffffff;
    border-color: var(--hibo-primary);
}

.hibo-sort-select {
    padding: 8px 14px;
    border-radius: var(--hibo-radius-md);
    border: 1px solid var(--hibo-border);
    background: var(--hibo-surface);
    font-size: 12px;
    font-weight: 700;
}

.hibo-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.hibo-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--hibo-radius-md);
    background: var(--hibo-surface);
    border: 1px solid var(--hibo-border);
    font-size: 13px;
    font-weight: 800;
}

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

/* -------------------------------------------------------------
   11. BREADCRUMBS
   ------------------------------------------------------------- */
.hibo-breadcrumbs {
    background: var(--hibo-surface);
    border-bottom: 1px solid var(--hibo-border);
    padding: 10px 0;
    font-size: 12px;
    color: var(--hibo-text-light);
    width: 100%;
}

.hibo-breadcrumbs a {
    color: var(--hibo-text-muted);
    font-weight: 600;
}

.hibo-crumb-sep {
    margin: 0 6px;
    opacity: 0.5;
}

.hibo-crumb-current {
    font-weight: 700;
    color: var(--hibo-text-main);
}

/* -------------------------------------------------------------
   12. FOOTER
   ------------------------------------------------------------- */
.hibo-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 56px 0 24px;
    margin-top: 48px;
    font-size: 13px;
    width: 100%;
}

.hibo-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
    margin-bottom: 40px;
    width: 100%;
}

.hibo-footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hibo-footer-col p {
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 14px;
    color: #94a3b8;
}

.hibo-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hibo-footer-links a {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

.hibo-footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}

/* -------------------------------------------------------------
   13. MOBILE DRAWER & BOTTOM BAR
   ------------------------------------------------------------- */
.hibo-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #ffffff;
    z-index: 200;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hibo-mobile-drawer.is-open {
    transform: translateX(0);
}

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

.hibo-drawer-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.hibo-drawer-nav {
    flex-grow: 1;
    padding: 16px;
    overflow-y: auto;
}

.hibo-drawer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hibo-drawer-nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--hibo-text-main);
}

.hibo-mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--hibo-border);
    z-index: 80;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.hibo-mobile-bottom-bar ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
    list-style: none;
    width: 100%;
}

.hibo-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--hibo-text-muted);
    font-size: 10px;
    font-weight: 700;
    gap: 2px;
    height: 100%;
    position: relative;
}

/* -------------------------------------------------------------
   14. STRICT MOBILE & TABLET MEDIA QUERIES
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hibo-spatial-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hibo-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .hibo-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hibo-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hibo-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Layout & Global */
    body {
        padding-bottom: 58px;
    }

    .hibo-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Header */
    .hibo-primary-nav {
        display: none;
    }

    .hibo-mobile-menu-toggle {
        display: block;
    }

    .hibo-nav-wrapper {
        height: 58px;
    }

    .hibo-logo-title {
        font-size: 18px;
    }

    .hibo-logo-subtitle {
        font-size: 9px;
    }

    .hibo-action-btn {
        width: 36px;
        height: 36px;
    }

    .hibo-announcement-content {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Spatial 3D Hero Section */
    .hibo-spatial-hero {
        padding: 24px 0 36px;
    }

    .hibo-spatial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hibo-hero-title {
        font-size: 27px;
        line-height: 1.2;
        letter-spacing: -0.4px;
        margin-bottom: 10px;
    }

    .hibo-hero-subtitle {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .hibo-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .hibo-hero-buttons .hibo-btn {
        width: 100%;
        padding: 11px 16px;
        font-size: 13px;
    }

    .hibo-hero-micro-trust {
        justify-content: center;
        gap: 8px;
        font-size: 10px;
        margin-top: 14px;
    }

    /* 3D Stage Card on Mobile */
    .hibo-3d-stage-viewport {
        perspective: none;
        width: 100%;
    }

    .hibo-3d-stage-card {
        padding: 20px 12px 16px;
        min-height: auto;
        width: 100%;
        transform: none !important;
    }

    .hibo-3d-float-badge {
        position: static !important;
        transform: none !important;
        margin: 4px auto 8px !important;
        display: inline-flex !important;
        padding: 4px 8px;
        font-size: 10px;
    }

    .hibo-badge-icon {
        font-size: 14px;
    }

    .hibo-3d-float-badge strong {
        font-size: 10px;
    }

    .hibo-3d-float-badge small {
        display: none;
    }

    .hibo-3d-podium-ring {
        display: none;
    }

    .hibo-3d-prod-img {
        height: 160px;
    }

    .hibo-3d-prod-title {
        font-size: 15px;
    }

    .hibo-3d-prod-price {
        font-size: 16px;
    }

    .hibo-3d-dock {
        flex-wrap: wrap;
        width: 100%;
        gap: 4px;
        padding: 3px;
    }

    .hibo-dock-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

    /* Derma Natural Booth Pillars & Categories on Mobile */
    .hibo-booth-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hibo-booth-cat-panel {
        padding: 14px 10px;
    }

    .hibo-booth-cat-header h4 {
        font-size: 11px;
    }

    .hibo-booth-cat-header p {
        font-size: 10px;
    }

    .hibo-brand-showcase-card {
        grid-template-columns: 1fr;
    }

    .hibo-brand-showcase-img-wrap {
        min-height: 220px;
    }

    .hibo-brand-showcase-content {
        padding: 20px 16px;
    }

    /* Trust Signals */
    .hibo-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hibo-trust-card {
        padding: 8px;
        gap: 8px;
    }

    .hibo-trust-icon {
        width: 34px;
        height: 34px;
    }

    .hibo-trust-icon svg {
        width: 16px;
        height: 16px;
    }

    .hibo-trust-title {
        font-size: 11px;
    }

    .hibo-trust-desc {
        font-size: 9px;
    }

    /* 2-Column Product Grid on Mobile */
    .hibo-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hibo-product-thumb-wrap {
        padding: 10px;
    }

    .hibo-product-content {
        padding: 10px;
    }

    .hibo-product-title {
        font-size: 12px;
        min-height: 32px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .hibo-price-current {
        font-size: 14px;
    }

    .hibo-price-regular {
        font-size: 10px;
    }

    .hibo-card-btn {
        padding: 8px 4px;
        font-size: 11px;
    }

    .hibo-wishlist-toggle {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
    }

    .hibo-badge-sale {
        top: 6px;
        left: 6px;
        font-size: 8px;
        padding: 2px 5px;
    }

    /* Categories */
    .hibo-cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hibo-cat-card {
        padding: 12px 6px;
    }

    .hibo-cat-icon-wrap {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .hibo-cat-name {
        font-size: 11px;
    }

    /* Single Product */
    .hibo-single-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hibo-single-info h1 {
        font-size: 22px;
    }

    .hibo-add-to-cart-form {
        flex-direction: column;
        align-items: stretch;
    }

    .hibo-quantity-stepper {
        width: 100%;
        justify-content: center;
    }

    .hibo-btn-add-to-cart,
    .hibo-btn-whatsapp {
        width: 100%;
    }

    /* Bottom Bar & Live Sales Toast */
    .hibo-mobile-bottom-bar {
        display: block;
    }

    .hibo-sales-toast {
        bottom: 64px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .hibo-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hibo-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hibo-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .hibo-products-grid {
        grid-template-columns: 1fr;
    }

    .hibo-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -------------------------------------------------------------
   15. CONTACT PAGE & BLOG ARTICLE CARDS
   ------------------------------------------------------------- */
.hibo-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    width: 100%;
}

.hibo-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hibo-contact-card {
    background: var(--hibo-surface);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-lg);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--hibo-shadow-sm);
    transition: var(--hibo-transition);
}

.hibo-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hibo-shadow-md);
    border-color: var(--hibo-primary);
}

.hibo-contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--hibo-radius-md);
    background: var(--hibo-primary-surface);
    color: var(--hibo-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hibo-contact-form-wrap {
    background: var(--hibo-surface);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-xl);
    padding: 32px 28px;
    box-shadow: var(--hibo-shadow-md);
}

.hibo-form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--hibo-radius-md);
    border: 1px solid var(--hibo-border);
    background: var(--hibo-surface-muted);
    font-size: 13px;
    color: var(--hibo-text-main);
    box-sizing: border-box;
    transition: var(--hibo-transition);
}

.hibo-form-input:focus {
    outline: none;
    border-color: var(--hibo-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 74, 47, 0.1);
}

/* Blog Articles Grid */
.hibo-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.hibo-article-card {
    background: var(--hibo-surface);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--hibo-shadow-sm);
    transition: var(--hibo-transition);
}

.hibo-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hibo-shadow-lg);
    border-color: var(--hibo-primary);
}

.hibo-article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hibo-article-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hibo-primary);
    background: var(--hibo-primary-surface);
    padding: 3px 8px;
    border-radius: var(--hibo-radius-full);
}

.hibo-article-date {
    font-size: 11px;
    color: var(--hibo-text-light);
}

.hibo-article-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--hibo-text-main);
    line-height: 1.35;
    margin-bottom: 10px;
}

.hibo-article-title a:hover {
    color: var(--hibo-primary);
}

.hibo-article-excerpt {
    font-size: 13px;
    color: var(--hibo-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.hibo-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--hibo-border);
}

.hibo-article-read-btn {
    font-size: 12px;
    font-weight: 800;
    color: var(--hibo-primary);
}

/* -------------------------------------------------------------
   16. WOOCOMMERCE CART & CHECKOUT POLISH
   ------------------------------------------------------------- */
.woocommerce-cart table.cart,
.woocommerce-checkout table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hibo-surface);
    border-radius: var(--hibo-radius-lg);
    border: 1px solid var(--hibo-border);
    overflow: hidden;
    margin-bottom: 24px;
}

.woocommerce-cart table.cart th,
.woocommerce-checkout table.shop_table th {
    background: var(--hibo-surface-muted);
    padding: 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hibo-text-muted);
}

.woocommerce-cart table.cart td,
.woocommerce-checkout table.shop_table td {
    padding: 16px 14px;
    border-top: 1px solid var(--hibo-border);
    font-size: 14px;
}

.cart_totals {
    background: var(--hibo-surface);
    border: 1px solid var(--hibo-border);
    border-radius: var(--hibo-radius-xl);
    padding: 24px;
    box-shadow: var(--hibo-shadow-md);
}

.cart_totals h2 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--hibo-text-main);
}

.checkout-button,
#place_order {
    background: linear-gradient(135deg, var(--hibo-primary) 0%, var(--hibo-primary-dark) 100%) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    padding: 14px 28px !important;
    border-radius: var(--hibo-radius-md) !important;
    font-size: 15px !important;
    width: 100% !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 6px 16px rgba(13, 74, 47, 0.25) !important;
}

.woocommerce-billing-fields input.input-text,
.woocommerce-billing-fields select,
.woocommerce-billing-fields textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--hibo-radius-md);
    border: 1px solid var(--hibo-border);
    background: var(--hibo-surface-muted);
    font-size: 13px;
    margin-top: 4px;
}

.woocommerce-message,
.woocommerce-info {
    background: var(--hibo-primary-surface);
    border: 1px solid var(--hibo-primary-light);
    border-left: 4px solid var(--hibo-primary);
    padding: 14px 18px;
    border-radius: var(--hibo-radius-md);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 360px) {
    .hibo-products-grid {
        grid-template-columns: 1fr;
    }

    .hibo-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}