/* Cart Section Styles */
.limited-availability-notice {
    font-weight: bold;
    color: #ff0000;
    text-align: center;
    font-size: 0.95rem;
    margin: -18px 0 12px 0;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    animation: pulseFade 2s infinite alternate;
}

@keyframes pulseFade {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}
.claim-shirt-btn {
    background-color: #0066c0;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 16px 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.3s;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 5px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-shirt-btn:hover {
    background-color: #004b8c;
    transform: scale(1.02);
}

/* Sold out button styling */
.claim-shirt-btn.sold-out,
.power-btn.sold-out {
    background-color: #777777 !important;
    color: #dddddd !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.8 !important;
    border: 1px solid #999999 !important;
    animation: none !important;
    background-image: none !important;
}

.claim-shirt-btn.sold-out:hover,
.power-btn.sold-out:hover {
    background-color: #777777 !important;
    transform: none !important;
    box-shadow: none !important;
}

.sold-out-text {
    color: #FF5500;
    font-weight: bold;
    font-size: 1rem;
    animation: sold-out-pulse 1.5s infinite alternate;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block;
    width: 100%;
    text-align: center;
}

@keyframes sold-out-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Notify Button Styles */
.notify-button {
    display: block;
    width: 100%;
    margin: 15px auto 0;
    padding: 10px 15px;
    background: linear-gradient(135deg, #4A90E2, #6C4AE2);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(108, 74, 226, 0.3);
    transition: all 0.3s ease;
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 74, 226, 0.5);
    background: linear-gradient(135deg, #4A90E2, #7c5bf3);
}

.notify-email-container {
    display: flex;
    flex-direction: column;
    margin: 15px auto 0;
    width: 100%;
    gap: 10px;
}

.notify-email {
    padding: 10px;
    border: 2px solid rgba(108, 74, 226, 0.5);
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
}

.notify-email:focus {
    outline: none;
    border-color: #6C4AE2;
    box-shadow: 0 0 10px rgba(108, 74, 226, 0.4);
}

.notify-submit {
    padding: 10px 15px;
    background: linear-gradient(135deg, #4A90E2, #6C4AE2);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(108, 74, 226, 0.3);
    transition: all 0.3s ease;
}

.notify-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 74, 226, 0.5);
}

.notification-success {
    padding: 15px;
    background-color: rgba(39, 174, 96, 0.1);
    border: 2px solid #27ae60;
    border-radius: 4px;
    color: #27ae60;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 0.5s ease;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.cart-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.quantity-label {
    font-weight: bold;
    font-size: 16px;
    min-width: 40px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

#quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-size: 16px;
}

.add-to-cart-btn {
    background-color: #0066c0;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.pulsing-buy-button {
    animation: pulse-attention 2s infinite;
    box-shadow: 0 0 0 0 rgba(0, 102, 192, 0.7);
    background-color: #ff5722; /* More attention-grabbing orange color */
}

@keyframes pulse-attention {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.add-to-cart-btn:hover {
    background-color: #004b8c;
}

.checkout-btn {
    background-color: #f0c14b;
    color: #111;
    border: 1px solid #a88734;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.checkout-btn:hover {
    background-color: #ddb347;
}