/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    background-attachment: fixed;
    font-size: 12px;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(90deg, #2d1b69 0%, #4a1a4a 50%, #2d1b69 100%);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
    border-bottom: 2px solid #8a2be2;
}

footer{
    text-align: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
    letter-spacing: 1px;
    margin: 0;
    padding: 1rem 0;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 2px solid #4a1a4a;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #8a2be2;
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.nav-link.active {
    color: #8a2be2;
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

/* Main Layout */
.shop-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Items Section */
.items-section h2 {
    color: #8a2be2;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.category {
    margin-bottom: 3rem;
}

.category h3 {
    color: #a855f7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #8a2be2;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Item Cards */
.item-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a1a2a 100%);
    border: 2px solid #4a1a4a;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.item-card:hover::before {
    left: 100%;
}

.item-card:hover {
    transform: translateY(-5px);
    border-color: #8a2be2;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.item-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
    font-weight: bold;
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

.item-card h4 {
    color: #e0e0e0;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.base-price {
    color: #8a2be2;
    font-size: 0.7rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.upgrade-options {
    margin: 1rem 0;
    text-align: left;
}

.enchant-options {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid #4a1a4a;
}

/* Consolidated option group styling to reduce class proliferation */
.option-group {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(74, 26, 74, 0.3);
    border-radius: 5px;
    border: 1px solid #4a1a4a;
}

.option-group label {
    font-size: 0.5rem;
    margin: 0.25rem 0;
}

.upgrade-options label {
    display: block;
    margin: 0.5rem 0;
    color: #c0c0c0;
    font-size: 0.6rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.upgrade-options label:hover {
    color: #8a2be2;
}

.upgrade-options input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: #8a2be2;
    transform: scale(1.2);
}

.add-to-cart {
    background: linear-gradient(45deg, #8a2be2, #a855f7);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-family: 'Press Start 2P', monospace;
    font-weight: normal;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, #a855f7, #8a2be2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Shopping Cart */
.cart-section {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a1a2a 100%);
    border: 2px solid #4a1a4a;
    border-radius: 15px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.cart-section h3 {
    color: #8a2be2;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.cart-items {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

.cart-item {
    background: linear-gradient(145deg, #2a1a2a 0%, #3a1a3a 100%);
    border: 1px solid #4a1a4a;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h5 {
    color: #e0e0e0;
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    color: #8a2be2;
    font-size: 0.9rem;
}

.cart-item-price {
    color: #a855f7;
    font-weight: 700;
}

.remove-item {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.remove-item:hover {
    background: #b91c1c;
}

.cart-total {
    border-top: 2px solid #4a1a4a;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.cart-total h4 {
    color: #8a2be2;
    font-size: 1.3rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Order Form */
.order-form h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    text-align: center;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: #2a1a2a;
    border: 1px solid #4a1a4a;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Orbitron', monospace;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: #666;
}

.place-order-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.place-order-btn:hover {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.place-order-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .cart-section {
        position: static;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #4a1a4a;
    border-radius: 50%;
    border-top-color: #8a2be2;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.message.error {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid #dc2626;
    color: #dc2626;
}

/* Utility Items */
.no-enchants {
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 1rem 0;
    font-size: 0.6rem;
}

/* Payment Section */
.payment-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(74, 26, 74, 0.3);
    border-radius: 8px;
    border: 1px solid #4a1a4a;
}

.payment-section h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-info {
    margin-bottom: 1rem;
}

.payment-info p {
    margin: 0.5rem 0;
    font-size: 0.6rem;
    color: #c0c0c0;
}

.payment-info code {
    background: #2a1a2a;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    color: #8a2be2;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
}

.file-upload-label {
    display: block;
    background: linear-gradient(45deg, #8a2be2, #a855f7);
    color: white;
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.6rem;
    margin-top: 0.5rem;
}

.file-upload-label:hover {
    background: linear-gradient(45deg, #a855f7, #8a2be2);
    transform: scale(1.02);
}

#payment-proof {
    display: none;
}

/* Payment Options Styles */
.payment-options {
    margin: 1rem 0;
    padding: 1rem;
}

.payment-option {
    margin: 0.5rem 0;
    padding: 0.5rem;
}

.payment-option p {
    margin: 0 0 0.5rem 0;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #e0e0e0;
}

.payment-option code {
    background: rgba(138, 43, 226, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    color: #a855f7;
}

.payment-methods {
    margin: 0.1rem 0;
    padding: 0.1rem;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.1rem;
}

.payment-methods p {
    margin: 0.3rem 0;
    font-size: 0.7rem;
    line-height: 1.4;
}

.payment-methods code {
    background: rgba(138, 43, 226, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    color: #a855f7;
}

/* Clickable Command Styling */
.clickable-command {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    display: block;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    background: linear-gradient(145deg, rgba(138, 43, 226, 0.1), rgba(168, 85, 247, 0.05));
    font-weight: bold;
    text-decoration: none;
    margin-top: 0.5rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    color: #e0e0e0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.1);
}

.clickable-command:hover {
    background: linear-gradient(145deg, rgba(138, 43, 226, 0.2), rgba(168, 85, 247, 0.1)) !important;
    color: #8a2be2 !important;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
    border-color: #8a2be2;
}

.clickable-command:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.2);
}

.command-text {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    color: #8a2be2;
    text-shadow: 0 0 5px rgba(138, 43, 226, 0.5);
}

.copy-indicator {
    display: block;
    font-size: 0.5rem;
    opacity: 0.7;
    color: #a855f7;
    transition: opacity 0.3s ease;
}

.clickable-command:hover .copy-indicator {
    opacity: 1;
    color: #8a2be2;
}

/* Radio button styling */
input[type="radio"] {
    accent-color: #8a2be2;
    transform: scale(1.2);
    margin-right: 0.5rem;
}

/* Radio button groups */
.enchant-radio {
    cursor: pointer;
    transition: color 0.3s ease;
}

.enchant-radio:hover {
    color: #8a2be2;
}

/* Coupon Section */
.coupon-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(74, 26, 74, 0.3);
    border-radius: 8px;
    border: 1px solid #4a1a4a;
}

.coupon-section h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    text-align: center;
}

.coupon-section input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: #2a1a2a;
    border: 1px solid #4a1a4a;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    transition: border-color 0.3s ease;
}

.coupon-section input:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.apply-coupon-btn {
    width: 100%;
    background: linear-gradient(45deg, #8a2be2, #a855f7);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-coupon-btn:hover {
    background: linear-gradient(45deg, #a855f7, #8a2be2);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.coupon-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
}

.coupon-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.coupon-message.error {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid #dc2626;
    color: #dc2626;
}

/* Coupon items in cart */
.coupon-item {
    background: linear-gradient(145deg, #2a1a2a 0%, #3a1a3a 100%);
    border: 1px solid #22c55e;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-item .cart-item-price {
    color: #22c55e;
    font-weight: 700;
}

/* Repair Page Styles */
.repair-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Repair Items Section */
.repair-items-section h2 {
    color: #8a2be2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.repair-description {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Repair Form Section */
.repair-form-section {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a1a2a 100%);
    border: 2px solid #4a1a4a;
    border-radius: 15px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.repair-form-section h3 {
    color: #8a2be2;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(74, 26, 74, 0.2);
    border-radius: 10px;
    border: 1px solid #4a1a4a;
}

.form-section h4 {
    color: #a855f7;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section input[type="text"],
.form-section input[type="number"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: #2a1a2a;
    border: 1px solid #4a1a4a;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    transition: all 0.3s ease;
}

.form-section input[type="text"]:focus,
.form-section input[type="number"]:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
    transform: scale(1.02);
}

.form-section input::placeholder {
    color: #666;
}

/* Repair Items Grid */
.repair-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.repair-item-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a1a2a 100%);
    border: 2px solid #4a1a4a;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.repair-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.repair-item-card:hover::before {
    left: 100%;
}

.repair-item-card:hover {
    transform: translateY(-5px);
    border-color: #8a2be2;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.repair-item-card .item-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
    font-weight: bold;
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

.repair-item-card h5 {
    color: #e0e0e0;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.repair-item-card .item-price {
    color: #8a2be2;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quantity-selector label {
    color: #c0c0c0;
    font-size: 0.6rem;
}

.quantity-input {
    width: 60px !important;
    margin: 0 !important;
    text-align: center;
}

/* Instructions */
.instructions-section {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid #8a2be2;
}

.instructions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(74, 26, 74, 0.3);
    border-radius: 8px;
    border: 1px solid #4a1a4a;
}

.step-number {
    background: linear-gradient(45deg, #8a2be2, #a855f7);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.instruction-step p {
    color: #e0e0e0;
    font-size: 0.6rem;
    margin: 0;
    line-height: 1.4;
}

.instruction-step code {
    background: #2a1a2a;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    color: #8a2be2;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
}

.instruction-step strong {
    color: #8a2be2;
}

/* File Upload */
.file-upload-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.file-upload-item {
    text-align: center;
}

.file-upload-item input[type="file"] {
    display: none;
}

.file-upload-label {
    display: block;
    background: linear-gradient(45deg, #8a2be2, #a855f7);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', monospace;
}

.file-upload-label:hover {
    background: linear-gradient(45deg, #a855f7, #8a2be2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Order Summary */
.order-summary {
    background: rgba(74, 26, 74, 0.3);
    border: 1px solid #4a1a4a;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 100px;
}

.empty-summary {
    color: #666;
    text-align: center;
    font-style: italic;
    margin: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #4a1a4a;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-name {
    color: #e0e0e0;
    font-size: 0.7rem;
}

.summary-item-details {
    color: #8a2be2;
    font-size: 0.6rem;
}

.summary-item-price {
    color: #a855f7;
    font-weight: bold;
    font-size: 0.7rem;
}

.total-section {
    text-align: center;
    padding: 1rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    border: 1px solid #8a2be2;
}

.total-section h5 {
    color: #8a2be2;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Submit Button */
.submit-repair-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-family: 'Press Start 2P', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
}

.submit-repair-btn:hover {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.submit-repair-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design for Repair Page */
@media (max-width: 768px) {
    .repair-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .repair-items-grid {
        grid-template-columns: 1fr;
    }
    
    .file-upload-group {
        grid-template-columns: 1fr;
    }
    
    .instruction-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .repair-form-section {
        position: static;
    }
    
    .payment-options-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}