/* Reserved for KingJet page-specific styles loaded from the public asset path. */

/* =============================================================================
/* =============================================================================
   KINGJET WEBSITE - ORGANIZED STYLESHEET
   Organized by: Section and Page
   ============================================================================= */

/* =============================================================================
   1. CSS VARIABLES & ROOT - Global Theme Colors
   ============================================================================= */
:root {
    /* Primary Colors */
    --kingjet-primary: #26ab4b;
    --kingjet-primary-dark: #1e8e3e;
    --kingjet-secondary: #020202;
    --kingjet-light: #f8f9fa;
    --kingjet-gray: #6c757d;

    /* Additional Colors */
    --kingjet-warning: #ff8a00;
    --kingjet-info: #3498db;
    --kingjet-danger: #e74c3c;
    --kingjet-purple: #9b59b6;
}

/* =============================================================================
   2. BASE STYLES - Global Reset & Typography
   ============================================================================= */
/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--kingjet-light);
    color: var(--kingjet-secondary);
    padding: 0;
}

/* Keep full-width background, add side space only for content */
.container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

section {
    margin-bottom: 2rem;
}

/* =============================================================================
   DELIVERY PROMO (Homepage - after hero banner)
   ============================================================================= */
.delivery-promo {
    padding: 1.75rem 0 0;
    margin-bottom: 0;
}

/* =============================================================================
   ENQUIRY PAGE (enquiry.html)
   ============================================================================= */
.enquiry-page .cu-hero {
    margin-bottom: 0;
}

.enq-section {
    margin-top: -2.25rem;
    margin-bottom: 2.5rem;
}

.enq-big-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
    background: #ffffff;
}

.enq-left {
    background: radial-gradient(1200px 420px at 20% -10%, rgba(38,171,75,0.22), transparent 60%),
                linear-gradient(135deg, #0b1220, #111827);
    color: #e5e7eb;
    padding: 2.25rem 2rem;
    position: relative;
}

.enq-left h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem 0;
    font-size: 1.55rem;
    color: #fff;
}

.enq-left h2 span {
    color: var(--kingjet-primary);
}

.enq-sub {
    margin: 0 0 1.5rem 0;
    color: rgba(229, 231, 235, 0.85);
    line-height: 1.55;
    font-size: 0.98rem;
}

.enq-info-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enq-info-row:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.enq-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 171, 75, 0.14);
    color: #fff;
    border: 1px solid rgba(38, 171, 75, 0.22);
}

.enq-info-text .lbl,
.enq-social .lbl {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.7);
    margin-bottom: 0.25rem;
}

.enq-info-text p {
    margin: 0;
    color: rgba(229, 231, 235, 0.9);
    line-height: 1.5;
}

.enq-info-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.enq-info-text a:hover {
    text-decoration: underline;
}

.enq-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.enq-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.enq-action-btn--call {
    background: linear-gradient(135deg, var(--kingjet-primary), var(--kingjet-primary-dark));
    color: #fff;
    box-shadow: 0 10px 24px rgba(38, 171, 75, 0.22);
    border: none;
}

.enq-action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.enq-social {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enq-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.enq-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

.enq-social-icons a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.enq-right {
    padding: 2.25rem 2.25rem;
    background: radial-gradient(900px 320px at 0% 0%, rgba(38,171,75,0.10), transparent 60%),
                #ffffff;
}

.enq-right h3 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.enq-form-sub {
    margin: 0.55rem 0 1.35rem 0;
    color: #475569;
}

.enq-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1rem;
}

.enq-field--full {
    grid-column: 1 / -1;
}

.enq-field label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.enq-field input,
.enq-field select,
.enq-field textarea {
    width: 100%;
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    border: 1px solid #e5e7eb;
    outline: none;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enq-field textarea {
    resize: vertical;
    min-height: 120px;
}

.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
    border-color: rgba(38, 171, 75, 0.6);
    box-shadow: 0 0 0 4px rgba(38, 171, 75, 0.12);
}

.enq-submit-btn {
    width: 100%;
    margin-top: 1.2rem;
    border: none;
    border-radius: 12px;
    padding: 0.95rem 1.1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--kingjet-primary), var(--kingjet-primary-dark));
    color: #fff;
    box-shadow: 0 14px 30px rgba(38, 171, 75, 0.22);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.enq-submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.enq-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.enq-privacy-note {
    margin: 0.85rem 0 0 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.45;
}

/* Validation states used by enquiry.js inline script */
.enq-field input.field-error,
.enq-field select.field-error,
.enq-field textarea.field-error {
    border-color: rgba(231, 76, 60, 0.7);
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.10);
}

.enq-field input.field-ok,
.enq-field select.field-ok,
.enq-field textarea.field-ok {
    border-color: rgba(38, 171, 75, 0.7);
    box-shadow: 0 0 0 4px rgba(38, 171, 75, 0.10);
}

@media (max-width: 992px) {
    .enq-big-card {
        grid-template-columns: 1fr;
    }
    .enq-section {
        margin-top: -1.25rem;
    }
}

@media (max-width: 576px) {
    .enq-right {
        padding: 1.6rem 1.25rem;
    }
    .enq-left {
        padding: 1.75rem 1.25rem;
    }
    .enq-form-grid {
        grid-template-columns: 1fr;
    }
    .enq-actions {
        grid-template-columns: 1fr;
    }
}

.delivery-promo-card {
    background: linear-gradient(135deg, #2c3543, #1f2a37);
    border-radius: 14px;
    padding: 2.25rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    position: relative;
}

.delivery-promo-content {
    max-width: 560px;
    color: #ffffff;
}

.delivery-promo-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
}

.delivery-promo-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 2.4vw, 2.6rem);
    line-height: 1.1;
    margin: 0 0 0.75rem 0;
    white-space: nowrap;
}

.delivery-promo-sub {
    margin: 0 0 1.15rem 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
}

.delivery-promo-content .delivery-promo-sub,
.delivery-promo-content .delivery-promo-btn {
    align-self: flex-start;
}

.delivery-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    background: var(--kingjet-warning);
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.delivery-promo-btn:hover {
    color: #111;
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.delivery-promo-art {
    flex: 0 0 auto;
    width: min(520px, 42%);
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.delivery-promo-illustration {
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .delivery-promo-card {
        padding: 1.75rem 1.5rem;
    }
    .delivery-promo-art {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .delivery-promo {
        padding-top: 1.25rem;
    }
    .delivery-promo-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .delivery-promo-title {
        white-space: normal;
    }
    .delivery-promo-art {
        width: 100%;
        justify-content: flex-start;
    }
}



.text-kingjet-primary {
    color: var(--kingjet-primary) !important;
}

.bg-kingjet-primary {
    background-color: var(--kingjet-light) !important;
}

/* =============================================================================
   3. ANIMATIONS & KEYFRAMES
   ============================================================================= */
/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Slide In Up Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.product-card-featured,
.product-card-small {
    opacity: 0;
    animation: none;
}

.product-card-featured.animate-in {
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.product-card-featured:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.product-card-featured:nth-child(3).animate-in {
    animation-delay: 0.4s;
}

.product-card-featured:nth-child(4).animate-in {
    animation-delay: 0.6s;
}

/* Generic Scroll Reveal Effect */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.in-view {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Promo Text Float */
@keyframes promoTextFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Loading Spinner */


/* =============================================================================
   7. CATEGORIES SECTION - PREMIUM DESIGN
   ============================================================================= */
.categories-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Premium background pattern */
.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(38, 171, 75, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(38, 171, 75, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section header - Premium Style */
.cat-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.cat-section-header h2 {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    text-transform: none;
}

/* Premium accent line with glow */
.cat-section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--kingjet-primary), var(--kingjet-primary-dark));
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(38, 171, 75, 0.4);
}

.cat-section-header p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CSS Grid — 6 equal columns on desktop */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Category Card - Modern Redesign */
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    padding: 30px 20px 35px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(38, 171, 75, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

/* Modern border gradient effect */
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(135deg, rgba(38, 171, 75, 0.8), rgba(30, 142, 62, 0.4), rgba(38, 171, 75, 0));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.85) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.cat-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(38, 171, 75, 0.3);
}

.cat-card:hover::before {
    opacity: 1;
}

.cat-card:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.9) 100%);
}

/* Category name - Modern typography */
.cat-name {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 2;
    margin: 0;
    padding: 0;
    align-self: center;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(4px);
}

.cat-card:hover .cat-name {
    color: #ffffff;
    text-shadow: 0 6px 20px rgba(38, 171, 75, 0.8);
    transform: translateY(-2px);
}

/* Enhanced hover effects */
.cat-card:hover .cat-name {
    color: #ffffff;
    text-shadow: 0 6px 20px rgba(38, 171, 75, 0.8);
    transform: translateY(-2px);
}

/* Subtle inner glow on hover */
.cat-card:hover::before {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(38, 171, 75, 0.3));
}

/* Arrow indicator — hidden permanently */
.cat-arrow {
    display: none;
}

/* Arrow indicator — hidden permanently */
.cat-arrow {
    display: none;
}

/* ── Premium Hover State ── */
.cat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(38, 171, 75, 0.1);
    border-color: rgba(38, 171, 75, 0.2);
}

.cat-card:hover .cat-circle {
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(38, 171, 75, 0.3);
    transform: scale(1.1) translateY(-5px);
}

.cat-card:hover .cat-circle::after {
    opacity: 1;
}

.cat-card:hover .cat-circle img {
    transform: scale(1.15);
}

.cat-card:hover .cat-name {
    color: var(--kingjet-primary);
    font-weight: 700;
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateY(0);
    background: var(--kingjet-primary);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .cat-circle {
        width: 80px;
        height: 80px;
    }
    .categories-section {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .categories-section {
        padding: 50px 0;
    }
    .cat-section-header h2 {
        font-size: 1.8rem;
    }
    .cat-section-header p {
        font-size: 1rem;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cat-circle {
        width: 70px;
        height: 70px;
    }
    .cat-card {
        padding: 20px 12px 18px;
        min-height: 180px;
    }
    .cat-name {
        font-size: 0.65rem;
        margin-top: 12px;
    }
}

/* =============================================================================
   4. NAVIGATION & HEADER STYLES
   ============================================================================= */
.navbar-light {
    background-color: white !important;
    border-bottom: 1px solid var(--kingjet-primary);
    box-shadow: 0 3px 12px rgb(38 171 75 / 0.15);
}
.navbar-nav .nav-link {
    color: var(--kingjet-secondary);
    font-weight: 600;
    transition: color 0.25s ease, background-color 0.25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--kingjet-primary);
    background-color: rgba(38, 171, 75, 0.1);
    border-radius: 0.5rem;
    outline: none;
}
.dropdown-menu {
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgb(38 171 75 / 0.15);
    border: none;
}
.dropdown-item {
    color: var(--kingjet-secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--kingjet-primary);
    color: white;
    outline: none;
}
.btn.btn-outline-success {
    border-color: var(--kingjet-primary);
    color: var(--kingjet-primary);
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn.btn-outline-success:hover,
.btn.btn-outline-success:focus {
    background-color: var(--kingjet-primary);
    color: white;
    box-shadow: 0 8px 20px rgb(38 171 75 / 0.4);
    outline: none;
    transform: translateY(-3px);
}
.navigation {
    background-color: #ffffff;
    box-shadow: none;
    border-bottom: none;
    position: relative;
    z-index: 1000;
}
.navigation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}
.header-left { flex-shrink: 0; }
.logo a { display: inline-block; }
.logo img {
    height: 55px;
    width: auto;
    vertical-align: middle;
    transition: opacity 0.3s;
}
.logo a:hover img { opacity: 0.85; }
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-grow: 1;
    justify-content: flex-end;
}
.navbar { display: flex; align-items: center; }
#navbar { flex-grow: 1; }
.navbar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar-nav > li { position: relative; }
.navbar-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    padding: 0.6rem 1rem;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.navbar-nav a:hover,
.navbar-nav a:focus {
    background-color: #e8f5e9;
    color: #2e7d32;
    text-decoration: none;
}
.navbar-nav > li.active > a { color: #2e7d32; }
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid #e0e0e0;
}
.call-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #2e7d32;
    transition: all 0.2s ease;
}
.call-link i { font-size: 1.1rem; color: #2e7d32; }
.call-number { font-weight: 700; color: #2e7d32; font-size: 0.95rem; }
.call-link:hover,
.call-link:focus { color: #1b5e20; text-decoration: underline; }
.enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.enquiry-btn i { font-size: 1rem; color: #ffffff; }
.enquiry-btn:hover,
.enquiry-btn:focus {
    background-color: #2e7d32;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    transform: translateY(-2px);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hide slicknav */
#slicknav-mobile {
    display: none;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .navbar-cta {
        padding-left: 1rem;
        gap: 0.75rem;
    }

    .call-number {
        display: none;
    }

    .navbar-nav a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navigation-content {
        position: relative;
    }

    .header-left {
        z-index: 1001;
    }

    .logo img {
        height: 45px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 80px 1.5rem 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .header-right.active {
        right: 0;
    }

    .navbar {
        width: 100%;
    }

    #navbar {
        width: 100%;
        margin-left: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .navbar-nav > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav > li:last-child {
        border-bottom: none;
    }

    .navbar-nav a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        font-size: 1rem;
        border-radius: 0;
    }

    /* CTA on mobile */
    .navbar-cta {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 1px solid #e0e0e0;
        gap: 0.75rem;
    }

    .call-link,
    .enquiry-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }

    .call-number {
        display: inline;
    }
}

/* Home page: force horizontal nav layout even on mobile */
.home-page .mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .home-page .navigation-content {
        position: static;
    }

    .home-page .header-right {
        position: static;
        top: auto;
        right: auto;
        width: auto;
        height: auto;
        flex-direction: row;
        align-items: center;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        gap: 1rem;
    }

    .home-page .navbar {
        width: auto;
    }

    .home-page #navbar {
        width: auto;
        margin-left: 0;
    }

    .home-page .navbar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        width: auto;
    }

    .home-page .navbar-nav > li {
        width: auto;
        border-bottom: none;
    }

    .home-page .navbar-cta {
        flex-direction: row;
        width: auto;
        margin-left: 1rem;
        padding-left: 1.5rem;
        border-left: 1px solid #e0e0e0;
        padding-top: 0;
        border-top: none;
        gap: 0.75rem;
    }

    .home-page .call-link,
    .home-page .enquiry-btn {
        width: auto;
        justify-content: center;
        padding: 0.5rem 0.75rem;
    }
}

/* Focus styles */
a:focus,
button:focus {
    outline: 2px solid #2e7d32;
    outline-offset: 2px;
}


/* =============================================================================
   6. BUTTONS STYLES
   ============================================================================= */

/* Hero Button - Primary Green with White Text */
.hero-btn-3d {
    background: linear-gradient(135deg, #26ab4b 0%, #1e8e3e 100%);
    border: 2px solid #26ab4b;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.8rem 1.6rem !important;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(38, 171, 75, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn-3d:hover::before {
    left: 100%;
}

.hero-btn-3d:hover,
.hero-btn-3d:focus {
    background: linear-gradient(135deg, #1e8e3e 0%, #166b2d 100%);
    border-color: #1e8e3e;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(38, 171, 75, 0.6);
    transform: translateY(-3px);
}

/* Hero Button - Dark Black with White Text */
.hero-btn-3d-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #000000;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.8rem 1.6rem !important;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-btn-3d-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.hero-btn-3d-dark:hover::before {
    left: 100%;
}

.hero-btn-3d-dark:hover,
.hero-btn-3d-dark:focus {
    background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%);
    border-color: #26ab4b;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(38, 171, 75, 0.4);
    transform: translateY(-3px);
}

/* Hero Button Dark Variant (all black) */
#home .hero-content .hero-btn-dark {
    background: #000;
    border: 1px solid #000;
    color: #fff !important;
}

#home .hero-content .hero-btn-dark:hover,
#home .hero-content .hero-btn-dark:focus {
    background: #111;
    border-color: #111;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn.kingjet-gradient {
    background: linear-gradient(135deg, var(--kingjet-primary), var(--kingjet-primary-dark));
    border: none;
    box-shadow: 0 6px 18px rgb(38 171 75 / 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.kingjet-gradient:hover,
.btn.kingjet-gradient:focus {
    background: linear-gradient(135deg, var(--kingjet-primary-dark), var(--kingjet-primary));
    box-shadow: 0 10px 26px rgb(38 171 75 / 0.5);
    transform: scale(1.05);
    outline: none;
    color: white !important;
}

.btn.btn-outline-light {
    border-color: var(--kingjet-light) !important;
    color: var(--kingjet-light) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.btn-outline-light:hover,
.btn.btn-outline-light:focus {
    background-color: var(--kingjet-primary);
    border-color: var(--kingjet-primary);
    color: white !important;
    outline: none;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgb(38 171 75 / 0.4);
}

/* Button hover lift effect */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgb(38 171 75 / 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* View All Products Button */
.view-all-products-btn {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.55rem 1.15rem !important;
}

.view-all-products-btn:hover,
.view-all-products-btn:focus {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* =============================================================================
   7. CATEGORIES SECTION
   ============================================================================= */
.categories-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
}

.categories-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.categories-section h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
    font-size: 2.5rem;
    position: relative;
    display: block;
    width: 100%;
}

.categories-section h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--kingjet-primary), var(--kingjet-primary-dark));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Swiper Container */
.categoriesSwiper {
    padding: 20px 0 60px;
}

/* Swiper Slide */
.categoriesSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto !important;
}

/* Category Card */
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 18px 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    min-height: 180px;
    justify-content: center;
    max-width: 200px;
    width: 85%;
    margin: 0 auto;
}

.cat-card span {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 1px;
    margin-top: 15px;
    color: #333;
    transition: .3s;
    word-wrap: break-word;
    padding: 0 5px;
}

.cat-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    transition: .35s;
    border: 4px solid #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    background: white;
    flex-shrink: 0;
}

.cat-circle img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: .4s;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cat-card:hover span {
    color: var(--kingjet-primary);
}

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

.cat-card:hover .cat-circle {
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    border-color: var(--kingjet-primary);
}

/* Swiper Navigation */
.categoriesSwiper .swiper-button-next,
.categoriesSwiper .swiper-button-prev {
    background: var(--kingjet-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.categoriesSwiper .swiper-button-next:after,
.categoriesSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.categoriesSwiper .swiper-button-next:hover,
.categoriesSwiper .swiper-button-prev:hover {
    background: var(--kingjet-primary-dark);
}

/* Desktop Grid Layout */
@media(min-width: 992px) {
    .categoriesSwiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 25px !important;
        width: 100% !important;
        padding: 0 !important;
    }
    .categoriesSwiper .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }
    .categoriesSwiper {
        overflow: visible !important;
        padding-bottom: 60px;
    }
    .categoriesSwiper .swiper-button-next,
    .categoriesSwiper .swiper-button-prev {
        display: flex !important;
    }
    .cat-card {
        min-height: 250px;
    }
}

/* Tablet Responsive */
@media(max-width: 991px) {
    .categories-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .cat-circle {
        width: 140px;
        height: 140px;
    }

    .categoriesSwiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .categoriesSwiper .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }

    .categoriesSwiper {
        overflow: visible !important;
        padding: 20px 0 50px !important;
    }

    .categoriesSwiper .swiper-button-next,
    .categoriesSwiper .swiper-button-prev {
        display: none !important;
    }

    .cat-card {
        min-height: 230px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .categories-section {
        padding: 40px 0;
    }

    .categories-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .cat-circle {
        width: 120px;
        height: 120px;
    }

    .cat-card {
        padding: 15px 12px;
        min-height: 210px;
    }

    .cat-card span {
        font-size: 0.75rem;
        margin-top: 10px;
        letter-spacing: 0.5px;
    }
}

/* =============================================================================
   8. PRODUCT CARDS STYLES
   ============================================================================= */
/* Category & Product Cards */
.category-card,
.product-card,
.feature-box {
    border-radius: 1rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.category-card:hover,
.product-card:hover,
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(38 171 75 / 0.25) !important;
}

/* Category icon flip */
.category-icon {
    background: var(--kingjet-primary);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.6s ease;
    width: 80px !important;
    height: 80px !important;
}

.category-card:hover .category-icon {
    background: white;
    color: var(--kingjet-primary);
    transform: rotateY(180deg);
}

/* Product images scaling */
.product-card img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 1rem 1rem 0 0;
    object-fit: cover;
    height: 250px;
}

.product-card:hover img {
    transform: scale(1.08) rotate(1deg);
}

/* ── PRODUCT BADGES ─────────────────────────────────────── */
.product-badge,
.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px 5px 9px;
    border-radius: 30px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    line-height: 1.2;
    background: linear-gradient(135deg, #26ab4b 0%, #1a8a3a 100%);
    box-shadow: 0 4px 14px rgba(38, 171, 75, 0.45);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.25s ease;
    cursor: default;
    user-select: none;
    border: none;
}

/* Animated dot indicator */
.product-badge::before,
.badge-new::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
}

.product-badge:hover,
.badge-new:hover {
    transform: translateY(-3px) scale(1.07);
    box-shadow: 0 8px 20px rgba(38, 171, 75, 0.55);
}

/* ── Color Variants — all tied to page theme (green + dark) ── */

/* GREEN variants  (primary theme #26ab4b)
   NEW · GENUINE · IN STOCK · RECENT · ESSENTIAL · SPARE PART */
.product-badge--new,
.product-badge--amber,
.product-badge--teal,
.product-badge--rose {
    background: linear-gradient(135deg, #26ab4b 0%, #1a8a3a 100%);
    box-shadow: 0 4px 14px rgba(38, 171, 75, 0.45);
}
.product-badge--new:hover,
.product-badge--amber:hover,
.product-badge--teal:hover,
.product-badge--rose:hover {
    box-shadow: 0 8px 20px rgba(38, 171, 75, 0.60);
}

/* DARK variants  (secondary theme #020202)
   BEST SELLER · NEW ARRIVAL · PREMIUM · PLOTTER */
.product-badge--hot,
.product-badge--blue,
.product-badge--premium,
.product-badge--dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.product-badge--hot:hover,
.product-badge--blue:hover,
.product-badge--premium:hover,
.product-badge--dark:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

/* Modern Product Cards - 4 Per Row Layout */
.product-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card-featured {
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 10px 40px rgba(38, 171, 75, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(38, 171, 75, 0.25);
}

.product-card-featured .product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.product-card-featured .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card-featured:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-card-featured .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #000000cc, transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card-featured:hover .product-overlay {
    transform: translateY(0);
}

.product-card-featured .product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.product-card-featured .spec-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(38, 171, 75, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(38, 171, 75, 0.2);
}

.product-card-featured .spec-item .spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--kingjet-gray);
    margin-bottom: 0.25rem;
}

.product-card-featured .spec-item .spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kingjet-primary);
}

.product-card-small {
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 8px 30px rgba(38, 171, 75, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.product-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(38, 171, 75, 0.25);
}

.product-card-small .product-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.product-card-small .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card-small:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--kingjet-primary), var(--kingjet-primary-dark));
    color: white;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(38, 171, 75, 0.3);
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px #26ab4b80;
}

.price-tag-small {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Product Button Styling */
.product-card-featured,
.product-card-small {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card-featured .product-content,
.product-card-small .product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 2.5rem !important;
}

.product-card-featured .product-footer,
.product-card-small .product-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: -2rem -1.5rem -1.5rem -1.5rem;
}

.product-card-small .product-footer {
    margin: -2rem -1rem -1rem -1rem;
}

.product-footer-btn {
    padding: 0.8rem 1.5rem !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0 !important;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-footer-btn:first-child {
    background-color: #020202;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.product-footer-btn:first-child:hover {
    background-color: white;
    color: #020202;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-footer-btn:first-child:active {
    transform: translateY(-1px);
}

.product-footer-btn:last-child {
    background: linear-gradient(135deg, var(--kingjet-primary), var(--kingjet-primary-dark));
    color: #020202;
    box-shadow: 0 6px 15px rgba(38, 171, 75, 0.3);
}

.product-footer-btn:last-child:hover {
    background: white;
    color: var(--kingjet-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.product-footer-btn:last-child:active {
    transform: translateY(-1px);
}

/* Responsive Bento Grid */
@media (max-width: 1200px) {
    .product-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card-featured {
        grid-column: span 1;
    }

    .product-card-featured .product-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .product-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card-featured {
        grid-column: span 1;
    }

    .product-card-featured .product-image-wrapper {
        height: 220px;
    }

    .product-footer-btn {
        padding: 1rem 1.25rem !important;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .product-footer-btn:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .product-bento-grid {
        grid-template-columns: 1fr;
    }

.product-card-featured,
.product-card-small {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .product-card-featured .product-image-wrapper {
        height: 240px;
    }

    .product-footer-btn {
        padding: 0.95rem 1rem !important;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .product-footer-btn:hover {
        transform: translateY(-2px);
    }

    .product-card-featured .product-footer {
        margin: 0 -1rem -1rem -1rem;
    }
}

@media (max-width: 576px) {
    .product-card-featured .product-image-wrapper {
        height: 200px;
    }

    .product-footer-btn {
        padding: 0.9rem 0.75rem !important;
        font-size: 0.85rem;
        transition: all 0.3s ease;
    }

    .product-footer-btn:hover {
        transform: translateY(-2px);
    }

    .product-footer-btn i {
        display: none;
    }
}

/* Home featured/recent cards: same design as products-printers page cards */
:is(#products, #recent-products, #spare-products) .product-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

:is(#products, #recent-products, #spare-products) .product-card-featured {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
}

:is(#products, #recent-products, #spare-products) .product-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

:is(#products, #recent-products, #spare-products) .product-image-wrapper {
    position: relative;
    background: #e9ecef;
}

:is(#products, #recent-products, #spare-products) .product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

:is(#products, #recent-products, #spare-products) .product-overlay {
    display: none !important;
}

:is(#products, #recent-products, #spare-products) .product-content {
    padding: 1rem !important;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.02) 100%);
    padding-bottom: 52px !important;
}

:is(#products, #recent-products, #spare-products) .product-content a.title {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: .25rem;
}

:is(#products, #recent-products, #spare-products) .product-footer {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

:is(#products, #recent-products, #spare-products) .product-footer .product-footer-btn {
    flex: 1;
    padding: 0 !important;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border: 0 !important;
    margin-bottom: 0;
    transition: transform .16s ease, box-shadow .16s ease, background .16s, color .16s;
}

:is(#products, #recent-products, #spare-products) .product-footer .product-footer-btn:first-child {
    border-bottom-left-radius: 12px;
    background: #000;
    color: #fff;
}

:is(#products, #recent-products, #spare-products) .product-footer .product-footer-btn:last-child {
    border-bottom-right-radius: 12px;
    background: #26ab4b;
    color: #fff;
    box-shadow: none;
}

:is(#products, #recent-products, #spare-products) .product-footer .product-footer-btn + .product-footer-btn {
    border-left: 1px solid rgba(255,255,255,.06);
}

:is(#products, #recent-products, #spare-products) .product-footer .product-footer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

:is(#products, #recent-products, #spare-products) .product-footer .product-footer-btn:first-child:hover {
    background: #111;
    color: #fff;
}

:is(#products, #recent-products, #spare-products) .product-footer .product-footer-btn:last-child:hover {
    background: #fff;
    color: #26ab4b;
}

/* Home page: hide search bar from Featured Products section */
.home-page #productGrid-search-wrap {
    display: none !important;
}

/* =============================================================================
   PRODUCT PAGES (Standalone - products-plotters, products-printers, products-spare-parts)
   ============================================================================= */
.products-page .product-bento-grid,
.products-page .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1.5rem;
    align-items: stretch;
}

.products-page .product-item {
    display: flex;
    height: 100%;
    width: 100%;
}

.products-page .product-card-featured {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
}

.products-page .product-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.products-page .product-image-wrapper {
    position: relative;
    background: #e9ecef;
}

.products-page .product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.products-page .product-overlay {
    display: none !important;
}

.products-page .product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.02) 100%);
    padding-bottom: 52px;
}

.products-page .product-content a.title {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: .25rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.products-page .product-footer {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.products-page .product-footer .product-footer-btn {
    flex: 1;
    padding: 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    transition: transform .16s ease, box-shadow .16s ease, background .16s, color .16s;
}

.products-page .product-footer .product-footer-btn:first-child {
    border-bottom-left-radius: 12px;
    background: #000;
    color: #fff;
}

.products-page .product-footer .product-footer-btn:last-child {
    border-bottom-right-radius: 12px;
    background: #26ab4b;
    color: #fff;
    box-shadow: none;
}

.products-page .product-footer .product-footer-btn + .product-footer-btn {
    border-left: 1px solid rgba(255,255,255,.06);
}

.products-page .product-footer .product-footer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.products-page .product-footer .product-footer-btn:first-child:hover {
    background: #111;
    color: #fff;
}

.products-page .product-footer .product-footer-btn:last-child:hover {
    background: #fff;
    color: #26ab4b;
    border-color: #26ab4b;
}

.products-page .category-filter {
    gap: .5rem;
    display: flex;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .products-page .product-bento-grid,
    .products-page .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .products-page .product-bento-grid,
    .products-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .products-page .product-bento-grid,
    .products-page .product-grid {
        grid-template-columns: 1fr;
    }
    .products-page .product-item {
        width: 100%;
    }
}

@media (max-width: 992px) {
    :is(#products, #recent-products, #spare-products) .product-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :is(#products, #recent-products, #spare-products) .product-bento-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   9. FEATURE BOX STYLES
   ============================================================================= */
.feature-box {
    box-shadow: 0 5px 15px rgb(38 171 75 / 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 1rem;
}

.feature-box:hover {
    box-shadow: 0 15px 40px rgb(38 171 75 / 0.25);
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--kingjet-primary);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* =============================================================================
   10. WHY CHOOSE US SECTION
   ============================================================================= */
#features.why-section {
    background: linear-gradient(180deg, #e7f7e7 0%, #a4d4b7 100%);
}

.why-combo-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: 300px 0 300px 0;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 100%;
}

.why-panel {
    background: linear-gradient(160deg, #0d1117 0%, #141a22 100%);
    color: #fff;
    padding: 2.15rem;
    height: 100%;
    text-align: right;
}

.why-kicker {
    display: inline-block;
    background: rgba(38, 171, 75, 0.22);
    color: #b8f4c8;
    border: 1px solid rgba(96, 224, 136, 0.45);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.why-card {
    border: 1px solid rgba(73, 187, 111, 0.3);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0.8rem;
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: right;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}

.why-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}

.why-card h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: #fff;
}

.why-card p {
    font-size: 0.82rem;
    color: #d2d6dc;
    margin: 0;
}

.why-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 460px;
}

.why-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-image-badge {
    position: absolute;
    left: 14px;
    right: auto;
    bottom: 14px;
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .why-combo-card {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-image-wrap {
        min-height: 300px;
    }
}

/* =============================================================================
   11. STATS SECTION
   ============================================================================= */
.stats-box {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stats-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    border-radius: 10px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* =============================================================================
   12. PROMO OFFERS SECTION
   ============================================================================= */
.promo-offers-section {
    position: relative;
    background: linear-gradient(180deg, #dff3e4 0%, #ebf8ef 45%, #ffffff 100%);
    padding: 3.8rem 0;
    border-radius: 22px;
    overflow: hidden;
}

.promo-offers-section::before,
.promo-offers-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.promo-offers-section::before {
    width: 280px;
    height: 280px;
    top: -130px;
    left: -110px;
    background: radial-gradient(circle, rgba(38, 171, 75, 0.15) 0%, rgba(38, 171, 75, 0) 70%);
}

.promo-offers-section::after {
    width: 260px;
    height: 260px;
    bottom: -120px;
    right: -95px;
    background: radial-gradient(circle, rgba(17, 24, 39, 0.08) 0%, rgba(17, 24, 39, 0) 70%);
}

.promo-offers-section .container {
    position: relative;
    z-index: 1;
}

.promo-offers-headline {
    color: var(--kingjet-secondary);
    font-weight: 800;
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-shadow: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.promo-offers-headline:hover {
    color: var(--kingjet-primary-dark);
}

.promo-offers-subheadline {
    color: #4b5563;
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1.02rem;
    line-height: 1.65;
}

.promo-offers-section .row > [class*='col-'] {
    display: flex;
}

.promo-offer-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: 240px;
    height: 240px;
    width: 100%;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(28px);
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
    transition: transform 0.38s ease, box-shadow 0.38s ease, opacity 0.45s ease, border-color 0.3s ease;
    position: relative;
    isolation: zoom;
    overflow: hidden;
}

.promo-offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(38, 171, 75, 0.35), rgba(59, 130, 246, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
}

.promo-offer-card--kingjet {
    background: linear-gradient(145deg, #ffffff 0%, #edf9f1 100%);
}

.promo-offer-card--skycut {
    background: linear-gradient(145deg, #ffffff 0%, #eaf3ff 100%);
}

.promo-offer-card.promo-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.promo-offer-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.14);
    border-color: rgba(38, 171, 75, 0.28);
}

.promo-offer-card:hover::after {
    opacity: 1;
}

.promo-offer-content {
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    padding: 1.35rem 1.4rem 1.35rem 1.45rem;
    animation: promoTextFloat 5s ease-in-out infinite;
}

.promo-offer-title {
    color: #111827;
    font-size: 1.48rem;
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    margin-bottom: 0.15rem;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 0.2px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.promo-offer-card:hover .promo-offer-title {
    color: var(--kingjet-primary-dark);
    transform: translateX(2px);
}

.promo-offer-discount {
    margin: 0.25rem 0 0;
    line-height: 1;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-weight: 800;
    color: #1f2937;
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    transition: transform 0.25s ease, letter-spacing 0.25s ease, box-shadow 0.25s ease;
}

.promo-offer-card:hover .promo-offer-discount {
    transform: scale(1.03);
    letter-spacing: 0.3px;
    box-shadow: none;
}

.promo-offer-discount .discount-value {
    color: var(--kingjet-primary);
    font-size: 1.35rem;
    line-height: 1;
}

.promo-offer-desc {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0.15rem 0 0;
    line-height: 1.45;
    max-width: 95%;
}

.promo-offer-link-hint {
    margin-top: 0.45rem;
    font-size: 0.79rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.9;
    transition: transform 0.25s ease, color 0.25s ease;
}

.promo-offer-card:hover .promo-offer-link-hint {
    color: var(--kingjet-primary-dark);
    transform: translateX(3px);
}

.promo-offer-image-wrap {
    width: 42%;
    min-width: 190px;
    height: 100%;
    align-self: stretch;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(38, 171, 75, 0.12), rgba(59, 130, 246, 0.08));
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.promo-offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.promo-offer-card:hover .promo-offer-image {
    transform: scale(1.04);
    filter: drop-shadow(0 10px 20px rgba(38, 171, 75, 0.22));
}

@media (max-width: 1200px) {
    .promo-offer-title { font-size: 1.35rem; }
    .promo-offer-image-wrap { min-width: 170px; }
}

@media (max-width: 992px) {
    .promo-offer-card {
        min-height: 220px;
        height: 220px;
    }

    .promo-offer-title { font-size: 1.25rem; }
    .promo-offer-content { padding: 1.15rem 1.2rem; }
    .promo-offer-image-wrap { width: 42%; min-width: 150px; }
}

@media (max-width: 768px) {
    .promo-offers-section {
        padding: 2.8rem 0;
    }

    .promo-offer-card {
        flex-direction: column;
        min-height: auto;
        height: auto;
        gap: 1.05rem;
        align-items: flex-start;
        padding: 1rem;
    }

    .promo-offer-content {
        padding: 0;
        width: 100%;
    }

    .promo-offer-image-wrap {
        width: 100%;
        min-width: 0;
        min-height: 160px;
        border-left: none;
        border-top: 1px solid rgba(17, 24, 39, 0.1);
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .promo-offer-card {
        text-align: center;
        padding: 0.9rem;
    }

    .promo-offer-desc {
        max-width: 100%;
    }

    .promo-offer-link-hint {
        justify-content: center;
        width: 100%;
    }

    .promo-offer-title { font-size: 1.3rem; }
    .promo-offer-image-wrap {
        width: 100%;
        min-height: 145px;
        margin: 0 auto;
    }
}

/* =============================================================================
   13. CTA SECTION
   ============================================================================= */
.cta-section {
    background: linear-gradient(
        rgba(2, 2, 2, 0.75),
        rgba(2, 2, 2, 0.75)
    ),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=70');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

/* =============================================================================
   14. HERO SECTION (Inserted)
   ============================================================================= */
.hero-section {
    background: radial-gradient(circle at top left, #1b1b1b, #000);
    color: #fff;
    padding: 100px 0;
    border-radius: 0;
    margin: 0;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff8a00, #ff5f6d);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text {
    color: #bfbfbf;
    max-width: 520px;
    margin-top: 20px;
}

.feature-list li {
    list-style: none;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list i {
    color: #22c55e;
    margin-right: 10px;
}

.btn-primary-gradient {
    background: linear-gradient(90deg, #ff8a00, #ff5f6d);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 10px;
    color: #fff;
}

.btn-outline-custom {
    border: 1px solid #444;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #222;
    color: #fff;
}



/* =============================================================================
   15. FOOTER STYLES
   ============================================================================= */
.footer {
    background-color: var(--kingjet-secondary);
    color: var(--kingjet-light);
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 1rem 1rem 0 0;
}

.footer h5,
.footer p,
.footer a {
    color: var(--kingjet-light);
}

.footer-links a:hover {
    color: var(--kingjet-primary);
    text-decoration: underline;
}

.social-icons a {
    background: rgba(255 255 255 / 0.1);
    transition: all 0.3s ease;
    color: white;
    margin-right: 0.5rem;
}

.social-icons a:hover {
    background-color: var(--kingjet-primary);
    transform: translateY(-3px);
}

/* =============================================================================
   16. UTILITY STYLES
   ============================================================================= */
/* Scroll progress bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 5px;
    background: #e9ecef;
    z-index: 1100;
}

.scroll-progress-bar {
    width: 0;
    height: 5px;
    background: var(--kingjet-primary);
    transition: width 0.25s ease;
}

/* Form focus */
input:focus,
textarea:focus {
    border-color: var(--kingjet-primary);
    box-shadow: 0 0 8px var(--kingjet-primary);
    outline: none;
}

/* Back to top */
.back-to-top {
    background: var(--kingjet-primary);
    color: white;
}

.back-to-top:hover {
    background: var(--kingjet-primary-dark);
    transform: translateY(-5px);
}

/* Accessible focus outlines */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--kingjet-primary);
    outline-offset: 2px;
}

/* Loader */


/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--kingjet-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(38, 171, 75, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--kingjet-primary-dark);
    transform: translateY(-5px);
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1100;
}

.floating-contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-contact-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    filter: brightness(1.05);
}

.floating-contact-btn--call {
    background: linear-gradient(135deg, #26ab4b, #1e8e3e);
}

.floating-contact-btn--whatsapp {
    background: #25D366;
}

/* =============================================================================
   17. RESPONSIVE ADJUSTMENTS
   ============================================================================= */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0 !important;
    }
    .hero-slider .swiper-slide {
        height: 80vh;
        min-height: 500px;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    .section-padding {
        padding: 2rem 0 !important;
    }
}

/* =============================================================================
   18. PAGE HEADER (About/Contact Pages)
   ============================================================================= */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/aboutus.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

/* =============================================================================
   19. TESTIMONIALS (About Page)
   ============================================================================= */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    color: white;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 6rem;
    color: var(--kingjet-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-avatar {
    border: 3px solid var(--kingjet-primary);
}

/* =============================================================================
   20. MAP STYLES (Contact Page)
   ============================================================================= */
.map-wrapper {
    max-width: 1500px;
    margin: 3%;
    border: 2px solid #D60D45;
}

.googlemap {
    width: 100%;
    height: 350px;
}

@media only screen and (max-width: 600px) {
    #watashi {
        margin: 5%;
        margin-top: -25%;
    }
}

/* =============================================================================
   PRODUCT PAGE HERO SECTION (cu-hero)
   ============================================================================= */
.cu-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 50px 0 45px;
    position: relative;
    overflow: hidden;
}

.cu-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(38, 171, 75, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(38, 171, 75, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cu-hero-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(38, 171, 75, 0.15);
    border: 1px solid rgba(38, 171, 75, 0.3);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    color: #26ab4b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cu-hero-badge i {
    font-size: 14px;
}

.cu-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cu-hero-title span {
    color: #26ab4b;
}

.cu-hero-sub {
    color: #9ca3af;
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .cu-hero-title { font-size: 1.9rem; }
}

@media (max-width: 768px) {
    .cu-hero { padding: 30px 0 28px; }
    .cu-hero-title { font-size: 1.6rem; }
}

/* =============================================================================
   PRODUCT VIEW PAGE STYLES
   ============================================================================= */
.product-view-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.product-view-wrapper {
    display: flex;
    min-height: 100vh;
    gap: 0;
}

.product-images-side {
    flex: 0 0 45%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.product-images-side img {
    width: 100%;
    max-height: 60%;
    object-fit: contain;
    border-radius: .5rem;
}

.thumbs {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: .25rem;
    border: 2px solid transparent;
    transition: border-color .2s;
}

.thumbs img.active {
    border-color: #26ab4b;
}

.product-details-side {
    flex: 1;
    overflow-y: auto;
    padding: 3rem 2rem;
    background: #fff;
}

.specs th {
    width: 160px;
}

.trending-section {
    margin-top: 2.5rem;
}

.trending-section h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.trending-slider {
    position: relative;
    overflow: hidden;
}

.trending-grid {
    display: flex;
    gap: 1rem;
    transition: transform .55s ease;
    will-change: transform;
}

.trending-grid .trending-card {
    flex: 0 0 calc(25% - .75rem);
}

.trending-card {
    border: 1px solid #e9ecef;
    border-radius: .75rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.trending-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
    border-color: rgba(38,171,75,.45);
}

.trending-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.trending-card:hover img {
    transform: scale(1.06);
}

.trending-card-body {
    padding: .9rem;
}

.trending-card-title {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .75rem;
    min-height: 2.6em;
    transition: color .25s ease;
}

.trending-card:hover .trending-card-title {
    color: #26ab4b;
}

/* Product View Responsive */
@media (max-width: 992px) {
    .trending-grid .trending-card {
        flex: 0 0 calc(50% - .5rem);
    }
}

@media (max-width: 576px) {
    .trending-grid .trending-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 992px) {
    .product-view-wrapper {
        flex-direction: column;
        height: auto;
    }
    .product-images-side {
        flex: 0 0 auto;
        height: auto;
        position: relative;
        width: 100%;
    }
    .product-details-side {
        flex: 1;
        overflow-y: visible;
    }
}

