.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: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 12px rgba(3, 93, 3, 0.3);
    transition: all 0.3s ease;
}
.bonus-card:hover {
    box-shadow: 0 0 20px rgba(3, 140, 3, 0.45);
}

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

.bonus-badge {
    background: linear-gradient(135deg, #035d03 0%, #2a7a2a 100%);
    color: #f5e6b0;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    width: 100%;
    border: none;
    border-radius: 40px;
    word-break: break-word;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}
.bonus-badge:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(3, 93, 3, 0.3);
}

.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;
    color: #035d03;
}

.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: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    white-space: nowrap;
}

.bonus-dates-used {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    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: 600;
    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: 12px;
    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: 12px;
    background: #f9f9f9;
    border-left: 3px solid #035d03;
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    line-height: 1.5;
    color: #555;
}

.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: 40px;
	overflow: visible;
}

.bonus-code-input {
    width: 100%;
    height: 40px;
    padding: 8px 2.5rem 8px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-family: monospace;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    background: #f9fafb;
    color: #1f2937;
    outline: none;
    transition: all 0.2s ease;
	line-height: 40px;
}
.bonus-code-input:focus {
    border-color: #035d03;
    box-shadow: 0 0 0 2px rgba(3, 93, 3, 0.2);
}

.bonus-copy-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 25;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
	outline: none;
	line-height: 1;
	height: auto;
}
.bonus-copy-icon svg {
    width: 18px;
    height: 18px;
    fill: #035d03;
	outline: none;
	display: block;
}
.bonus-copy-icon.visible {
    opacity: 0.7;
    pointer-events: auto;
	outline: none;
}
.bonus-copy-icon.visible:hover {
    opacity: 1;
	outline: none;
}

.bonus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    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: 6px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.bonus-overlay.hidden { display: none; }
.bonus-overlay-text {
    font-weight: 700;
    color: #035d03;
    padding: 6px 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 30px;
    border: 1px solid #035d03;
    font-size: 13px;
    transition: all 0.2s ease;
}
.bonus-overlay:hover .bonus-overlay-text {
    background: #035d03;
    color: white;
}

.bonus-copy-feedback {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    white-space: nowrap;
    color: #035d03;
    font-size: 12px;
    font-weight: 600;
    background: #035d03;
	color: white;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 30;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.bonus-copy-feedback[hidden] {
    display: none;
}

.bonus-card-right .bonus-code-wrapper .bonus-use-code,
.bonus-card-right .bonus-code-wrapper .bonus-use-code.visible {
    color: #035d03;
    border-color: #035d03;
    background: transparent;
    text-decoration: none;
}

.bonus-card-right .bonus-code-wrapper .bonus-use-code:hover,
.bonus-card-right .bonus-code-wrapper .bonus-use-code.visible:hover {
    color: white;
    background: #035d03;
    border-color: #035d03;
    text-decoration: none;
}

.bonus-use-code {
    display: none;
    padding: 6px 16px;
    background: transparent;
    color: #035d03;
    border: 1px solid #035d03;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}
.bonus-use-code.visible {
    display: inline-block;
	color: #035d03;
}
.bonus-use-code:hover {
    background: #035d03;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.bonus-status-badge {
    background: #f0f0f0;
    color: #999;
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 500;
    box-sizing: border-box;
}

.no-codes {
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 12px;
    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: 20px 24px;
		border-radius: 60px;
    }
    
    .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 2rem 14px 14px;
    }
    
    .bonus-use-code {
        padding: 12px 20px;
		font-size: 15px;
    }
}

@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;
    }
	
	.bonus-code-input-container {
        height: 40px;
    }
    
    .bonus-code-input {
        height: 40px;
        line-height: 40px;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .bonus-copy-icon {
        top: 50%;
        transform: translateY(-50%);
        right: 8px;
    }
}
