/* Rate Matrix Specific Styles for Slide Modal */

/* Promotional Discount Highlight Section */
.tom-discount-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    border-radius: 15px;
    padding: clamp(15px, 3vw, 25px) clamp(15px, 3vw, 20px);
    margin: 0 auto 1.5rem auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tom-discount-highlight::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%,
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(0deg);
    }
    50% {
        transform: translateX(0%) translateY(0%) rotate(180deg);
    }
}

.tom-special-discount {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin: 0 0 1rem 0;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

.tom-discount-info {
    position: relative;
    z-index: 2;
}

.tom-participants-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    line-height: 1.2;
}

.tom-starts-text {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.tom-price {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0.75rem 0;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-stroke: 2px #000000;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.tom-minimum {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: clamp(0.3px, 0.1vw, 0.5px);
    line-height: 1.2;
}

/* Responsive discount highlight */
@media (max-width: 768px) {
    .tom-discount-highlight {
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .tom-special-discount {
        margin-bottom: 0.75rem;
    }

    .tom-participants-text {
        margin-bottom: 0.5rem;
    }

    .tom-starts-text {
        margin-bottom: 0.4rem;
    }

    .tom-price {
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .tom-discount-highlight {
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }

    .tom-special-discount {
        margin-bottom: 0.5rem;
    }

    .tom-participants-text {
        margin-bottom: 0.4rem;
    }

    .tom-starts-text {
        margin-bottom: 0.3rem;
    }

    .tom-price {
        margin: 0.4rem 0;
    }
}
