/* ==========================================================================
   GUNAAR, BEIDZ! — MERCHANDISE PAGE STYLES
   ========================================================================== */

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    margin: 0;
    padding: 0;
}

.page-content-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Navbar */
.header-merch-page {
    background-color: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #2e353e;
    position: relative;
    width: 100%;
    z-index: 10;
}

.header-manifest-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #a0a0a0;
    text-transform: uppercase;
}

.nav-back-item {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.nav-back-item:hover {
    color: #757575;
}

/* ==========================================
   MERCH LAYOUT
   ========================================== */

.merch-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
    box-sizing: border-box;
    flex-grow: 1;
}

/* Left Image Box */
.merch-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-card {
    position: relative;

    padding: 2rem;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag-drop {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #8a929a;
    letter-spacing: 0.1em;
}

.product-image {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.5));
}

/* Right Details Box */
.merch-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info-box {
    max-width: 500px;
    width: 100%;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.product-description {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

/* Size Selection */
.size-section {
    margin-bottom: 2rem;
}

.size-label {
    display: block;
    font-size: 0.75rem;
    color: #8a929a;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.size-options {
    display: flex;
    gap: 0.75rem;
}

.size-btn {
    background-color: transparent;
    border: 1px solid #383e46;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-btn:hover {
    border-color: #ffffff;
}

.size-btn.active {
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    border-color: #ffffff;
}

.merch-divider {
    height: 1px;
    background-color: #2e353e;
    margin: 1.5rem 0;
    width: 100%;
}

/* Pricing & Add to Cart CTA */
.purchase-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
}

.add-to-cart-btn {
    background-color: #833b3b; /* Terminal Green CTA from reference image */
    color: #000000;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.add-to-cart-btn:hover {
    background-color: #421e1e;
    transform: translateY(-2px);
}

.shipping-info {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #666666;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.footer {
    width: 100%;
    background-color: #000000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1e23;
    box-sizing: border-box;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons a {
    color: #ffffff;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #8a929a;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .merch-container {
        flex-direction: column;
        margin: 2rem auto;
        gap: 2.5rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.75rem;
    }
}