/* ===== COUPON DETAIL PAGE ===== */
.coupon-detail-hero {
    min-height: 55vh;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.coupon-detail-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 169, 173, 0.12) 0%, transparent 70%);
}

.coupon-detail-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 169, 173, 0.08) 0%, transparent 70%);
}

.coupon-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 2rem;
}

.coupon-detail-hero .coupon-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pink);
    color: var(--black);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.coupon-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.coupon-detail-hero h1 span {
    color: var(--pink);
}

.coupon-detail-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.coupon-detail-hero .hero-discount-badge {
    display: inline-block;
    background: var(--pink);
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

/* Coupon Detail Content */
.coupon-detail-section {
    padding: 4rem 2rem;
}

.coupon-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.coupon-detail-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.coupon-detail-intro .intro-emoji {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coupon-detail-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.coupon-detail-intro h2 span {
    color: var(--pink-dark);
}

.coupon-detail-intro p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* Coupon Code Box */
.coupon-code-box {
    background: var(--white);
    border: 2px dashed var(--pink);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(231, 169, 173, 0.1);
    position: relative;
    overflow: hidden;
}

.coupon-code-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--pink-dark), var(--pink));
}

.coupon-code-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.coupon-code-box h3 span {
    color: var(--pink-dark);
}

.coupon-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gray);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.coupon-code-display .code-text {
    font-family: 'Poppins', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--pink-dark);
}

.coupon-code-display .copy-btn {
    background: var(--black);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-code-display .copy-btn:hover {
    background: var(--pink);
    color: var(--black);
    transform: scale(1.1);
}

.coupon-code-box .validity-text {
    color: var(--gray-dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.coupon-code-box .validity-text i {
    color: var(--pink);
}

/* How To Use */
.how-to-use {
    margin-bottom: 3rem;
}

.how-to-use h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

.how-to-use h3 span {
    color: var(--pink-dark);
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray);
    border-radius: 16px;
    transition: all 0.3s;
}

.step-item:hover {
    background: var(--pink-light);
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: var(--gray-dark);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Coupon Links Section */
.coupon-links-section {
    margin-bottom: 3rem;
}

.coupon-links-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.coupon-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.coupon-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.coupon-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.coupon-link-card.card-store {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.coupon-link-card.card-store:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.coupon-link-card.card-instagram {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    color: var(--white);
    border-color: transparent;
}

.coupon-link-card.card-instagram:hover {
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3);
}

.coupon-link-card.card-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.coupon-link-card.card-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.coupon-link-card.card-other {
    background: var(--white);
    color: var(--black);
}

.coupon-link-card .link-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.coupon-link-card.card-other .link-icon {
    background: var(--gray);
    color: var(--pink-dark);
}

.coupon-link-card .link-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.coupon-link-card .link-subtext {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* CTA Bottom */
.coupon-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    border-radius: 20px;
    margin-bottom: 2rem;
}

.coupon-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.coupon-cta p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.coupon-cta .btn-primary {
    background: var(--black);
    color: var(--white);
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.coupon-cta .btn-primary:hover {
    background: #333;
}

/* Back to coupons */
.back-to-coupons {
    text-align: center;
    margin-bottom: 2rem;
}

.back-to-coupons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
}

.back-to-coupons a:hover {
    color: var(--black);
}

.back-to-coupons a i {
    font-size: 0.8rem;
}

/* Coupon detail responsive */
@media (max-width: 768px) {
    .coupon-detail-hero h1 {
        font-size: 2rem;
    }

    .coupon-code-display .code-text {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .coupon-code-display {
        padding: 0.8rem 1rem;
    }

    .coupon-links-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}