
/**
 * SailPlay Frontend Styles
 */

/* Promo Code Container */
.sailplay-promocode-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.sailplay-promocode-input-wrapper {
    display: flex;
    margin-bottom: 10px;
}

.sailplay-promocode-input-wrapper input {
    flex: 1;
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sailplay-promocode-status {
    font-size: 14px;
    padding: 5px 0;
}

.sailplay-promocode-status.valid-code {
    color: #3c763d;
}

.sailplay-promocode-status.error-code {
    color: #a94442;
}

/* Points Display */
.sailplay-points-display {
    margin: 15px 0;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sailplay-points-value {
    font-weight: bold;
    font-size: 18px;
    color: #2e4453;
}

/* Points Input */
.sailplay-points-input {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.sailplay-points-input-wrapper {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.sailplay-points-input-wrapper input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 10px;
}

.sailplay-points-max {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

.sailplay-points-max-value {
    font-weight: bold;
}

/* Cart Discount Display */
.sailplay-discount-info {
    margin-top: 5px;
    font-size: 0.9em;
}

.sailplay-discount-amount {
    color: #3c763d;
    font-weight: bold;
    display: block;
}

.sailplay-discount-reason {
    color: #777;
    font-style: italic;
    font-size: 0.9em;
    display: block;
    margin-top: 3px;
}

/* Points earned in cart */
.sailplay-points-earned th, 
.sailplay-points-earned td {
    padding-top: 15px !important;
}

.sailplay-points-earned .sailplay-points {
    font-weight: bold;
    color: #3c763d;
}

/* Applied promo code */
.sailplay-applied-promocode {
    margin: 20px 0;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.sailplay-applied-promocode span {
    font-weight: bold;
    color: #3c763d;
}

.sailplay-applied-promocode a {
    margin-left: 10px;
    color: #a94442;
    font-size: 0.9em;
}

/* Button loading state */
button.loading {
    opacity: 0.7;
    cursor: wait;
    position: relative;
    padding-right: 30px !important;
}

button.loading::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    background: url('../images/loader.svg') center center no-repeat;
    background-size: 16px 16px;
}