/* =========================================================================
   VISHWAKARMA ENGINEERING - PREMIUM LIGHT LUXURY THEME
   ========================================================================= */

:root {
    --bg-color: #fafafa;
    --bg-light: #ffffff;
    --bg-cream: #f8f6f3;
    --bg-warm: #f5f3f0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --accent-color: #b8860b;
    --accent-light: #daa520;
    --accent-gold: #c9a962;
    --accent-hover: #8b6914;
    --border-color: rgba(0,0,0,0.08);
    --shadow-soft: 0 2px 10px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.03);
    --shadow-medium: 0 4px 14px rgba(0,0,0,0.04), 0 16px 32px rgba(0,0,0,0.05);
    --shadow-luxury: 0 10px 30px rgba(0,0,0,0.05), 0 30px 60px rgba(0,0,0,0.08);
    
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { font-size: 16px; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.section-title.text-sm { font-size: clamp(2rem, 4vw, 3rem); }

.section-paragraph {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-sm { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 5rem; }
.mt-lg { margin-top: 5rem; }

.gold-accent { color: var(--accent-color); font-weight: 500; }
a { color: inherit; text-decoration: none; }

/* Custom Cursor */
.cursor {
    width: 8px; height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--accent-gold);
}

.cursor-follower {
    width: 45px; height: 45px;
    border: 1.5px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s, height 0.3s;
}

.cursor-hover .cursor { width: 0; height: 0; }
.cursor-hover .cursor-follower {
    width: 70px; height: 70px;
    background-color: rgba(201, 169, 98, 0.1);
    border-color: var(--accent-color);
}

/* Loader */
.loader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-cream) 100%);
    z-index: 10001;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
}

.loader-logo-wrap { text-align: center; margin-bottom: 2.5rem; }
.loader-text { font-size: 3rem; font-weight: 300; letter-spacing: 0.4em; color: var(--accent-color); }
.loader-logo-img { height: 70px; width: auto; object-fit: contain; }
.loader-subtitle { font-size: 0.85rem; letter-spacing: 0.4em; color: var(--text-muted); margin-top: 15px; font-weight: 400; }
.pulse-glow { animation: pulse 2s infinite ease-in-out; }

@keyframes pulse {
    0%, 100% { opacity: 0.7; text-shadow: 0 0 20px rgba(184,134,11,0.3); }
    50% { opacity: 1; text-shadow: 0 0 40px rgba(184,134,11,0.5); }
}

.loader-progress-track { width: 200px; height: 2px; background: rgba(0,0,0,0.08); border-radius: 10px; }
.loader-progress-bar { height: 100%; background: linear-gradient(90deg, var(--accent-color), var(--accent-light)); width: 0; border-radius: 10px; }

/* Layout */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: var(--spacing-xl) 0; }
.bg-darker { background-color: var(--bg-cream); }
.bg-warm { background-color: var(--bg-warm); }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* Navbar */
.navbar {
    position: fixed; top: 25px; left: 5%;
    width: 90%; padding: 1rem 2.5rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; border-radius: 60px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}
.navbar:hover { box-shadow: var(--shadow-medium); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 45px; width: auto; display: block; object-fit: contain; }

.nav-links { display: flex; gap: 2.5rem; }
.nav-link {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
    position: relative; color: var(--text-secondary); transition: 0.3s;
}
.nav-link:hover { color: var(--accent-color); }
.nav-link::after {
    content: ''; position: absolute; bottom: -6px; left: 50%;
    width: 0; height: 2px; background: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease; border-radius: 2px;
}
.nav-link:hover::after { width: 100%; left: 0; }

.btn-glass {
    padding: 0.9rem 2rem; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 1px; border: none; border-radius: 50px;
    transition: var(--transition-smooth); cursor: pointer;
    background: var(--accent-color); color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 12px rgba(184,134,11,0.2);
}
.btn-glass:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 25px rgba(184,134,11,0.3); }
.btn-glass:active { transform: scale(0.96); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 2000; }
.menu-line { width: 25px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.menu-toggle.active .menu-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .menu-line:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero Section */
.hero {
    height: 100vh; position: relative;
    display: flex; align-items: center; padding: 0 5%; overflow: hidden;
}

.hero-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }

.hero-gradient-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.6) 100%);
}

.hero-content { position: relative; z-index: 2; margin-top: 4rem; max-width: 65%; }

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    line-height: 1.1; margin-bottom: 1.5rem; font-weight: 400;
    letter-spacing: -0.04em;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    max-width: 550px; color: var(--text-secondary); font-weight: 400;
    line-height: 1.8; margin-top: 1rem;
}

.hero-tagline {
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    max-width: 550px; color: var(--accent-color); font-weight: 500;
    letter-spacing: 0.02em; margin-bottom: 1.5rem; line-height: 1.6;
}

.hero-scroll-indicator {
    position: absolute; bottom: 40px; left: 5%;
    display: flex; align-items: center; gap: 15px;
}
.scroll-mouse {
    width: 24px; height: 38px; border: 2px solid var(--text-muted);
    border-radius: 15px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px; background: var(--accent-color); border-radius: 3px;
    animation: wheel 2s infinite ease-in-out;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
.scroll-text { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }

/* About Section - JPAA Layout */
.about { position: relative; }
.about-jpaa-split {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    justify-content: space-between;
    align-items: flex-start;
}
.about-jpaa-left {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}
.jpaa-title {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}
.about-jpaa-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-medium);
}
.about-jpaa-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-jpaa-right {
    flex: 1.5;
    min-width: 320px;
    padding-top: 1rem;
}
.jpaa-subtitle {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.jpaa-vertical-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.jpaa-stat-item h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.2;
}
.jpaa-stat-item p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}
.margin-top-md { margin-top: 2.5rem; }

.luxury-list { list-style: none; margin-top: 2rem; }
.luxury-list li {
    padding: 1.3rem 0; border-bottom: 1px solid var(--border-color);
    font-size: 1.15rem; display: flex; flex-direction: column; gap: 5px; transition: 0.3s;
}
.luxury-list li strong { font-weight: 500; font-size: 1.3rem; color: var(--text-primary); }
.luxury-list li span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.luxury-list li:hover { padding-left: 15px; border-color: var(--accent-color); }
.margin-top-lg { margin-top: 4rem; }

/* Showreel */
.glow-text { text-shadow: 0 0 40px rgba(184,134,11,0.2); }

.video-showcase {
    width: 100%; height: 70vh; position: relative;
    border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-luxury);
}
.video-showcase video { width: 100%; height: 100%; object-fit: cover; }

/* Services */
.section-header.has-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.glass-card {
    padding: 2.5rem; background: var(--bg-light);
    border: 1px solid var(--border-color); border-radius: 24px;
    transition: box-shadow 0.4s ease, border-color 0.4s ease; position: relative; overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform-style: preserve-3d;
    will-change: transform;
}
.glass-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-luxury);
}

.service-icon { font-size: 2.8rem; color: var(--accent-color); margin-bottom: 1.5rem; }
.glass-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--text-primary); }
.glass-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

.card-glow {
    position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(184,134,11,0.1) 0%, transparent 70%);
    opacity: 0; transition: 0.5s; pointer-events: none;
}
.glass-card:hover .card-glow { opacity: 1; }

/* Shop / Products */
.gold-badge {
    padding: 10px 20px; border: 1.5px solid var(--accent-color); color: var(--accent-color);
    border-radius: 50px; font-size: 0.8rem; font-weight: 500; letter-spacing: 1px;
    background: rgba(184,134,11,0.05);
}

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.shop { overflow: hidden; }
.products-scroll-slider {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 2rem;
    padding-bottom: 2rem;
}
.products-scroll-slider > .product-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    min-width: 320px;
}
.interactive { cursor: pointer; }

.product-img-wrapper {
    position: relative; border-radius: 20px; overflow: hidden;
    background: var(--bg-cream); aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color);
}
.product-img-wrapper img {
    width: 80%; height: auto; object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-blur {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.4s ease;
}
.product-card:hover .product-img-wrapper img { transform: scale(1.05); }
.product-card:hover .glass-blur { opacity: 1; }

.btn-glass-small {
    padding: 12px 24px; background: var(--accent-color); border: none;
    color: #fff; border-radius: 50px; font-weight: 500; letter-spacing: 1px;
    display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
    transform: translateY(15px); transition: 0.4s;
}
.product-card:hover .btn-glass-small { transform: translateY(0); }

.product-info { padding: 1.5rem 0; }
.product-info h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--text-primary); }

/* Gallery */
/* Luxury Parallax Gallery */
.parallax-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    height: 850px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    background: var(--bg-cream);
}
.parallax-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    will-change: transform;
}
.pg-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}
.pg-item img, .pg-video {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pg-item:hover img, .pg-item:hover .pg-video {
    transform: scale(1.05);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-item { display: flex; align-items: center; gap: 20px; margin-bottom: 2rem; }
.icon-circle {
    width: 55px; height: 55px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; background: var(--accent-color);
}

.contact-form-wrapper h3 { font-size: 2rem; margin-bottom: 2rem; color: var(--text-primary); }

.luxury-input { margin-bottom: 1.5rem; }
.luxury-input input, .luxury-input select {
    width: 100%; padding: 1rem 0;
    background: transparent; border: none;
    border-bottom: 1.5px solid var(--border-color);
    color: var(--text-primary); font-size: 1.05rem; font-family: var(--font-main); font-weight: 400;
}
.luxury-input input:focus, .luxury-input select:focus { outline: none; border-color: var(--accent-color); }
.luxury-input select option { background: #fff; color: #000; }

.btn-gold {
    width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem;
    padding: 1.3rem 2rem; background: var(--accent-color); color: #fff;
    border: none; border-radius: 50px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 500; cursor: pointer; transition: 0.4s;
}
.btn-gold:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,134,11,0.3); }

/* Footer */
.footer {
    padding: 5rem 5% 2.5rem 5%;
    border-top: 1px solid var(--border-color);
    background: var(--bg-cream);
}
.footer-logo { display: inline-flex; align-items: center; }
.footer-logo img { height: 100px; width: auto; opacity: 0.9; object-fit: contain; display: block; }
.footer-motto { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; max-width: 400px; text-align: right; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.footer-bottom {
    display: flex; justify-content: space-between;
    padding-top: 2rem; border-top: 1px solid var(--border-color);
    font-size: 0.9rem; color: var(--text-muted); font-weight: 400;
}

/* Modal */
.video-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255,255,255,0.9); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: 0.5s;
    backdrop-filter: blur(20px);
}
.video-modal-overlay.active { opacity: 1; pointer-events: all; }

.glass-modal {
    width: 88%; height: 85vh; background: var(--bg-light);
    border: 1px solid var(--border-color); border-radius: 30px;
    position: relative; padding: 20px; box-shadow: var(--shadow-luxury);
}
.modal-video-wrapper { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; background: #000; }
.modal-video-wrapper video { width: 100%; height: 100%; object-fit: contain; }

.modal-close {
    position: absolute; top: -55px; right: 0;
    background: var(--bg-light); border: none;
    color: var(--text-primary); font-size: 2.5rem; cursor: pointer;
    transition: 0.4s; padding: 8px; border-radius: 50%;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--accent-color); transform: rotate(90deg); }

/* Product Detail Modal */
.product-detail-overlay {
    position: fixed; inset: 0; z-index: 10002;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(25px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.5s ease; padding: 20px;
}
.product-detail-overlay.active { opacity: 1; pointer-events: all; }

.product-detail-modal {
    width: 100%; max-width: 1200px; max-height: 92vh;
    background: var(--bg-light); border-radius: 28px;
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
    position: relative; box-shadow: var(--shadow-luxury);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.product-detail-overlay.active .product-detail-modal { transform: scale(1) translateY(0); }

.pd-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: var(--bg-cream); border: 1px solid var(--border-color);
    border-radius: 50%; color: var(--text-primary); font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 1000; transition: 0.3s; box-shadow: var(--shadow-soft);
}
.pd-close:hover { transform: rotate(90deg) scale(1.1); background: var(--accent-light); color: #fff; }
.pd-close:hover { background: var(--accent-color); color: #fff; transform: rotate(90deg); }

.pd-left {
    padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem;
    background: var(--bg-cream); border-right: 1px solid var(--border-color); overflow-y: auto;
}

.pd-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted);
}

.pd-video-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border-color);
}
.pd-video { width: 100%; height: 100%; object-fit: cover; }
.pd-video-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent-color); color: #fff; padding: 6px 14px;
    border-radius: 30px; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
}

.pd-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pd-stat {
    background: var(--bg-light); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 1rem; text-align: center; transition: 0.3s;
}
.pd-stat:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-soft); }
.pd-stat-value { display: block; font-size: 1.6rem; font-weight: 500; color: var(--text-primary); letter-spacing: -0.02em; }
.pd-unit { font-size: 0.75rem; color: var(--accent-color); margin-left: 3px; font-weight: 500; }
.pd-stat-label { display: block; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

.pd-right { padding: 2rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.5rem; }

.pd-tag {
    display: inline-block; padding: 5px 14px; border: 1.5px solid var(--accent-color);
    color: var(--accent-color); border-radius: 30px;
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500;
}
.pd-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; color: var(--text-primary); line-height: 1.2; margin-bottom: 0.8rem; }
.pd-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; font-weight: 400; }

.pd-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; border-bottom: 1px solid var(--border-color); }
.pd-tab {
    padding: 0.6rem 1.2rem; background: transparent; border: none;
    color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px;
    font-family: var(--font-main); cursor: pointer; border-bottom: 2px solid transparent;
    transition: 0.3s; position: relative; bottom: -1px; font-weight: 500;
}
.pd-tab:hover { color: var(--text-primary); }
.pd-tab.active { color: var(--accent-color); border-bottom-color: var(--accent-color); }

.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; animation: fadeInTab 0.3s ease; }
@keyframes fadeInTab { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.pd-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.pd-table thead tr { background: var(--bg-cream); border-bottom: 2px solid var(--border-color); }
.pd-table th { padding: 0.9rem 1rem; text-align: left; font-weight: 500; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.pd-table tbody tr { border-bottom: 1px solid var(--border-color); transition: background 0.2s; }
.pd-table tbody tr:hover { background: var(--bg-cream); }
.pd-table td { padding: 0.9rem 1rem; color: var(--text-secondary); font-weight: 400; }
.pd-table td:first-child { color: var(--text-primary); font-size: 0.85rem; font-weight: 500; }

.pd-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border-color); }
.pd-btn-primary {
    flex: 1; min-width: 150px; padding: 1rem 1.5rem;
    background: var(--accent-color); color: #fff; border-radius: 50px;
    font-size: 0.88rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.35s; cursor: pointer; border: none;
}
.pd-btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(184,134,11,0.25); }
.pd-btn-secondary {
    flex: 1; min-width: 130px; padding: 1rem 1.5rem;
    background: transparent; color: var(--text-primary);
    border: 1.5px solid var(--border-color); border-radius: 50px;
    font-size: 0.88rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.35s; cursor: pointer;
}
.pd-btn-secondary:hover { border-color: var(--accent-color); color: var(--accent-color); transform: translateY(-2px); }

.pd-img-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border-color); background: var(--bg-light);
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.pd-product-img { width: 90%; height: 90%; object-fit: contain; transition: transform 0.5s ease; }
.pd-img-wrap:hover .pd-product-img { transform: scale(1.05); }
.pd-img-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent-color); color: #fff; padding: 6px 14px;
    border-radius: 30px; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
}

.pd-specs-heading {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-color);
    padding-bottom: 0.8rem; border-bottom: 1px solid var(--border-color);
}

/* Spare Parts Modal */
#spareparts-modal.product-detail-overlay { z-index: 10000; overflow: auto; }

.sp-modal-container {
    width: 96vw; max-width: 1400px; height: 90vh;
    background: var(--bg-light); border: 1px solid var(--border-color);
    border-radius: 28px; display: flex; flex-direction: column;
    overflow: hidden; position: relative; box-shadow: var(--shadow-luxury);
    animation: spFadeIn 0.4s ease both;
}
@keyframes spFadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.sp-modal-header {
    padding: 2rem 3rem 1.5rem;
    background: var(--bg-cream); border-bottom: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center;
}

.sp-title { font-size: 2.2rem; font-weight: 500; color: var(--text-primary); margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.sp-subtitle { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.sp-stats { display: flex; align-items: center; gap: 1rem; }
.sp-stat-pill {
    padding: 0.5rem 1rem; background: rgba(184,134,11,0.08);
    border: 1px solid var(--accent-gold); border-radius: 50px;
    font-size: 0.8rem; color: var(--accent-color); font-weight: 500;
    display: flex; align-items: center; gap: 0.5rem;
}

.sp-close-btn {
    width: 44px; height: 44px; background: var(--bg-light);
    border: 1px solid var(--border-color); color: var(--text-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.3s; font-size: 1.3rem;
}
.sp-close-btn:hover { background: var(--accent-color); color: #fff; transform: rotate(90deg); }

.sp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; padding: 2rem 3rem; overflow-y: auto; max-height: 55vh; flex: 1; align-content: start;
}
.sp-grid::-webkit-scrollbar { width: 6px; }
.sp-grid::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 10px; }

.sp-part-card {
    background: var(--bg-light); border-radius: 20px;
    border: 1px solid var(--border-color); overflow: hidden;
    display: block; cursor: pointer;
    transition: box-shadow 0.4s ease, border-color 0.4s ease; box-shadow: var(--shadow-soft);
    transform-style: preserve-3d;
    will-change: transform;
}
.sp-part-card:hover { box-shadow: var(--shadow-medium); border-color: var(--accent-gold); }

.sp-img-wrap {
    display: none; /* User requested: Only show images on click */
}
.sp-img-wrap img {
    position: absolute; top: 1rem; left: 1rem; right: 1rem; bottom: 1rem;
    max-width: calc(100% - 2rem); max-height: calc(100% - 2rem);
    object-fit: contain; box-sizing: border-box; margin: auto;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-part-card:hover .sp-img-wrap img { transform: scale(1.08); }

.sp-part-info {
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem 1rem; text-align: center;
    background: linear-gradient(135deg, var(--bg-light), #ffffff);
    width: 100%; box-sizing: border-box; min-height: 80px;
}
.sp-part-card:hover .sp-part-info {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}
.sp-part-name { color: var(--text-dark); font-size: 0.95rem; font-weight: 600; line-height: 1.3; margin: 0; transition: color 0.3s; }
.sp-part-card:hover .sp-part-name { color: #fff; }

.sp-footer {
    display: flex; gap: 1.5rem; padding: 1.5rem 3rem;
    background: var(--bg-cream); border-top: 1px solid var(--border-color);
}

/* Spare Part Lightbox */
.sp-lightbox {
    position: fixed; inset: 0; z-index: 10005;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: 0.4s;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
}
.sp-lightbox.active { opacity: 1; pointer-events: all; }

.sp-lightbox-content { position: relative; width: 90vw; max-width: 800px; display: flex; flex-direction: column; align-items: center; }
.sp-lightbox-img-wrap {
    width: 100%; background: var(--bg-light); border-radius: 24px;
    padding: 2.5rem; box-shadow: var(--shadow-luxury);
}
.sp-lightbox-img-wrap img { max-width: 100%; max-height: 65vh; object-fit: contain; display: block; margin: 0 auto; }
.sp-lightbox-label { margin-top: 1.5rem; color: var(--text-primary); font-size: 1.8rem; font-weight: 500; }

.sp-lightbox-close {
    position: absolute; top: -55px; right: 0;
    background: var(--bg-light); border: 1px solid var(--border-color);
    color: var(--text-primary); font-size: 2rem; cursor: pointer;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.sp-lightbox-close:hover { color: var(--accent-color); transform: rotate(90deg); }

/* ================= 3D Immersive Updates ================= */
.interactive-glare {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
    opacity: 0; pointer-events: none; z-index: 10;
    transition: opacity 0.3s ease; mix-blend-mode: overlay;
}
.card-3d { transform-style: preserve-3d; }
.card-3d:hover .interactive-glare { opacity: 1; }

.sticky-promo-banner {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(184, 134, 11, 0.95); color: #fff;
    z-index: 10005; padding: 10px 0; font-size: 0.9rem;
    backdrop-filter: blur(10px); transform: translateY(-100%); transition: transform 0.4s ease;
}
.sticky-promo-banner.visible { transform: translateY(0); }
.banner-inner { display: flex; justify-content: space-between; align-items: center; }
.btn-banner-quote {
    background: #000; color: var(--accent-color); padding: 8px 20px; border-radius: 30px;
    font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.1);
}
.btn-banner-quote:hover { background: #fff; color: #000; transform: translateY(-2px); }
.btn-banner-quote:active { transform: scale(0.96); }
.gold-pulse-icon { display: inline-block; animation: goldPulse 1.5s infinite; }
@keyframes goldPulse {
    0% { filter: drop-shadow(0 0 2px rgba(255,255,255,0.5)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 8px rgba(255,255,255,1)); transform: scale(1.1); }
    100% { filter: drop-shadow(0 0 2px rgba(255,255,255,0.5)); transform: scale(1); }
}

.hero-trust-badges { display: flex; gap: 15px; }
.trust-badge {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; display: flex;
    align-items: center; gap: 6px; backdrop-filter: blur(5px); transition: 0.3s; cursor: default;
}
.trust-badge i { color: var(--accent-color); font-size: 1rem; }
.trust-badge:hover { background: rgba(255,255,255,0.2); border-color: var(--accent-light); transform: translateY(-2px); }

.pulse-btn { animation: buttonPulse 2s infinite; }
@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(184, 134, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

.floating-label-group { position: relative; margin-bottom: 2rem; padding-top: 1rem; }
.floating-label-group input, .floating-label-group select {
    width: 100%; padding: 0.5rem 0; font-size: 1.05rem; color: var(--text-primary);
    background: transparent; border: none; border-bottom: 1.5px solid var(--border-color); outline: none; transition: 0.3s;
}
.floating-label-group label {
    position: absolute; left: 0; top: 1.5rem; color: var(--text-muted); font-size: 1.05rem;
    pointer-events: none; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-label-group input:focus ~ label, .floating-label-group input:not(:placeholder-shown) ~ label {
    top: 0; font-size: 0.8rem; color: var(--accent-color); font-weight: 500;
}
.floating-label-group input:focus, .floating-label-group select:focus { border-bottom-color: var(--accent-color); }
.input-glow {
    position: absolute; bottom: -1.5px; left: 0; width: 0; height: 1.5px;
    background: var(--accent-color); transition: 0.4s ease;
}
.floating-label-group input:focus ~ .input-glow, .floating-label-group select:focus ~ .input-glow { width: 100%; }

/* Elite Floating CTA */
.elite-cta-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.4));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184,134,11,0.5);
    border-radius: 50px;
    color: var(--gold-primary);
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(184,134,11,0.2) inset;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    isolation: isolate;
}
.elite-cta-float i { font-size: 1.5rem; }
.elite-cta-float:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 25px rgba(184,134,11,0.4) inset;
    border-color: rgba(184,134,11,0.9);
    color: #fff;
}
.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px solid rgba(184,134,11,0.5);
    animation: ripplePulse 2s infinite ease-out;
    z-index: -1;
}
@keyframes ripplePulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* 3D Physics Properties */
.magnetic-btn {
    display: inline-flex;
    will-change: transform;
}
.card-3d {
    transform-style: preserve-3d;
    will-change: transform;
    perspective: 1000px;
}
.interactive-glare {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 60%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) translateZ(40px); /* Centers on mouse cursor and brings above plane */
    z-index: 10;
    mix-blend-mode: overlay;
    transition: opacity 0.4s ease;
}
.product-img-wrapper {
    transform: translateZ(30px); /* Give content a pop on Z axis for tilting */
    transform-style: preserve-3d;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .section-header.has-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
    .navbar { width: 90%; left: 5%; top: 20px; }
    .nav-links {
        display: flex; flex-direction: column; position: fixed; gap: 1.5rem;
        top: 80px; left: 5%; width: 90%; background: rgba(255,255,255,0.98);
        padding: 2.5rem 2rem; border-radius: 20px; box-shadow: var(--shadow-luxury);
        backdrop-filter: blur(20px); border: 1px solid var(--border-color);
        transform: translateY(-20px) scale(0.98); opacity: 0; pointer-events: none; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }
    .nav-links.active { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
    .nav-link { font-size: 1.2rem; display: block; width: 100%; text-align: center; }
    .btn-glass { display: none; }
    .menu-toggle { display: flex; }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 30px; }
    .footer-motto { text-align: left; max-width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .product-detail-modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; overflow-x: hidden; scroll-behavior: smooth; border-radius: 20px; }
    .pd-left { border-right: none; border-bottom: 1px solid var(--border-color); padding: 1.5rem; }
    .pd-right { padding: 1.5rem; }
    .pd-close { position: fixed; top: 15px; right: 15px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); color: #000; }
    .sticky-promo-banner { font-size: 0.8rem; }
    .banner-inner { flex-direction: column; text-align: center; gap: 10px; }
    .sp-grid { grid-template-columns: repeat(3, 1fr); max-height: 60vh; }
}

@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    .sticky-promo-banner { display: none !important; }
    .section-padding { padding: 5rem 0; }
    .hero { height: auto; min-height: 100vh; padding: 120px 5% 60px; align-items: flex-start; }
    .hero-content { max-width: 100%; margin-top: 4rem; text-align: center; }
    .hero-title { font-size: 11vw; margin-bottom: 1rem; }
    .hero-subtitle { max-width: 100%; margin: 0.5rem auto; }
    .hero-tagline { max-width: 100%; margin: 0 auto 1.5rem; font-size: 1rem; }
    .hero-actions { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .products-scroll-slider > .product-card { flex: 0 0 85vw; }
    .parallax-gallery { grid-template-columns: 1fr; height: auto; overflow: visible; }
    .parallax-col { margin-top: 0 !important; margin-bottom: 0 !important; transform: none !important; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-jpaa-split { gap: 3rem; }
    .about-jpaa-left { max-width: 100%; }
    .about-jpaa-visual { max-width: 400px; margin: 0 auto; }
    .glass-wrap:nth-child(n) { grid-column: auto; grid-row: auto; aspect-ratio: 1; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .sp-grid { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; gap: 1rem; max-height: 55vh; }
    .sp-footer { padding: 1.5rem; flex-direction: column; }

/* ================= HERO CTA BUTTONS ================= */
.hero-actions .btn {
    padding: 14px 28px; font-size: 0.95rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; border-radius: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; text-decoration: none;
}
.btn-gold-lg { 
    background: var(--accent-color); color: #000; 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 24px rgba(184,134,11,0.3); 
}
.btn-gold-lg:hover { background: var(--accent-gold); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(184,134,11,0.4); }
.btn-gold-lg:active { transform: scale(0.96); }
.btn-glass-lg { background: rgba(255,255,255,0.05); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.btn-glass-lg:hover { background: rgba(255,255,255,0.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-glass-lg:active { transform: scale(0.96); }

/* ================= TRUST STATS Grid ================= */
.trust-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.trust-stat-box {
    padding: 2.5rem; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.stat-number { font-size: 3.5rem; color: var(--accent-color); font-weight: 300; margin: 0; line-height: 1; }
.stat-label { font-size: 1rem; color: var(--text-secondary); margin-top: 12px; text-transform: uppercase; letter-spacing: 2px; }
.stat-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 150px; height: 150px; background: radial-gradient(circle, rgba(184,134,11,0.15) 0%, transparent 70%); pointer-events: none;
}

/* ================= SHIMMER SWEEP ANIMATION ================= */
.shimmer-sweep::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg); transition: 0s; z-index: 2; pointer-events: none;
}
.shimmer-sweep:hover::after { left: 150%; transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1); }

/* ================= FLOATING WHATSAPP ================= */
.floating-whatsapp {
    position: fixed; bottom: 40px; right: 40px; width: 65px; height: 65px;
    background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; z-index: 9999; box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s; text-decoration: none;
}
.floating-whatsapp::before {
    content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid #25D366;
    animation: whatsapp-pulse 2s infinite; opacity: 0; pointer-events: none;
}
@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}
.floating-whatsapp:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 15px 40px rgba(37,211,102,0.6); color: #fff; }
.whatsapp-tooltip {
    position: absolute; right: calc(100% + 15px); top: 50%; transform: translateY(-50%) translateX(10px);
    background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); color: #fff; padding: 8px 15px; border-radius: 8px;
    font-size: 0.9rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1); font-family: 'Outfit', sans-serif; letter-spacing: 1px;
}
.floating-whatsapp:hover .whatsapp-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 768px) {
    .floating-whatsapp { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.8rem; }
    .hero-actions.anim-text { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; gap: 15px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .sp-modal-header { padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
    .sp-grid { grid-template-columns: repeat(2, 1fr); padding: 1rem; gap: 0.8rem; max-height: 50vh; }
    .sp-part-name { font-size: 0.85rem; }
}
}

/* ========================================================= */
/* DEDICATED SPARE PARTS PAGE MIGRATION CSS                  */
/* Override the modal constraints to use native page scroll! */
/* ========================================================= */
.spare-parts-page .sp-modal-container {
    height: auto !important;
    overflow: visible !important;
    margin: 0 auto 50px auto !important;
}
.spare-parts-page .sp-grid {
    max-height: none !important; /* Remove modal height clamp */
    overflow-y: visible !important; /* Native page scrolling */
}
.spare-parts-page .sp-img-wrap {
    display: block !important; /* Show the beautiful images! */
    height: 180px; 
    position: relative;
    background: #fff;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}
.spare-parts-page .sp-img-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.spare-parts-page .sp-part-card {
    display: flex;
    flex-direction: column;
}
.spare-parts-page .sp-part-info {
    flex: 1; /* Stretch to fill bottom nicely */
}
@media (max-width: 480px) {
    .spare-parts-page .sp-img-wrap { height: 130px; }
}