.bonuses-shortcode-container {
    max-width: 1200px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bonus-card {
    display: grid;
    grid-template-columns: 150px 1fr 200px;
    gap: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}
.bonus-card:hover {
    box-shadow: 0 4px 12px rgba(3, 93, 3, 0.747);
}

.bonus-card-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-badge {
    background: #faf6e8;
    color: #ffb800;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border: 1px solid #dea107;
    word-break: break-word;
    transition: background 0.2s;
}

.bonus-card-middle {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.bonus-description-short {
    margin: 0 0 10px 0;
    font-weight: 600;
    font-size: 16px;
}

.bonus-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px 0;
    padding: 0;
    list-style: none;
}
.bonus-meta-list li {
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #374151;
    white-space: nowrap;
}

.bonus-dates-used {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0;
    padding: 8px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.bonus-date {
    color: #4b5563;
}
.bonus-date-sep {
    color: #9ca3af;
}
.bonus-used {
    color: #035d03;
    font-weight: 500;
    margin-left: auto;
}

.bonus-toggle-info {
    margin-top: 10px;
}
.bonus-toggle-info summary {
    background: none;
    border: none;
    color: #035d03;
    cursor: pointer;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 500;
    list-style: none;
}
.bonus-toggle-info summary:hover {
    color: #024202;
    text-decoration: underline;
}
.bonus-toggle-info summary::-webkit-details-marker {
    display: none;
}

.bonus-description-full {
    margin-top: 12px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #035d03;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
}

.bonus-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bonus-code-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-code-input-container {
    position: relative;
    width: 100%;
    height: 48px;
}

.bonus-code-input {
    width: 100%;
    height: 48px;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    font-family: monospace;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    background: #f9fafb;
    color: #1f2937;
    outline: none;
}

.bonus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 20;
    border-radius: 4px;
    box-sizing: border-box;
}
.bonus-overlay.hidden { display: none; }
.bonus-overlay-text {
    font-weight: 700;
    color: #035d03;
    padding: 6px 14px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
}

.bonus-copy-feedback {
    display: block;
    text-align: center;
    color: #059669;
    font-size: 12px;
    font-weight: 600;
}

.bonus-use-code {
    display: inline-block;
    padding: 10px 16px;
    background: transparent;
    color: #035d03;
    border: 1px solid #035d03;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.bonus-use-code:hover {
    background: #035d03;
    color: white;
    text-decoration: none;
}

.bonus-status-badge {
    background: #f3f4f6;
    color: #4b5563;
    padding: 10px 16px;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
}

.no-codes {
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
    font-size: 16px;
    border: 1px dashed #ccc;
}

@media (max-width: 768px) {
    .bonus-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bonus-card-left {
        max-width: 100%;
        margin: 0;
    }
    
    .bonus-badge {
        font-size: 18px;
        padding: 16px;
        background: #faf6e8;
        color: #ffb800;
        border-color: #dea107;
    }
    
    .bonus-description-short {
        font-size: 18px;
        text-align: center;
        margin: 12px 0;
    }
    
    .bonus-meta-list {
        justify-content: center;
    }
    
    .bonus-dates-used {
        justify-content: center;
    }
    
    .bonus-used {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .bonus-card-right {
        width: 100%;
    }
    
    .bonus-code-input-container,
    .bonus-code-input,
    .bonus-overlay {
        height: 52px;
    }
    
    .bonus-code-input {
        font-size: 18px;
        padding: 14px;
    }
    
    .bonus-use-code {
        padding: 14px 16px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .bonus-card {
        grid-template-columns: 120px 1fr 160px;
    }
    
    .bonus-meta-list {
        flex-wrap: wrap;
    }
    
    .bonus-dates-used {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
        border-bottom: 1px dashed #e5e7eb;
    }
    
    .bonus-date, .bonus-date-sep {
        display: inline-block;
    }
    
    .bonus-used {
        margin-left: 0;
        width: 100%;
        text-align: left;
        margin-top: 6px;
        padding-top: 4px;
        border-top: 1px dashed #e5e7eb;
    }
}