/* ================================================================
   Homepage — PC Styles
   ================================================================ */

/* ----- Hero Section ----- */
.ho-hero {
    position: relative;
    min-height: var(--hc-height, 100vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.ho-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--hc-angle, 90deg), var(--hc-bg1, #000000) var(--hc-pos1, 50%), var(--hc-bg2, #FFFFFF) var(--hc-pos2, 50%));
    z-index: 0;
}

.ho-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, color-mix(in srgb, var(--hc-glow, #E53E3E), transparent 82%) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, color-mix(in srgb, var(--hc-glow, #E53E3E), transparent 88%) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 90%, color-mix(in srgb, var(--hc-glow, #E53E3E), transparent 92%) 0%, transparent 50%);
}

/* Decorative floating elements */
.ho-hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ho-hero-deco-circle1 {
    width: 400px;
    height: 400px;
    border: 1px solid color-mix(in srgb, var(--hc-glow, #E53E3E), transparent 88%);
    top: -80px;
    right: 5%;
    animation: heroFloat 8s ease-in-out infinite;
}

.ho-hero-deco-circle2 {
    width: 250px;
    height: 250px;
    border: 1px solid color-mix(in srgb, var(--hc-glow, #E53E3E), transparent 90%);
    bottom: 10%;
    right: 15%;
    animation: heroFloat 6s ease-in-out infinite reverse;
}

.ho-hero-deco-dots {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 45%;
    background-image: radial-gradient(color-mix(in srgb, var(--hc-title, #FFFFFF), transparent 92%) 1px, transparent 1px);
    background-size: 16px 16px;
    border-radius: 0;
}

.ho-hero-deco-line1 {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--hc-glow, #E53E3E), transparent 80%), transparent);
    top: 35%;
    left: 5%;
    border-radius: 0;
    animation: heroLine 4s ease-in-out infinite;
}

.ho-hero-deco-line2 {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--hc-glow, #E53E3E), transparent 85%), transparent);
    bottom: 25%;
    right: 8%;
    border-radius: 0;
    animation: heroLine 5s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes heroLine {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

.ho-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 20px;
}

.ho-hero-text {
    color: var(--ho-text-white);
}

.ho-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: color-mix(in srgb, var(--hc-badge, #E53E3E), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--hc-badge, #E53E3E), transparent 75%);
    border-radius: var(--ho-radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--hc-badge, var(--ho-secondary-light));
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ho-hero-badge svg {
    opacity: 0.8;
}

.ho-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--hc-title, #FFFFFF) 0%, color-mix(in srgb, var(--hc-title, #FFFFFF), transparent 15%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ho-hero-subtitle {
    font-size: 18px;
    line-height: 1.75;
    color: var(--hc-subtitle, rgba(255,255,255,0.6));
    margin-bottom: 36px;
    max-width: 480px;
}

.ho-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.ho-hero-btn-primary {
    background: var(--hc-btn1, var(--ho-secondary));
    color: #fff;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--ho-radius-md);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--hc-btn1, #E53E3E), transparent 70%);
}

.ho-hero-btn-primary:hover {
    background: color-mix(in srgb, var(--hc-btn1, #E53E3E), #fff 15%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--hc-btn1, #E53E3E), transparent 60%);
}

.ho-hero-btn-dark {
    background: color-mix(in srgb, var(--hc-btn2, #FFFFFF), transparent 92%);
    color: color-mix(in srgb, var(--hc-btn2, #FFFFFF), transparent 10%);
    padding: 16px 32px;
    font-size: 16px;
    border: 1px solid color-mix(in srgb, var(--hc-btn2, #FFFFFF), transparent 85%);
    border-radius: var(--ho-radius-md);
    backdrop-filter: blur(4px);
}

.ho-hero-btn-dark:hover {
    background: color-mix(in srgb, var(--hc-btn2, #FFFFFF), transparent 85%);
    color: var(--hc-btn2, #fff);
    border-color: color-mix(in srgb, var(--hc-btn2, #FFFFFF), transparent 70%);
}

.ho-hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ho-hero-mini-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--hc-stats, var(--ho-accent));
    line-height: 1.2;
}

.ho-hero-mini-stat span {
    font-size: 13px;
    color: color-mix(in srgb, var(--hc-stats-lbl, #FFFFFF), transparent 55%);
    font-weight: 500;
}

.ho-hero-mini-stat-divider {
    width: 1px;
    height: 36px;
    background: color-mix(in srgb, var(--hc-stats-lbl, #FFFFFF), transparent 88%);
}

.ho-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ho-hero-showcase {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 440px;
}

.ho-hero-card-main {
    position: relative;
    width: 320px;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    animation: heroFloat 7s ease-in-out infinite;
}

.ho-hero-card-img svg {
    width: 100%;
    height: auto;
    display: block;
}

.ho-hero-card-badge {
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: color-mix(in srgb, var(--hc-card-txt, #FFFFFF), transparent 30%);
    border-top: 1px solid color-mix(in srgb, var(--hc-card-bdr, #FFFFFF), transparent 94%);
    background: color-mix(in srgb, var(--hc-card-bg, #FFFFFF), transparent 98%);
}

.ho-hero-card-float1,
.ho-hero-card-float2,
.ho-hero-card-float3 {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: color-mix(in srgb, var(--hc-card-bg, #FFFFFF), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--hc-card-bdr, #FFFFFF), transparent 88%);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.ho-hero-float-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ho-hero-float-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.ho-hero-float-icon i {
    font-size: 22px;
    color: var(--hc-float-icon, var(--ho-accent));
}

.ho-hero-float-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--hc-float-ttl, #fff);
    line-height: 1.2;
}

.ho-hero-float-text span {
    font-size: 12px;
    color: color-mix(in srgb, var(--hc-float-sub, #FFFFFF), transparent 50%);
}

.ho-hero-card-float1 {
    top: 10px;
    left: 0;
    animation: heroFloat 5s ease-in-out infinite;
}

.ho-hero-card-float2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: heroFloat 6s ease-in-out infinite reverse;
}

.ho-hero-card-float3 {
    bottom: 20px;
    left: 20px;
    animation: heroFloat 7s ease-in-out infinite;
}

/* ----- Stats ----- */
.ho-stats {
    background: var(--ho-bg-white);
    padding: 18px 0;
    border-bottom: 1px solid var(--ho-border-light);
}

.ho-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.ho-stat-item {
    padding: 20px;
}

.ho-stat-number {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: var(--ho-secondary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.ho-stat-label {
    font-size: 15px;
    color: var(--ho-text-light);
    font-weight: 500;
}

/* ----- Products Section (Home) ----- */
.ho-products-sec {
    padding: 18px 0;
    background: #f5f6f9;
}

.ho-products-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    background: #fff;
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid #e5e7eb;
}

.ho-products-sec-head h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ho-text);
    margin-bottom: 0;
    white-space: nowrap;
}

.ho-products-sec-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ho-pcat-tab {
    display: inline-block;
    padding: 6px 16px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    position: relative;
    transition: color .3s;
}

.ho-pcat-tab::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ho-secondary);
    opacity: 0;
    transition: opacity .3s;
}

.ho-pcat-tab.is-active,
.ho-pcat-tab:hover {
    color: var(--ho-secondary);
}

.ho-pcat-tab.is-active::before,
.ho-pcat-tab:hover::before {
    opacity: 1;
}

.ho-products-sec-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

/* ----- View All link ----- */
.ho-sec-nav-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ho-sec-nav-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 10px;
    padding: 0;
}

.ho-sec-nav-btn:hover {
    background: var(--ho-secondary, #E53E3E);
    color: #fff;
    border-color: var(--ho-secondary, #E53E3E);
}

.ho-sec-viewall {
    font-size: 14px;
    font-weight: 600;
    color: var(--ho-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: opacity .2s;
}

.ho-sec-viewall:hover {
    opacity: .7;
}

.ho-sec-viewall i {
    font-size: 12px;
}

/* ----- Deals Section — centered title ----- */
/* ----- Deals Countdown ----- */
.ho-deals-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--ho-secondary, #E53E3E);
    font-weight: 600;
}

.ho-deals-countdown > i {
    font-size: 16px;
    margin-right: 2px;
}

.ho-cd-label {
    margin-right: 6px;
    color: #555;
    font-weight: 500;
}

.ho-cd-block {
    background: var(--ho-secondary, #E53E3E);
    color: #fff;
    border-radius: 4px;
    padding: 3px 6px;
    min-width: 32px;
    text-align: center;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.ho-cd-num {
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.ho-cd-unit {
    font-size: 11px;
    font-weight: 600;
    opacity: .8;
}

.ho-cd-sep {
    font-weight: 700;
    color: var(--ho-secondary, #E53E3E);
    font-size: 16px;
}

/* ----- Deals Carousel Cards ----- */
.ho-deals-carousel {
    overflow: hidden;
    position: relative;
}

.ho-deals-track {
    display: flex;
    gap: 0;
    transition: transform .5s ease;
}

.ho-deal-card {
    flex: 0 0 calc(100% / var(--deals-cols, 3));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 0;
    padding: 28px 24px;
    text-decoration: none;
    transition: box-shadow .25s ease;
    min-height: 218px;
    overflow: hidden;
    border-right: 1px solid #e5e7eb;
    box-sizing: border-box;
}

.ho-deal-card:last-child {
    border-right: none;
}

.ho-deal-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border: 2px solid var(--ho-secondary, #E53E3E);
    padding: 26px 22px;
}

.ho-deal-card:hover .ho-deal-img {
    transform: scale(1.08);
}

.ho-deal-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.ho-deal-tag {
    font-size: 20px;
    font-weight: 900;
    color: var(--ho-accent, #E53E3E);
    line-height: 1.2;
}

.ho-deal-name {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.3;
}

.ho-deal-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .3s ease;
}

.ho-deal-img-ph {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.04);
    border-radius: 12px;
    color: #ccc;
    font-size: 32px;
}

/* 2-column deals: bigger image, tighter padding */
.ho-deals-carousel[data-cols="2"] .ho-deal-card {
    padding: 30px 32px;
    min-height: auto;
}
.ho-deals-carousel[data-cols="2"] .ho-deal-img {
    width: 280px;
    height: 280px;
}
.ho-deals-carousel[data-cols="2"] .ho-deal-img-ph {
    width: 280px;
    height: 280px;
}
.ho-deals-carousel[data-cols="2"] .ho-deal-card:hover {
    padding: 28px 30px;
}

/* ================================================================
   Hero Style 2 — Bright Commerce
   ================================================================ */
.ho-hero2 {
    background: #f5f6fa;
    padding: 18px 0;
    padding-top: 96px;
}

.ho-hero2-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    min-height: 440px;
}

.ho-hero2-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(299deg, #ffffff 0%, #db040463 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: grab;
}

.ho-hero2-slider.is-dragging {
    cursor: grabbing;
}

.ho-hero2-slides {
    display: flex;
    width: 100%;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    min-height: 440px;
}

.ho-hero2-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}

.ho-hero2-slide-default {
    background: linear-gradient(135deg, #2B2428 0%, #3A3235 60%, #524548 100%);
}

.ho-hero2-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    z-index: 1;
}

.ho-hero2-slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 500px;
}

/* --- Style 2 content fly-in --- */
.ho-hero2-slide-tag,
.ho-hero2-slide-title,
.ho-hero2-slide-content .ho-btn {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.ho-hero2-slide-tag {
    transform: translateY(-120px);
}

.ho-hero2-slide-title {
    transform: translateY(-150px);
}

.ho-hero2-slide-content .ho-btn {
    transform: translateX(-200px);
}

.ho-hero2-slide.is-active .ho-hero2-slide-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .15s;
}

.ho-hero2-slide.is-active .ho-hero2-slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}

.ho-hero2-slide.is-active .ho-hero2-slide-content .ho-btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .5s;
}

.ho-hero2-slide-tag {
    display: inline-block;
    background: var(--ho-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.ho-hero2-slide-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.ho-hero2-slide-content .ho-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ho-hero2-dots {
    position: absolute;
    bottom: 16px;
    right: 40px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.ho-hero2-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: background .3s, transform .3s;
    padding: 0;
}

.ho-hero2-dot.is-active {
    background: var(--ho-accent);
    transform: scale(1.3);
}

.ho-hero2-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s, background .2s;
}

.ho-hero2-slider:hover .ho-hero2-arrow {
    opacity: 1;
}

.ho-hero2-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.ho-hero2-prev { left: 12px; }
.ho-hero2-next { right: 12px; }

.ho-hero2-promos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ho-hero2-promo {
    position: relative;
    flex: 1;
/*     border-radius: 12px;   */
    overflow: hidden;
    background: linear-gradient(299deg, #ffffff 0%, #db040463 100%);
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow .3s;
    min-height: 0;
}

.ho-hero2-promo:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.ho-hero2-promo .ho-hero2-promo-bg {
    transition: transform .4s ease;
}

.ho-hero2-promo:hover .ho-hero2-promo-bg {
    transform: scale(1.08);
}

.ho-hero2-promo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ho-hero2-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 70%);
}

.ho-hero2-promo-content {
    position: relative;
    z-index: 2;
    padding: 18px;
}

.ho-hero2-promo-tag {
    display: inline-block;
    background: var(--ho-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.ho-hero2-promo-title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.ho-hero2-promos .ho-hero2-promo {
    min-height: 0;
}

/* ================================================================
   Service Bar (below Style 2 hero)
   ================================================================ */
.ho-service-bar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.ho-service-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ho-service-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid #f0f0f0;
    transition: background .2s;
}

.ho-service-bar-item:last-child {
    border-right: none;
}

.ho-service-bar-item:hover {
    background: #fafbfc;
}

.ho-service-bar-icon {
    flex-shrink: 0;
    color: #8a9bb5;
}

.ho-service-bar-text h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ho-text);
    margin: 0 0 3px;
    line-height: 1.3;
}

.ho-service-bar-text p {
    font-size: 13px;
    color: #8c8f94;
    margin: 0;
    line-height: 1.4;
}

/* ================================================================
   Hero Style 3 — Digital Commerce
   ================================================================ */
.ho-hero3 {
    background: #f5f6fa;
    padding: 96px 0 0;
}

.ho-hero3-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Top: Nav + Slider --- */
.ho-hero3-top {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 8px;
}

/* --- Navigation Sidebar --- */
.ho-hero3-nav {
    background: #fff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ho-hero3-nav-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--ho-accent, #E53E3E);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.ho-hero3-nav-head i {
    font-size: 16px;
}

.ho-hero3-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

.ho-hero3-nav-list li {
    border-bottom: 1px solid #f3f4f6;
}

.ho-hero3-nav-list li:last-child {
    border-bottom: none;
}

.ho-hero3-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    text-decoration: none;
    color: #444;
    font-size: 13.5px;
    font-weight: 500;
    transition: all .2s;
}

.ho-hero3-nav-list a:hover {
    background: #fef2f2;
    color: var(--ho-accent, #E53E3E);
}

.ho-hero3-nav-list a i {
    font-size: 16px;
    color: var(--ho-accent, #E53E3E);
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* --- Slider --- */
.ho-hero3-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: grab;
}

.ho-hero3-slider.is-dragging {
    cursor: grabbing;
}

.ho-hero3-slides {
    display: flex;
    width: 100%;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.ho-hero3-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-bottom: 38%;
    flex-shrink: 0;
}

.ho-hero3-slide-default {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}

.ho-hero3-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 70%);
}

.ho-hero3-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    max-width: 520px;
}

/* --- Content fly-in animations --- */
.ho-hero3-slide-tag,
.ho-hero3-slide-title,
.ho-hero3-slide-desc,
.ho-hero3-slide-content .ho-btn {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.ho-hero3-slide-tag {
    transform: translateY(-120px);
}

.ho-hero3-slide-title {
    transform: translateY(-150px);
}

.ho-hero3-slide-desc {
    transform: translateY(120px);
}

.ho-hero3-slide-content .ho-btn {
    transform: translateX(-200px);
}

.ho-hero3-slide.is-active .ho-hero3-slide-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .15s;
}

.ho-hero3-slide.is-active .ho-hero3-slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}

.ho-hero3-slide.is-active .ho-hero3-slide-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .45s;
}

.ho-hero3-slide.is-active .ho-hero3-slide-content .ho-btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .6s;
}

/* --- Tag / Title / Desc base styles --- */
.ho-hero3-slide-tag {
    display: inline-block;
    background: var(--ho-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 0;
    margin-bottom: 16px;
    width: fit-content;
}

.ho-hero3-slide-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.ho-hero3-slide-desc {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin: 0 0 20px;
    line-height: 1.5;
}

.ho-hero3-slide-content .ho-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.ho-hero3-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.ho-hero3-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

.ho-hero3-dot.is-active {
    background: var(--ho-accent);
    transform: scale(1.3);
}

/* --- Bottom: Features + Promo Cards --- */
.ho-hero3-bottom {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 8px;
    height: 240px;
}

.ho-hero3-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}

.ho-hero3-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    background: #fff;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s;
}

.ho-hero3-feat-item:nth-child(2n) {
    border-right: none;
}

.ho-hero3-feat-item:nth-child(n+3) {
    border-bottom: none;
    background: #fafbfc;
}

.ho-hero3-feat-item:hover {
    background: #f3f4f6;
}

.ho-hero3-feat-item i {
    font-size: 26px;
    color: var(--ho-accent, #E53E3E);
}

.ho-hero3-feat-item span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* --- Promo Cards --- */
.ho-hero3-promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    height: 100%;
}

.ho-hero3-promo-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    transition: box-shadow .3s;
    height: 100%;
    position: relative;
}

.ho-hero3-promo-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.ho-hero3-promo-thumb {
    width: 45%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    order: 2;
}

.ho-hero3-promo-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .4s;
}

.ho-hero3-promo-card:hover .ho-hero3-promo-thumb img {
    transform: scale(1.06);
}

.ho-hero3-promo-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 36px;
}

.ho-hero3-promo-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    order: 1;
}

.ho-hero3-promo-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ho-hero3-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    transition: color .2s;
}

.ho-hero3-promo-card:hover .ho-hero3-promo-btn {
    color: var(--ho-accent);
}

/* ===== Ranking Lists (Top Rated) ===== */
.ho-ranking-sec .ho-products-sec-head {
    border-radius: 0;
}

.ho-ranking-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border-top: 2px solid #f97316;
}

.ho-ranking-col {
    border-right: 1px solid #e8e8e8;
}

.ho-ranking-col:last-child {
    border-right: none;
}

.ho-ranking-head {
    display: flex;
    align-items: center;
    padding: 16px 20px 14px;
    border-bottom: 1px solid #e8e8e8;
    gap: 8px;
}

.ho-ranking-head h3 {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    margin: 0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ho-ranking-head a {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #999;
    font-size: 12px;
    text-decoration: none;
    transition: all .2s;
}

.ho-ranking-head a:hover {
    border-color: #f97316;
    color: #f97316;
}

/* Carousel */
.ho-ranking-carousel { overflow: hidden; }
.ho-ranking-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.ho-ranking-page { flex: 0 0 100%; min-width: 100%; }

/* Product row */
.ho-ranking-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    transition: background .15s;
}

.ho-ranking-item:nth-child(odd) {
    background: #fff;
}

.ho-ranking-item:nth-child(even) {
    background: #f9fafb;
}

.ho-ranking-item:hover {
    background: #fff5f0;
}

/* Thumbnail with ranking badge */
.ho-ranking-thumb {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    border: none;
    position: relative;
}

.ho-ranking-num {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    line-height: 1;
    z-index: 1;
    border-radius: 8px 0 6px 0;
}

.ho-ranking-num.top1 { background: #f97316; }
.ho-ranking-num.top2 { background: #fb923c; }
.ho-ranking-num.top3 { background: #fdba74; color: #7c2d12; }

.ho-ranking-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    transition: transform .3s ease;
}

.ho-ranking-item:hover .ho-ranking-thumb img {
    transform: scale(1.15);
}

.ho-ranking-thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 24px;
}

/* Info */
.ho-ranking-info {
    flex: 1;
    min-width: 0;
}

.ho-ranking-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ho-ranking-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
}

.ho-ranking-stars i {
    font-size: 13px;
    color: #ddd;
}

.ho-ranking-stars i.fa-solid,
.ho-ranking-stars .fa-star-half-stroke {
    color: #f97316;
}

.ho-ranking-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.ho-ranking-price-old {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}

.ho-ranking-price-now {
    font-size: 16px;
    font-weight: 800;
    color: #f97316;
}

/* Nav */
.ho-ranking-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0 14px;
    border-top: 1px solid #eee;
}

.ho-ranking-nav button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #999;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.ho-ranking-nav button:hover:not(:disabled) {
    border-color: #f97316;
    background: #f97316;
    color: #fff;
}

.ho-ranking-nav button:disabled {
    opacity: .25;
    cursor: not-allowed;
}

.ho-ranking-indicator {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.ho-ranking-cur {
    color: #f97316;
    font-weight: 800;
}

/* ===== New Arrivals Showcase ===== */
.ho-na-sec .ho-products-sec-head,
.ho-na-showcase {
    border-radius: 0;
}

.ho-na-showcase {
    display: grid;
    grid-template-columns: 3fr 7fr;
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.ho-na-banner {
    position: relative;
    overflow: hidden;
    border-right: 1px solid #e5e7eb;
    background: transparent;
}

.ho-na-banner-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 75%;
    z-index: 0;
}

.ho-na-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.ho-na-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 20px 12%;
    box-sizing: border-box;
}

.ho-na-banner-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
    margin: 0 0 10px;
    font-style: italic;
}

.ho-na-banner-sub {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 12px 0 0;
    line-height: 1.4;
}

.ho-na-banner-spacer {
    flex: 1;
    max-height: 60%;
}

.ho-na-banner-btn {
    display: inline-block;
    background: #E53E3E;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
    transition: background .2s;
    align-self: flex-start;
}

.ho-na-banner-btn:hover {
    background: #b91c1c;
    color: #fff;
    box-shadow: 0 4px 12px rgba(229,62,62,.4);
}

.ho-na-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-width: 0;
}

.ho-na-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    text-decoration: none;
    transition: all .2s;
    gap: 12px;
    min-width: 0;
    overflow: hidden;
    background: #fff;
}

.ho-na-card:hover {
    background: #fafafa;
    box-shadow: inset 0 0 0 1px rgba(229,62,62,.15);
}

.ho-na-card:nth-child(4n) {
    border-right: none;
}

.ho-na-card:nth-last-child(-n+4) {
    border-bottom: none;
}

.ho-na-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ho-na-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ho-na-card-link {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.ho-na-card-link i {
    font-size: 10px;
    color: #E53E3E;
    transition: transform .15s;
}

.ho-na-card:hover .ho-na-card-link {
    color: #E53E3E;
}

.ho-na-card:hover .ho-na-card-link i {
    transform: translateX(4px);
}

.ho-na-card-img {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.ho-na-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .25s;
}

.ho-na-card:hover .ho-na-card-img img {
    transform: scale(1.1);
}

.ho-na-card-ph {
    color: #d1d5db;
    font-size: 30px;
}
