/* Discount-specific overrides and additions */
.discount-card {
    cursor: default;
}

.discount-card {
    flex-direction: row !important;
}
.discount-card {
    background: #ffffff !important;
}
.discount-card .card-title,
.discount-card .discount-title {
    color: #2f2f2f !important;
}

.discount-card .card-description,
.discount-card .discount-description {
    color: #6b7280 !important;
} 

.discount-card .discount-code {
    color: #2f2f2f !important;
}

.discount-code-section {
    margin: 20px 0px 10px 0px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: right;
}

.discount-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1px dashed #c0c7d2;
    border-radius: 6px;
    padding: 6px 9px;
    cursor: default;
}

.discount-code {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2f2f2f;
    letter-spacing: 1px;
   /* font-family: "Roboto Mono", monospace; */
}

.discount-copy-btn {
    background: #2a2a2a;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    font-family: inherit;
}

.discount-copy-btn.copied {
    background: #4e9425;
}

.discount-code-section {
    margin: 20px 0px 10px 0px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: right;
    flex-wrap: wrap;
}

.discount-code-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    width: 100%;
    text-align: right;
}

.discount-shop-link {
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 1px dashed #2a2a2a;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    order: 3;
    text-align: center;
    margin-top: 10px;
    margin: 10px 10px 5px 10px;
}
.discount-shop-link:hover {
    color: #7f7f7f;
    border-bottom-color: #acacac;
}

.discount-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    gap: 10px;
}

.discount-copy-count {
    display: flex;
    align-items: center;
    gap: 5px;
	font-size: 11px;
}

.discount-copy-count::before {
    content: "📋";
    font-size: 1rem;
}

.discount-days {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ef4444;
    font-weight: 500;
	font-size: 11px;
}

.discount-days::before {
    content: "⏰";
    font-size: 1rem;
}

@media (max-width: 600px) {
    .discount-code {
        font-size: 0.8rem;
    }
}
.button-main.card-button.discount-card[href] {
    cursor: pointer;
}