/* Kampanya Detay Full-Screen Sayfa */
.campaign-detail-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    display: none;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
}

.campaign-detail-page.active {
    display: flex;
}

.campaign-detail-image {
    position: relative;
    height: 320px;
    background: #F3F4F6;
}

.campaign-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-back-button {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.campaign-back-button:hover {
    background: #F9FAFB;
}

.campaign-back-button svg {
    width: 24px;
    height: 24px;
}

.campaign-detail-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
}

.campaign-content-space {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.campaign-detail-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.campaign-detail-description {
    text-align: center;
    color: #6B7280;
    line-height: 1.6;
}

.campaign-detail-benefit {
    text-align: center;
}

.campaign-benefit-text {
    font-size: 48px;
    color: #DC2626;
    font-weight: 700;
}

.campaign-info-box {
    background: #F3F4F6;
    border-radius: 12px;
    padding: 16px;
}

.campaign-info-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
}

.campaign-detail-bottom {
    padding: 20px;
    border-top: 1px solid #E5E7EB;
}

.campaign-menu-button {
    width: 100%;
    padding: 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.campaign-menu-button:hover {
    background: #1F2937;
}
