/* Shine effect */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    animation: shine 2s infinite linear;
}

/* Başlık */
.instruction-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--ifminshare-primary, #e1306c);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Adımlar konteyneri */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Adım öğeleri */
.adim-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

/* Adım numarası */
.adim-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ifminshare-primary, #e1306c);
    color: var(--ifminshare-text-white, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 18px;
}


/* Adım başlığı */
.adim-content h4 {
    display: flex;
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ifminshare-primary, #e1306c);
}

/* Adım açıklaması */
.adim-content p {
    margin: 0;
    color: var(--ifminshare-text-muted, #666);
    font-size: 14px;
    line-height: 1.4;
}

/* Haustiq Card */
.haustiq-card {
    background: var(--ifminshare-background-white, #fff);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    width: 100%;
    border-top: 3px solid var(--ifminshare-primary, #e1306c);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    text-align: center;
}

.haustiq-card:last-child {
    margin-bottom: 0;
}

/* Yükleme formu başlığı */
.upload-title {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--ifminshare-primary, #e1306c);
    font-weight: 600;
}

/* Yükleme formu açıklaması */
.upload-description {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--ifminshare-text-muted, #666);
    line-height: 1.6;
}

/* Yükleme formu */
.upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.file-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.file-label {
    pointer-events: none;
    color: var(--ifminshare-text-muted, #666);
    font-size: 15px;
}

.file-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
}

.submit-button,
.haustiq-card button[name="haustiq_instagram_upload"],
.haustiq-card .upload-form button[type="submit"] {
    white-space: nowrap;
    /* Diğer stiller artık inline olarak uygulanıyor */
}

.note-text {
    margin-top: 15px;
    font-size: 13px;
    color: var(--ifminshare-text-light, #888);
}

/* No coupons page */
.no-coupon-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--ifminshare-text, #333);
    margin-bottom: 15px;
}

.no-coupon-text {
    color: var(--ifminshare-text-muted, #555);
    font-size: 15px;
    line-height: 1.7;
} 