/* ========================================
   Model Detail Page - Modern & Responsive CSS
   ======================================== */

/* ========== CSS Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== Animations ========== */
@keyframes move-bg {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes radar {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* ========== Main Wrapper ========== */
.model-detail-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========== Fixed Navigation ========== */
.model-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    padding: 8px;
    gap: 4px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.model-nav-item {
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    background: transparent;
}

.model-nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(0, 206, 209, 0.1) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-nav-item:hover::before {
    opacity: 1;
}

.model-nav-item:hover {
    background: linear-gradient(135deg, #E6FFFF 0%, #D0F8F8 100%);
    transform: translateY(-2px);
}

.model-nav-item img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.model-nav-item:hover img {
    transform: scale(1.15);
}

.nav-label {
    display: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: white;
    letter-spacing: 0.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    position: relative;
    width: 2px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    border-radius: 2px;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #008B8B;
    animation: move-bg 2s ease-in-out infinite;
}

/* ========== CTA Buttons ========== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button-primary {
    background: linear-gradient(135deg, #008B8B 0%, #006B6B 100%);
    color: white;
    border: 2px solid #008B8B;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, #006B6B 0%, #004B4B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.4);
}

.cta-button-secondary {
    background: white;
    color: #008B8B;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    background: #008B8B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-button-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button-outline:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ========== Colors Section ========== */
.colors-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.color-background {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
    z-index: 0;
}

.colors-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.color-display {
    width: 100%;
    min-height: 400px;
}

.color-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.color-option {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.color-option::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.color-option:hover {
    transform: scale(1.2) translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.color-option.active {
    border-color: #008B8B;
    box-shadow: 0 0 0 4px rgba(0, 139, 139, 0.2);
    transform: scale(1.15);
}

.color-option.active::after {
    border-color: #008B8B;
    animation: pulse 2s ease-in-out infinite;
}

.color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.color-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-option:hover .color-label {
    opacity: 1;
}

.color-tagline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

/* ========== Quick Specs Grid ========== */
.quick-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.quick-spec-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quick-spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.15);
}

.quick-spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(0, 206, 209, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-spec-icon img {
    width: 36px;
    height: 36px;
}

.quick-spec-content {
    flex: 1;
}

.quick-spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.quick-spec-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, #008B8B 0%, #00CED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Interactive Sections ========== */
.interactive-section {
    padding: 6rem 0;
    background: #1a1a1a;
    color: white;
}

.interactive-section.bg-light {
    background: #f8f9fa;
    color: #1a1a1a;
}

.interactive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.interactive-wrapper {
    width: 100%;
}

.interactive-image-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.interactive-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Hotspots ========== */
.hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hotspot-dot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotspot-dot-inner {
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hotspot-ring {
    position: absolute;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: radar 2s ease-out infinite;
    opacity: 0;
}

.hotspot-ring-1 {
    width: 32px;
    height: 32px;
}

.hotspot-ring-2 {
    width: 48px;
    height: 48px;
    animation-delay: 0.5s;
}

.hotspot-detail {
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 20;
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    max-width: 420px;
    min-width: 300px;
    border: 2px solid rgba(0, 139, 139, 0.1);
}

.hotspot-detail.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.hotspot-detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.hotspot-detail-close:hover {
    background: linear-gradient(135deg, #008B8B 0%, #006B6B 100%);
    transform: scale(1.15) rotate(90deg);
}

.hotspot-detail-close:hover svg {
    stroke: white;
}

.hotspot-detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hotspot-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #008B8B 0%, #00CED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hotspot-detail-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ========== Features Section ========== */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #00CED1, #20B2AA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(0, 139, 139, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 139, 139, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.2) 0%, rgba(0, 206, 209, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 139, 139, 0.2);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.3) 0%, rgba(0, 206, 209, 0.2) 100%);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

.features-cta {
    text-align: center;
}

/* ========== Specifications Section ========== */
.specifications-section {
    padding: 6rem 0;
    background: #1a1a1a;
    color: white;
}

.specifications-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.specifications-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.spec-card {

    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.2);
    border-color: rgba(0, 139, 139, 0.3);
}

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

.spec-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.spec-description {
    font-size: 0.875rem;
    color: #666;
}

.specifications-image {
    display: flex;
    justify-content: center;
}

.spec-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========== Price Section ========== */
.price-section {
    margin-top: 4rem;
}

.price-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    border: 1px solid rgba(0, 139, 139, 0.3);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05) 0%, rgba(0, 206, 209, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 139, 139, 0.3);
    border-color: rgba(0, 139, 139, 0.5);
}

.price-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-amount {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.price-amount.highlight {
    background: linear-gradient(135deg, #008B8B 0%, #00CED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

.price-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.price-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ========== Scroll Reveal ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive Design ========== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .model-nav {
        padding: 10px;
        gap: 6px;
    }

    .model-nav-item {
        padding: 12px 20px;
    }

    .model-nav-item img {
        width: 28px;
        height: 28px;
    }

    .nav-label {
        display: block;
    }

    .hero-cta-wrapper {
        flex-direction: row;
    }

    .color-selector {
        gap: 1.5rem;
        padding: 2rem;
    }

    .color-option {
        width: 70px;
        height: 70px;
    }

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

    .hotspot-dot-inner {
        width: 18px;
        height: 18px;
    }

    .hotspot-ring-1 {
        width: 36px;
        height: 36px;
    }

    .hotspot-ring-2 {
        width: 56px;
        height: 56px;
    }

    .feature-icon-wrapper {
        width: 96px;
        height: 96px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .specifications-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .price-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .price-info {
        flex-direction: row;
        gap: 3rem;
    }

    .price-divider {
        width: 1px;
        height: 80px;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .price-cta {
        flex-direction: row;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .quick-specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .specifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Small (max 640px) */
@media (max-width: 640px) {
    .model-nav {
        bottom: 10px;
        padding: 6px;
    }

    .model-nav-item {
        padding: 10px 12px;
    }

    .model-nav-item img {
        width: 20px;
        height: 20px;
    }

    .color-selector {
        gap: 0.75rem;
        padding: 1rem;
    }

    .color-option {
        width: 50px;
        height: 50px;
    }

    .hotspot-detail {
        max-width: 90vw;
        min-width: 280px;
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .spec-card {
        padding: 1.5rem;
    }

    .price-card {
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .model-nav,
    .scroll-indicator,
    .cta-button {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}