.offer-detail-page {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('https://visionizemedia.nyc3.digitaloceanspaces.com/covers/1740052492403_Untitled%20design%20%289%29_11zon.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.offer-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2c3e;
    margin-bottom: 10px;
}

.offer-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.offer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.offer-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.meta-item {
    text-align: center;
}

.meta-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.meta-value {
    font-size: 20px;
    font-weight: 600;
    color: #d966c6;
}

.discount-code {
    background: #d966c6;
    color: white;
    font-size: 24px;
    font-weight: 700;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-back:hover {
    background: #f0f0f0;
    border-color: #d966c6;
    color: #d966c6;
}

.btn-external {
    display: inline-block;
    background: #d966c6;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 10px;
}

.btn-external:hover {
    background: #70025e;
}

/* معرض الصور */
.offer-gallery {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.gallery-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a2c3e;
    margin-bottom: 15px;
}

.gallery-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 576px) {
    .gallery-thumb {
        height: 90px;
    }
}

.rtl-support {
    text-align: right;
}
