.dpc-wrapper {
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    font-family: inherit;
    box-sizing: border-box;
}

/* Header / Dropdown Trigger */
.dpc-accordion-header {
    padding: 12px 15px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
}

.dpc-accordion-header:hover {
    background: #f9f9f9;
}

.dpc-header-icon {
    margin-right: 10px;
    color: #27ae60;
    display: flex;
}

.dpc-header-title {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.dpc-header-arrow {
    color: #999;
    transition: transform 0.3s;
    display: flex;
}

/* Rotate arrow when active */
.dpc-wrapper.active .dpc-header-arrow {
    transform: rotate(180deg);
}

/* Content Area */
.dpc-accordion-content {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 15px;
}

/* Coupon Card */
.dpc-coupon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed #ccc;
    background: #fff;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.dpc-coupon-card:last-child {
    margin-bottom: 0;
}

.dpc-left {
    flex: 1;
    padding-right: 15px;
}

.dpc-offer {
    font-weight: 700;
    color: #196f7c;
    font-size: 1.1em;
    margin-bottom: 2px;
}

/* Updated Description Styles */
.dpc-desc {
    display: block;
    font-size: 18px;
    color: #d25b42;
    margin-top: 3px;
    line-height: 1.2;
	font-weight: 400;
}

.dpc-right {
    flex-shrink: 0;
}

.dpc-code-wrapper {
    background: #f0f2f5;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: background 0.2s;
}

.dpc-code-wrapper:hover {
    background: #e4e6e9;
}

.dpc-code {
    font-family: default;
    font-weight: bold;
    color: #333;
    font-size: 0.9em;
}

/* Tooltip */
.dpc-tooltip {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    white-space: nowrap;
    z-index: 10;
}

.dpc-code-wrapper.copied .dpc-tooltip {
    opacity: 1;
}

@media (max-width: 480px) {
    .dpc-coupon-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .dpc-right {
        margin-top: 8px;
        width: 100%;
    }
    .dpc-code-wrapper {
        justify-content: center;
        width: 100%;
    }
}