/* Wine Quiz - Modern Style */

.card-image img {
    width: 100px !important;
}

.wine-selection-image img {
    width: 100px !important;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Oregano&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base styles */
.gpd-style {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    padding: 20px;
    box-sizing: border-box;
}

/* Hide the original progress bar */
.quiz-progress {
    display: none;
}

/* Page layout */
.quiz-step {
    display: none;
    padding: 50px 20px;
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Typography */
.quiz-step h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

/* Nice to meet you message with Oregano font */
.quiz-step[data-step="2"] h2 {
    font-family: 'Oregano', cursive;
    font-size: 42px;
    margin-bottom: 20px;
}

.quiz-step h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

/* Name input styling */
.name-input-container {
    text-align: center;
    margin: 40px auto;
    max-width: 400px;
}

.name-input-container input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.name-input-container input:focus {
    border-color: #a68c46;
}

/* Modern Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.navigation-buttons.centre-button,
.navigation-buttons.center-button {
    justify-content: center;
}

button.prev-step,
button.next-step,
button.submit-quiz {
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: 130px;
}

button.prev-step {
    background-color: #f0f0f0;
    color: #333;
}

button.next-step,
button.submit-quiz,
.continue-button {
    background-color: #a68c46;
    color: #fff;
}

button.prev-step:hover {
    background-color: #e0e0e0;
}

button.next-step:hover,
button.submit-quiz:hover,
.continue-button:hover {
    background-color: #8d7839;
}

/* Timeline Progress Indicator - FIXED to be in the flow, not fixed at bottom */
.questions-timeline {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    padding: 0;
    max-width: 800px;
    position: relative;
    background-color: transparent;
    box-shadow: none;
    z-index: 1;
}

/* Remove the bottom padding since we no longer have a fixed timeline */
#wineQuizForm {
    padding-bottom: 20px;
}

.questions-timeline::before {
    content: '';
    position: absolute;
    top: 7px; /* Changed from 50% to align with the middle of the dots */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
    /* Remove the transform: translateY(-50%); which was moving the line */
}

.timeline-point {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background-color: #a68c46;
}

.timeline-dot.completed {
    background-color: #a68c46;
}

.timeline-label {
    font-size: 14px;
    color: #333; /* Changed from #999 to #333 (black) */
    transition: color 0.3s ease;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
}

.timeline-label.active {
    font-weight: 500;
    /* Color is already #333 from the rule above */
}

/* Experience level cards (Question 1) */
.option-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    max-width: 1000px;
}

.option-card {
    position: relative;
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.option-card:hover {
    border-color: #a68c46;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.option-card.active {
    border-color: #a68c46;
    background-color: rgba(166, 140, 70, 0.05);
}

.option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Wine experience cards */
.card-content h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 600;
}

.card-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Cuisine selection (Question 2) */
.horizontal-cards .option-card {
    display: flex;
    padding: 12px 20px;
    max-width: none;
    flex: 0 0 calc(50% - 10px);
    border-radius: 8px;
    align-items: center;
    text-align: left;
}

.horizontal-cards .card-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.card-image-left {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-image-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-text {
    flex: 1;
}

.horizontal-cards .card-content h3 {
    margin: 0;
    font-size: 16px;
}

/* Adventurousness cards (Question 3) */
.quiz-step[data-step="4"] .option-card {
    padding: 30px 20px;
    text-align: center;
}

.quiz-step[data-step="4"] .card-content h3 {
    margin-bottom: 10px;
}

/* Budget selection (Question 4) */
.quiz-step[data-step="6"] .option-card {
    padding: 20px;
    flex: 0 0 calc(33.33% - 20px);
    max-width: 250px;
}

.quiz-step[data-step="6"] .card-content h3 {
    margin: 0;
}

/* Bottle selection (Question 5) */
.bottle-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.wine-selection-card {
    position: relative;
    width: calc(33.33% - 20px);
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.wine-selection-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.quantity-selector button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #a68c46;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.quantity-selector button:hover {
    background-color: #8d7839;
}

.quantity-selector button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-selector input {
    width: 40px;
    height: 32px;
    text-align: center;
    border: none;
    font-size: 16px;
    margin: 0 10px;
}

#bottle-counter {
    text-align: center !important;
    margin: 10px 0 30px;
    font-weight: 500;
}

/* Free gift selection (Question 6) */
.gift-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px auto;
    max-width: 900px;
}

.gift-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.gift-option:hover {
    border-color: #a68c46;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gift-option.active {
    border-color: #a68c46;
    background-color: rgba(166, 140, 70, 0.05);
}

.gift-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.gift-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Congratulations screens */
.loyalty-notification-screen {
    text-align: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 30px;
}

.loyalty-trophy {
    margin: 0 auto 30px;
    width: 120px;
    height: 120px;
}

.loyalty-trophy img {
    width: 100%;
    height: 100%;
}

.loyalty-notification-screen h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.loyalty-notification-screen p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.loyalty-notification-screen .continue-button {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background-color: #a68c46;
    color: #fff;
    font-size: 16px;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

/* Final results page */
.wine-recommendations {
    animation: fadeIn 0.5s ease;
}

.wine-recommendations h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.recommendations-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.wine-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

.wine-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
}

.wine-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.wine-image {
    height: 300px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.wine-details {
    padding: 15px;
    text-align: center;
}

.wine-details h3 {
    font-size: 16px;
    margin: 0 0 10px;
    height: 50px;
}

.wine-price {
    font-weight: 600;
    margin-bottom: 15px;
    color: #a68c46;
}

.wine-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.view-wine {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: #a68c46;
    color: #fff;
    width: 100%;
}

.view-wine:hover {
    background-color: #8d7839;
}

/* Order summary */
.order-summary {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
}

.order-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.order-table {
    margin-bottom: 20px;
}

.order-table table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th,
.order-table td {
    padding: 8px 4px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.order-table .price-column {
    text-align: right;
    white-space: nowrap;
}

.order-table .subtotal-row {
    border-top: 2px solid #ddd;
}

.order-table .discount-row {
    color: #e74c3c;
}

.order-table .total-row {
    font-size: 18px;
    font-weight: 700;
}

.discount-label {
    display: inline-block;
    padding: 12px 20px;
    background-color: #435980;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 24px;
}

.checkout-actions {
    margin: 20px 0;
    text-align: center;
}

.add-to-cart-button {
    width: 100%;
    padding: 14px 0;
    border-radius: 50px;
    background-color: #a68c46;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-button:hover {
    background-color: #8d7839;
}

/* Points display */
.points-earned {
    text-align: center;
    margin: 20px 0;
    padding: 12px;
    font-weight: 500;
    color: #a68c46;
}

/* Error message */
.error-message {
    color: #e74c3c;
    text-align: center;
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
    font-weight: 500;
}

/* UPDATED: Enhanced subscription popup styles with clean gift display */
.subscription-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.subscription-popup.active {
    display: flex;
}

.subscription-content {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.subscription-content * {
    text-align: center !important;
}

/* Legacy subscription images (fallback) */
.subscription-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.subscription-images img {
    max-height: 100px;
    object-fit: contain;
}

.subscription-images img:nth-child(1) {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-140px);
    z-index: 1;
}

.subscription-images img:nth-child(2) {
    position: relative;
    z-index: 2;
}

.subscription-images img:nth-child(3) {
    position: absolute;
    right: 50%;
    top: 10px;
    transform: translateX(140px);
    z-index: 1;
}

.subscription-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.subscription-content p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #555;
}

.subscription-content .gift-value {
    font-size: 28px;
    font-weight: 700;
    margin: 25px 0;
    color: #a68c46;
}

.subscription-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.subscription-buttons button {
    width: 100%;
    padding: 15px 0;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.subscribe-button {
    background-color: #a68c46;
    color: white;
}

.subscribe-button:hover {
    background-color: #8d7839;
}

.skip-button {
    background-color: #f0f0f0;
    color: #333;
}

.skip-button:hover {
    background-color: #e0e0e0;
}

/* Wine product lightbox */
.wine-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.wine-lightbox.active {
    display: flex;
}

.wine-lightbox-content {
    background-color: white;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.wine-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-lightbox-product {
    display: flex;
    flex-wrap: wrap;
}

.wine-lightbox-image {
    flex: 0 0 40%;
    padding: 20px;
    text-align: center;
}

.wine-lightbox-image img {
    max-width: 100%;
    height: auto;
}

.wine-lightbox-details {
    flex: 0 0 60%;
    padding: 20px;
}

.wine-lightbox-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
}

.wine-lightbox-price {
    font-size: 20px;
    color: #a68c46;
    font-weight: 600;
    margin-bottom: 20px;
}

.wine-lightbox-description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.wine-lightbox-actions {
    margin-top: 20px;
    text-align: center;
}

.wine-lightbox-add-to-cart {
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #a68c46;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wine-lightbox-add-to-cart:hover {
    background-color: #8d7839;
}

/* Fix for centre to center alignment issues */
p[style*="text-align: centre"], 
div[style*="text-align: centre"] {
    text-align: center !important;
}

div[style*="text-align:centre"] {
    text-align: center !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    .recommendations-container {
        grid-template-columns: 1fr;
    }
    
    .horizontal-cards .option-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    /* Ensure horizontal cards container uses full width */
    .horizontal-cards {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .quiz-step {
        padding: 30px 15px;
    }
    
    .quiz-step h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .quiz-step[data-step="2"] h2 {
        font-size: 28px;
    }
    
    .quiz-step h3 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .option-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 0;
        padding: 20px;
        text-align: center;
    }
    
    .wine-selection-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Mobile timeline improvements */
    .questions-timeline {
        overflow-x: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 30px;
    }
    
    .questions-timeline::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .timeline-point {
        flex: 0 0 auto;
        min-width: 60px;
    }
    
    .timeline-dot {
        width: 16px;
        height: 16px;
    }
    
    .timeline-label {
        font-size: 12px;
        white-space: nowrap;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Better mobile navigation */
    .navigation-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Move continue button above back button on mobile */
    .navigation-buttons .next-step {
        order: -1;
    }
    
    button.prev-step,
    button.next-step,
    button.submit-quiz {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Mobile optimized cards */
    .option-cards {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    /* Remove specific Question 4 overrides - let it use general mobile styles */
    
    .horizontal-cards .card-image-left {
        width: 35px;
        height: 35px;
    }
    
    /* Gift selection for mobile - One per row */
    .gift-selection {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gift-image {
        height: 150px;
    }
    
    /* Bottle selection */
    .bottle-selection {
        flex-direction: column;
    }
    
    .quantity-selector button {
        min-width: 40px;
        min-height: 40px;
    }
    
    /* Mobile wine results - Reversed order on mobile */
    .recommendations-container {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .wine-selection-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .wine-image {
        max-height: 200px;
    }
    
    .wine-image img {
        max-height: 180px;
    }
    
    .wine-actions {
        display: flex;
        justify-content: center;
    }
    
    .view-wine {
        width: 80%;
        padding: 12px 0;
        font-size: 16px;
    }
    
    /* Order summary */
    .order-table th,
    .order-table td {
        padding: 8px 3px;
        font-size: 14px;
    }
    
    /* Bigger 15% OFF label */
    .discount-label {
        font-size: 22px;
        padding: 10px 15px;
        display: inline-block;
        margin-bottom: 5px;
    }
    
    /* Wine lightbox on mobile */
    .wine-lightbox-content {
        padding: 20px 15px;
    }
    
    .wine-lightbox-product {
        flex-direction: column;
    }
    
    .wine-lightbox-image,
    .wine-lightbox-details {
        flex: 0 0 100%;
        padding: 10px 0;
    }
    
    .wine-lightbox-image {
        text-align: center;
    }
    
    .wine-lightbox-details h2 {
        font-size: 20px;
        text-align: center;
    }
    
    .wine-lightbox-price {
        text-align: center;
    }
    
    .wine-lightbox-actions {
        text-align: center;
    }
    
    /* Mobile responsive styles for subscription popup */
    .subscription-content {
        padding: 20px;
        margin: 10px;
    }
    
    .subscription-content h2 {
        font-size: 28px;
    }
    
    .subscription-content .gift-value {
        font-size: 24px;
    }
    
    /* Legacy mobile styles for fallback images */
    .subscription-images img {
        max-height: 80px;
    }
    
    .subscription-images img:nth-child(1) {
        transform: translateX(-100px);
    }
    
    .subscription-images img:nth-child(3) {
        transform: translateX(100px);
    }
}

/* Small tablet styles */
@media (min-width: 481px) and (max-width: 767px) {
    .option-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .option-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .horizontal-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .horizontal-cards .option-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .wine-selection-card {
        width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .wine-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Still keep gift selection one per row on small tablets for better UX */
    .gift-selection {
        grid-template-columns: 1fr;
    }
}



/* Better error message positioning */
@media (max-width: 768px) {
    .error-message {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(231, 76, 60, 0.9);
        color: white;
        padding: 10px 20px;
        background-color: rgba(231, 76, 60, 0.9);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 100;
        max-width: 90%;
    }
}

/* Mobile touch enhancements */
@media (max-width: 768px) {
    .option-card, 
    .quantity-selector button,
    .add-to-cart-button,
    .view-wine {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .option-card:active,
    .option-card.touch-active {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .wine-card {
        margin-bottom: 15px;
    }
    
    .wine-details h3 {
        height: 50px;
        font-size: 15px;
    }
    
    .loyalty-notification-screen {
        max-width: 90%;
    }
}

/* Update for the discount label - adding a background */
.discount-label {
    display: inline-block;
    padding: 12px 20px;
    background-color: #435980;  /* Dark blue background */
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);  /* Adding a subtle shadow */
}

/* Mobile optimization for the discount label */
@media (max-width: 768px) {
    .discount-label {
        font-size: 22px;
        padding: 10px 15px;
        display: inline-block;
        margin-bottom: 5px;
    }
}