/**
 * Moduł: Informacja o kodach rabatowych
 * Autor: Kacper Gratowski
 */

.kg-discount-info-wrapper {
    position: relative;
    margin: 15px 0;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    clear: both;
    display: block;
}

.kg-discount-info-wrapper,
.kg-discount-info-wrapper * {
    box-sizing: border-box;
}

.kg-discount-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #cdd4ea;
    box-shadow: 0 2px 5px rgba(0, 153, 0, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

.kg-discount-info:hover {
    box-shadow: 0 5px 15px rgba(0, 153, 0, 0.1);
    border-color: #c0c8e4;
}

.kg-discount-info__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00b300, #009900);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 153, 0, 0.25);
}

.kg-discount-info__icon svg {
    width: 24px;
    height: 24px;
}

.kg-discount-info__header-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kg-discount-info__content {
    width: 100%;
    min-width: 0;
}

.kg-discount-info__title {
    font-size: 15px;
    font-weight: 600;
    color: #009900;
    margin-bottom: 0;
    line-height: 1.3;
}

.kg-discount-info__codes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kg-discount-info__code-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #eaedf6;
}

.kg-discount-info__code-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.kg-discount-info__code-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    background-color: #f8f9fc;
    border: 1.5px dashed #a4abc6;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.kg-discount-info__code-badge:hover {
    border-color: #009900;
    background-color: #f0f9f0;
}

.kg-discount-info__code-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kg-discount-info__code-value {
    font-size: 16px;
    font-weight: 700;
    color: #009900;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    cursor: pointer;
    user-select: all;
}

.kg-discount-info__copy-icon {
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    padding-left: 4px;
}

.kg-discount-info__copy-icon:hover {
    color: #009900;
}

.kg-discount-info__discount-value {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: #009900;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.kg-discount-info__discount-name {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.kg-discount-info__code-extra {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px dashed #eaedf6;
    font-size: 12px;
    color: #6b7280;
}

.kg-discount-info__extra-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kg-discount-info__extra-icon {
    width: 14px;
    height: 14px;
    color: #a4abc6;
}

.kg-discount-info__extra-value {
    font-weight: 500;
    color: #4b5563;
}

/* Toast powiadomienia */
.kg-discount-info__copied-toast {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: #009900;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    animation: kgToastFadeIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 153, 0, 0.2);
}

@keyframes kgToastFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność */
@media (max-width: 576px) {
    .kg-discount-info {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .kg-discount-info__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 4px;
    }

    .kg-discount-info__icon svg {
        width: 20px;
        height: 20px;
    }

    .kg-discount-info__code-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .kg-discount-info__title {
        font-size: 14px;
    }
}
