:root {
    --bg: #0d0d12;
    --bg-alt: #15161d;
    --accent-h: #ff9527;
    --accent: #56b6e3;
    --accent-soft: rgba(254, 167, 76, .15);
    --txt-primary: #e9e9f1;
    --txt-muted: #9a9ab3;
    --radius: 1.25rem;
    --shadow: 0 8px 24px rgba(0, 0, 0, .45);
}

/* General Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: transparent;
    color: var(--txt-primary);
}

/* Product Container */
.product-container {
    max-width: 1200px;
    margin: 30px auto;
    background-color: var(--bg);
    border-radius: var(--radius);
    border-bottom: 1px solid var(--accent-soft);
    overflow: hidden;
}

/* Header Section */
.product-header {
    padding: 5rem 1rem 4rem;;
    text-align: center;
    border-bottom: 1px solid var(--accent-soft);
    background: radial-gradient(circle at 50% 20%, #1e1f29 0%, var(--bg) 70%);
}
.product-title {
    font-size: 3em;
    font-weight: 700;
    margin: 0;
    color: var(--txt-primary);
}
.product-subtitle {
    font-size: 1.25em;
    color: var(--txt-muted);
    margin-top: 10px;
}

/* Gallery/Video Section */
.product-media {
    padding: 2rem 1rem;
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--accent-soft);
}

.product-media h2 {
    font-size: 2em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--accent-h);
}
.product-media h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}
.product-media p, .product-media ul {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--txt-muted);
}
.product-media p {
    color: var(--txt-primary);
}
.product-media ul {
    list-style-position: inside;
    padding-left: 0;
}
.product-media img {
    max-width: 100%;
    height: auto;
    border-radius: calc(var(--radius) / 2);
    margin: 20px 0;
}
.product-media .highlight {
    font-weight: bold;
    color: var(--accent);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: calc(var(--radius) / 2);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Main Content Details */
.product-details {
    padding: 2rem 1rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--accent-soft);
}
.product-details h2 {
    font-size: 2em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--accent-h);
}
.product-details h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}
.product-details p, .product-details ul {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--txt-muted);
}
.product-details p {
    color: var(--txt-primary);
}
.product-details ul {
    list-style-position: inside;
    padding-left: 0;
}
.product-details img {
    max-width: 100%;
    height: auto;
    border-radius: calc(var(--radius) / 2);
    margin: 20px 0;
}
.product-details .highlight {
    font-weight: bold;
    color: var(--accent);
}
.manual-link {
    display: inline-block;
    text-align: center;
    padding: 12px 25px;
    border: 1px solid var(--accent);
    border-radius: 50px; /* Pill-shaped button */
    color: var(--accent);
    font-size: 1.25rem;
    text-decoration: none;
    margin-bottom: 30px;
    transition: background-color 0.3s, color 0.3s;
}
.manual-link:hover {
    background-color: var(--accent-soft);
}

/* Product Grid Section */
.product-grid-container {
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--accent-soft);
}

.product-grid-container h2 {
    font-size: 2em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--accent-h);
}

.product-grid-container p, .product-grid-container ul {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.product-grid-container .highlight {
    font-weight: bold;
    color: var(--accent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

/* Product Card Styling */
.product-card {
    background-color: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    max-width: 400px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.card-img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border-radius: 0.75rem;
}

.card-body {
    padding: 0rem;
}

.card-title {
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: .25rem;
    margin-top: .25rem;
}

.card-description {
    color: var(--txt-muted);
    margin: 0;
    font-size: 4rem;
    margin-top: 1rem;
}


/* ATTENTION SECTION */
.attention {
    background-color: #ffb200;
}
    .attention h1 {
        font-size: 3em;
        font-weight: 700;
        margin-top: 40px;
        margin-bottom: 10px;
        color: #000000;
    }

    .attention h2 {
        font-size: 2em;
        font-weight: 800;
        margin-top: 40px;
        margin-bottom: 10px;
        color: #000000;
    }

    .attention h3 {
        font-size: 1.5em;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 10px;
        color: #000000;
    }

    .attention p {
        color: #000000;
    }

    .attention ul {
        list-style-position: inside;
        padding-left: 0;
        color: #000000;
    }

    .attention img {
        display: block;
        width: 100%;
        height: auto;
    }

    .attention a {
        text-decoration: none;
        color: #0474ba;
    }

    .attention a:hover {
    text-decoration: underline;
    }

/* Update this to make the page full screen */
.product-container {
    max-width: 100%; /* Changed from 1200px */
    margin: 0; /* Removed top/bottom margin */
    border-radius: 0;
    background-color: var(--bg);
    min-height: 100vh;
}

/* Lightbox Overlay Styling */
.lightbox-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.5rem;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

    .lightbox-close:hover {
        color: var(--accent-h);
    }