:root {
    --primary-color: #d35400;
    /* Molten Orange */
    --secondary-color: #2c3e50;
    /* Industrial Blue-Grey */
    --dark-bg: #1a1a1a;
    --light-bg: #f4f4f4;
    --text-light: #ffffff;
    --text-dark: #333333;
    --accent-gold: #f1c40f;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color) !important;
}

/* Specific overrides for About Page sections and Homepage Process */
.about-story h2,
.values-section h2,
.process h2 {
    color: var(--primary-color) !important;
}

/* Override for light backgrounds if any */
.light-bg h1,
.light-bg h2,
.light-bg h3,
.light-bg .section-title {
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    transition: background var(--transition-speed), padding var(--transition-speed);
}

.navbar.scrolled {
    background-color: #0a0a0a !important;
    /* Solid black background */
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 8rem 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-section p {
    color: #aaa;
    margin-bottom: 3rem;
}

/* Mode Selection */
.contact-modes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mode-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    width: 200px;
    transition: all 0.3s;
}

.mode-card:hover,
.mode-card.active {
    background: rgba(211, 84, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.mode-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-container {
    display: none;
    animation: fadeIn 0.5s;
}

.contact-container.active-mode {
    display: block;
}

/* Detailed Form */
.detailed-form {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Chat Interface */
.chat-window {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.5;
    animation: slideUp 0.3s;
}

.message.bot {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.user {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chat-input-area {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 1rem;
}

.chat-input-area input {
    flex: 1;
    padding: 1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.chat-input-area button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
    transition: all var(--transition-speed);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Language Selector */
.language-selector select {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-main);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.language-selector option {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    background-color: #000;
    /* Fallback */
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid var(--text-light);
    transition: all var(--transition-speed);
}

.btn-primary:hover,
.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background-color: var(--dark-bg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(211, 84, 0, 0.2);
    border-color: rgba(211, 84, 0, 0.3);
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, var(--dark-bg), #111);
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: var(--font-heading);
}

.step-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    padding: 15px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card:hover .step-icon {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(211, 84, 0, 0.4);
    transform: scale(1.1);
}

.step-card h3 {
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background-color: var(--light-bg);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #222;
    margin: auto;
    padding: 3rem;
    border: 1px solid var(--primary-color);
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 30px rgba(211, 84, 0, 0.3);
    animation: slideUp 0.3s;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* About Page Styles */
.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/casting_2.jpg');
    background-size: cover;
    background-position: center;
}

.about-story {
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: var(--dark-bg);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-vision {
    padding: 6rem 5%;
    background-color: #1a1a1a;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.mv-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    min-width: 300px;
}

.mv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mv-icon svg {
    width: 100%;
    height: 100%;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.mv-card p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
}

.values-section {
    padding: 6rem 5%;
    background-color: var(--dark-bg);
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    width: 220px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.value-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-story {
        flex-direction: column;
    }
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.modal h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.modal p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #111;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: center;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar {
        padding: 1rem 5%;
    }

    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        z-index: 2000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Headers */
.page-header {
    padding: 8rem 5% 4rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero_molten_metal_1764875473641.png');
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Footer Redesign */
.main-footer {
    background-color: #050505;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

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

.social-icon svg {
    width: 18px;
    height: 18px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 1rem;
    }

    .footer-social {
        justify-content: center;
    }
}
/* Mobile Typography Fixes */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 5% 3rem;
    }

    .page-header h1 {
        font-size: 2rem; /* Reduced from 3.5rem */
        word-wrap: break-word;
    }

    .page-header p {
        font-size: 1rem; /* Reduced from 1.2rem */
    }
    
    /* Ensure tables scroll horizontally on small screens */
    .material-section, .tech-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        display: block;
    }
    
    .tech-table {
        min-width: 600px; /* Force table to maintain width and trigger scroll */
    }
}

/* Comprehensive Responsive Fixes */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mv-card {
        min-width: 100%;
    }
    
    .about-stats {
        grid-template-columns: 1fr !important;
    }
    
    .hero h1 {
        font-size: 2.5rem; /* Further reduce for small phones */
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Product Modal Styles */
.product-modal-content {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.product-modal-grid {
    display: flex;
    flex-wrap: wrap;
}

.product-modal-image {
    flex: 1;
    min-width: 300px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-modal-info {
    flex: 1.5;
    padding: 3rem;
    min-width: 300px;
}

.product-modal-info .product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.product-modal-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.spec-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.spec-section ul {
    list-style: none;
    padding: 0;
}

.spec-section ul li {
    color: #aaa;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.spec-section ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .product-modal-grid {
        flex-direction: column;
    }
    
    .product-modal-image {
        height: 250px;
    }
    
    .modal-specs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-modal-info {
        padding: 2rem;
    }
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.theme-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.theme-btn:hover {
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.theme-btn.active {
    transform: scale(1.2);
    border-color: white;
    box-shadow: 0 0 10px currentColor;
}

.theme-orange { background-color: #ff6600; color: #ff6600; }
.theme-blue { background-color: #00a8ff; color: #00a8ff; }
.theme-red { background-color: #e74c3c; color: #e74c3c; }
.theme-purple { background-color: #9b59b6; color: #9b59b6; }
