/* ============ ORDER PAGE STYLES ============ */
/* STIFF BEAST™ Order Page - WordPress Block Theme */

:root {
    --primary-black: #000000;
    --primary-red: #D40000;
    --primary-gold: #FFD700;
    --primary-white: #FFFFFF;
    --primary-orange: #FF4500;
}

/* ============ PAGE BACKGROUND ============ */
.order-page {
    background-color: var(--primary-black);
    background-image: 
        radial-gradient(ellipse 800px 700px at 5% 70%, rgba(212, 0, 0, 0.35) 0%, rgba(212, 0, 0, 0.15) 25%, transparent 65%),
        radial-gradient(ellipse 900px 600px at 95% 15%, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.08) 30%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 95% 90%, rgba(255, 69, 0, 0.2) 0%, rgba(255, 69, 0, 0.08) 35%, transparent 70%),
        radial-gradient(ellipse 700px 500px at 0% 0%, rgba(255, 215, 0, 0.12) 0%, rgba(212, 0, 0, 0.1) 30%, transparent 65%),
        radial-gradient(ellipse 600px 800px at 50% 50%, rgba(255, 69, 0, 0.1) 0%, transparent 55%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* ============ BREADCRUMB NAVIGATION ============ */
.breadcrumb-nav {
    padding: 15px 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.breadcrumb-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-nav li {
    color: #aaaaaa;
    font-size: 14px;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #aaaaaa;
}

.breadcrumb-nav a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #FFD700;
}

.breadcrumb-nav li:last-child {
    color: #FFD700;
    font-weight: 700;
}

/* ============ PRODUCT SECTION ============ */
.product-section {
    padding: 60px 0;
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
}

.product-image-area {
    background: transparent;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    transition: all 0.3s ease;
}

.product-image-area:hover {
    transform: translateY(-5px);
}

.product-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
}

.product-info {
    padding-left: 40px;
    text-align: left;
}

.product-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #D40000;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(212, 0, 0, 0.3);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: #D40000;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(212, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.product-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.meta-item {
    display: flex;
    gap: 8px;
}

.meta-label {
    color: #aaaaaa;
    font-weight: 500;
}

.meta-value {
    color: #FFD700;
    font-weight: 700;
}

.availability.in-stock {
    color: #28a745;
}

.product-price {
    font-size: 48px;
    font-weight: 900;
    color: #D40000;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* ============ SELECTION SECTION ============ */
.selection-section {
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
}

.selection-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: #cccccc;
    letter-spacing: 0.5px;
}

.count-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.count-btn {
    flex: 0 1 auto;
    min-width: 180px;
    padding: 14px 20px;
    border: 2px solid #666666;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: #999999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.count-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.count-btn.active {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-color: #FFD700;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ============ SPECIAL OFFER ============ */
.special-offer {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 2px solid #FFD700;
    padding: 18px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.special-offer strong {
    color: #FFD700;
    font-weight: 900;
}


/* ============ PURCHASE SECTION ============ */
.purchase-section-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.purchase-left {
    flex: 0 0 auto;
}

.purchase-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ============ SUBTOTAL ============ */
.subtotal {
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subtotal-label {
    color: #aaaaaa;
}

.subtotal-prices {
    display: flex;
    align-items: center;
    gap: 12px;
}

.subtotal-original-price {
    font-size: 18px;
    font-weight: 600;
    color: #666666;
    text-decoration: line-through;
}

.subtotal-current-price {
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
}

/* ============ QUANTITY CONTROLS ============ */
.quantity-section {
    margin-bottom: 0;
}

.quantity-label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #FFD700;
    background: #FFD700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: 900;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.qty-btn:hover {
    background: #FFA500;
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.qty-input {
    width: 70px;
    height: 45px;
    text-align: center;
    border: 2px solid #FFD700;
    font-size: 18px;
    font-weight: 700;
    background: rgba(20, 20, 20, 0.8);
    color: #FFD700;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
    appearance: none;
}

.qty-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    background: rgba(30, 30, 30, 0.9);
}

/* ============ BUTTONS ============ */
.btn-add-cart {
    width: 100%;
    padding: 16px 35px;
    background: #FFD700;
    color: #000;
    border: 2px solid #FFD700;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.btn-add-cart:hover {
    background: #FFA500;
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-buy-now {
    width: 100%;
    padding: 16px 35px;
    background: #D40000;
    color: #fff;
    border: 2px solid #D40000;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(212, 0, 0, 0.3);
    letter-spacing: 1px;
}

.btn-buy-now:hover {
    background: #FF4500;
    border-color: #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 0, 0, 0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .purchase-section-wrapper {
        flex-direction: column;
    }

    .purchase-right {
        width: 100%;
    }
    
    .product-section {
        padding: 40px 0;
    }
    
    .product-image-area {
        padding: 30px;
        min-height: 300px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-price {
        font-size: 36px;
    }
    
    .count-btn {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 32px;
    }
    
    .breadcrumb-nav ul {
        flex-wrap: wrap;
    }
}
