/* ShoppingCart.css - Final: shipping input fields fixed for all screen sizes - no white background, orange text always */

.content {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    max-width: 1200px;
    padding-top: 12%;
    text-align: center;
    box-sizing: border-box;
}

.cart-container {
    margin: 40px auto;
    max-width: 700px;
}

#product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #ff9900;
    border-radius: 12px;
    gap: 30px;
    flex-wrap: wrap;
}

.product-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid #ff9900;
    background: #000;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.5);
    flex-shrink: 0;
}

.product-info {
    flex: 1;
    text-align: left;
}

.product-info h5 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.product-info p {
    margin: 8px 0;
    font-size: 20px;
    opacity: 0.9;
}

/* Group quantity and remove vertically on the right */
.right-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    flex-shrink: 0;
}

.quantity-adjuster {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

.quantity-adjuster button {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    color: #ff9900;
    border: 2px solid #ff9900;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.quantity-adjuster button:hover {
    background: #ff9900;
    color: black;
}

.remove-item {
    background: none;
    border: none;
    color: #ff6600;
    font-size: 18px;
    cursor: pointer;
    text-decoration: underline;
}

.remove-item:hover {
    color: #ff9900;
}

/* Rest of styles unchanged */
.shipping-options,
.discount-section,
.summary,
.shipping-info {
    margin: 60px auto;
    max-width: 800px;
}

.shipping-options h2,
.discount-section h2,
.shipping-info h2 {
    margin-bottom: 30px;
}

.shipping-options label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    font-size: 26px;
}

.shipping-options input[type="radio"] {
    width: 28px;
    height: 28px;
    accent-color: #ff9900;
}

.discount-section input[type="text"] {
    width: 70%;
    max-width: 500px;
    padding: 14px;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff9900;
    border-radius: 10px;
    color: #ff9900;
    text-align: center;
}

.discount-section input:focus {
    outline: none;
    border-color: #ffcc66;
    background: rgba(0, 0, 0, 0.8);
}

#apply-discount-button {
    margin-top: 20px;
    padding: 14px 40px;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.7);
    color: #ff9900;
    border: 3px solid #ff9900;
    border-radius: 12px;
    cursor: pointer;
}

#apply-discount-button:hover {
    background: #ff9900;
    color: black;
}

#discount-message {
    margin-top: 20px;
    min-height: 30px;
}

.summary {
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #ff9900;
    border-radius: 16px;
    font-size: 22px;
    max-width: 600px;
    margin: 60px auto;
}

.clear-cart-button {
    margin: 60px auto;
    padding: 16px 40px;
    font-size: 26px;
    background: rgba(0, 0, 0, 0.7);
    color: #ff9900;
    border: 3px solid #ff9900;
    border-radius: 12px;
    cursor: pointer;
}

.clear-cart-button:hover {
    background: #ff9900;
    color: black;
}

/* Shipping form inputs - fixed white background and text color for all states */
.shipping-info input {
    width: 80%;
    max-width: 600px;
    margin: 15px auto;
    padding: 14px;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid #ff9900;
    border-radius: 10px;
    color: #ff9900 !important;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.3);
    -webkit-text-fill-color: #ff9900 !important; /* Safari fix for autofill */
}

.shipping-info input:focus {
    outline: none;
    border-color: #ffcc66;
    background: rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.6);
}

.shipping-info input:-webkit-autofill,
.shipping-info input:-webkit-autofill:hover,
.shipping-info input:-webkit-autofill:focus,
.shipping-info input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.8) inset !important;
    -webkit-text-fill-color: #ff9900 !important;
    caret-color: #ff9900 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.shipping-info input::placeholder {
    color: rgba(255, 153, 0, 0.6);
}

.payment-options-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    flex-wrap: nowrap;
}

.payment-option-container {
    margin: 20px 0;
}

.payment-option {
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #ff9900;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 220px;
}

.payment-option:hover {
    background: rgba(255, 153, 0, 0.2);
    box-shadow: 0 0 40px #ff9900;
    transform: translateY(-5px);
}

.payment-option img {
    max-width: 120px;
    margin-bottom: 15px;
}

.payment-option-text {
    font-size: 24px;
    font-weight: bold;
}

/* Custom glow on TEXT only */
#bitcoin-button .payment-option-text {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.5);
}

#bitcoin-button:hover .payment-option-text {
    text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.7);
}

#lightning-button .payment-option-text {
    color: #00bfff;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.8), 0 0 30px rgba(0, 191, 255, 0.5);
}

#lightning-button:hover .payment-option-text {
    text-shadow: 0 0 20px rgba(0, 191, 255, 1), 0 0 40px rgba(0, 191, 255, 0.7);
}

#fiat-button .payment-option-text {
    color: #8b4513;
    text-shadow: 0 0 15px rgba(139, 195, 74, 0.8), 0 0 30px rgba(139, 195, 74, 0.5);
}

#fiat-button:hover .payment-option-text {
    text-shadow: 0 0 20px rgba(139, 195, 74, 1), 0 0 40px rgba(139, 195, 74, 0.7);
}

/* ==================== MEDIA QUERIES (lowest → highest) ==================== */

@media (max-width: 425px) {
    .content {
        padding-top: 18%;
    }

    .product-item img {
        width: 100px;
        height: 100px;
    }

    .product-info h5 {
        font-size: 24px;
    }

    .product-info p {
        font-size: 20px;
    }

    .summary {
        padding: 8px;
        font-size: 18px;
        max-width: 500px;
    }

    .payment-options-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .payment-option {
        width: 160px;
        padding: 15px;
    }

    .payment-option img {
        max-width: 90px;
        margin-bottom: 10px;
    }

    .payment-option-text {
        font-size: 18px;
    }

    .product-item {
        padding: 15px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .content {
        padding-top: 22%;
        width: 85%;
    }

    .product-item {
        padding: 15px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .product-info {
        text-align: left;
    }

    .payment-options-container {
        gap: 30px;
        flex-wrap: wrap;
    }

    .payment-option {
        width: 160px;
        padding: 15px;
    }

    .payment-option img {
        max-width: 90px;
        margin-bottom: 10px;
    }

    .payment-option-text {
        font-size: 18px;
    }

    .summary {
        padding: 8px;
        font-size: 20px;
        max-width: 550px;
    }

    .cart-container {
        max-width: 1000px;
    }

    .product-item {
        padding: 20px;
        gap: 30px;
    }

    .product-item img {
        width: 120px;
        height: 120px;
    }

    .product-info h5 {
        font-size: 28px;
    }

    .product-info p {
        font-size: 22px;
    }

    .quantity-adjuster {
        font-size: 24px;
    }

    .quantity-adjuster button {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .remove-item {
        font-size: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .content {
        padding-top: 17%;
        width: 80%;
    }

    .summary {
        padding: 10px;
        font-size: 22px;
        max-width: 600px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .content {
        padding-top: 16%;
    }

    .summary {
        padding: 10px;
        font-size: 22px;
        max-width: 600px;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .content {
        padding-top: 14%;
    }

    .summary {
        padding: 10px;
        font-size: 22px;
        max-width: 600px;
    }
}

@media (min-width: 1921px) {
    .content {
        padding-top: 12%;
    }

    .summary {
        padding: 10px;
        font-size: 22px;
        max-width: 600px;
    }
}