/* ==========================================================================
   EazyTrax.Com - Dedicated Product Detail Showcase Stylesheet
   ========================================================================== */

/* Product Hero Canvas & Glow */
.product-hero-wrap {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.product-hero-wrap::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Product Mockup Container */
.product-mockup-frame {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 16px 36px -12px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.product-mockup-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Feature Spotlight Grid Card */
.feature-spotlight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-spotlight-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.feature-icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    flex-shrink: 0;
    color: #2563eb;
}

/* Technical Specification Table / Card */
.spec-grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Product Navigation Breadcrumb */
.product-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
}

.product-breadcrumb a {
    color: #2563eb;
    transition: color 0.15s ease;
}

.product-breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Interactive Sensor / Map Hotspots */
.map-hotspot-pin {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: hotspotBounce 2s infinite ease-in-out;
}

@keyframes hotspotBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
