/* Wame Blood Merchandise - 60-30-10 Design */

:root {
    --white: #ffffff;
    --black: #121212;
    --red: #d90429;
    --gray: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.merch-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('1000242692.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.hero-container p {
    color: #eee;
}

.merch-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

/* Product Cards */
.merch-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 900;
}

.section-title span {
    color: var(--red);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border: 1px solid #efefef;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 350px;
    background: #eee;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--black);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
}

.price {
    color: var(--red);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 5px 0 15px 0;
}

.desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    height: 40px;
    overflow: hidden;
}

/* Form Styles */
.order-section {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-steps {
    list-style: none;
    margin-top: 30px;
}

.order-steps li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-steps span {
    background: var(--red);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.order-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    color: var(--black);
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    font-size: 1rem;
    border-radius: 4px;
}

input:focus {
    outline: none;
    border-color: var(--red);
}

.btn {
    width: 100%;
    padding: 15px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-red {
    background: var(--red);
    color: white;
}

.btn-red:hover {
    background: var(--black);
}

.btn-submit {
    background: var(--black);
    color: white;
}

.btn-submit:hover {
    background: var(--red);
}

.status-box {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .order-wrapper {
        grid-template-columns: 1fr;
    }

    .order-text {
        text-align: center;
    }

    .order-steps li {
        justify-content: center;
    }
}