/* --- PHANTOM LABS INDUSTRIAL CORE --- */

:root {
    --industrial-orange: #FF4500;
    --dark-bg: #0a0a0a;
    --terminal-grey: #a0a0a0;
    --border-style: 1px solid #333;
}

body {
    background-color: var(--dark-bg);
    color: var(--industrial-orange);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.5;
    text-transform: uppercase; /* Keeps the 'Industrial' feel across the site */
}

/* --- LAYOUT ELEMENTS --- */

header {
    border-bottom: 2px solid var(--industrial-orange);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h1, h2, h3 {
    margin: 0;
    letter-spacing: 2px;
}

.manifest-container {
    border: var(--border-style);
    padding: 20px;
    background: rgba(255, 69, 0, 0.05); /* Slight orange tint */
}

/* --- SHOPIFY BUY BUTTON OVERRIDES --- */
/* Use these to fix that "wall of text" look */

.shopify-buy__product-description {
    font-family: 'Courier New', monospace !important;
    color: var(--terminal-grey) !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    text-transform: none !important; /* Makes specs easier to read */
    border-left: 3px solid var(--industrial-orange);
    padding-left: 15px !important;
    margin-top: 20px !important;
}

.shopify-buy__option-select__label {
    color: var(--industrial-orange) !important;
}

/* This styles the 'Add to Cart' button */
.shopify-buy__btn {
    background-color: var(--industrial-orange) !important;
    color: #000 !important;
    font-weight: bold !important;
    border-radius: 0px !important; /* NO rounded corners in the Lab */
    padding: 15px 30px !important;
    transition: background 0.3s ease;
}

.shopify-buy__btn:hover {
    background-color: #e03d00 !important;
    cursor: crosshair; /* Adds to the technical vibe */
}

/* --- GLOBAL UTILITIES --- */

.red-alert {
    color: #ff0000;
    text-decoration: blink; /* Classic old-school terminal effect */
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--industrial-orange);
}
