/* Shop Registration Form Styles */
.registration-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.registration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.registration-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.registration-header p {
    color: #7f8c8d;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.form-section h3 {
    margin-top: 0;
    color: #3498db;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #34495e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="url"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.half-width {
    flex: 1;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.25rem;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-note {
    background: #fff8e1;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-note strong {
    color: #e65100;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-prev {
    background: #95a5a6;
    color: white;
}

.btn-prev:hover {
    background: #7f8c8d;
}

.btn-next, .btn-submit {
    background: #3498db;
    color: white;
}

.btn-next:hover, .btn-submit:hover {
    background: #2980b9;
}

/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-option {
    position: relative;
}

.social-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.social-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    height: 100%;
}

.social-option label:hover {
    background: #e0e0e0;
}

.social-option input[type="checkbox"]:checked + label {
    background: #3498db;
    color: white;
}

.social-option i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Verification Section */
.verification-section {
    background: #f5f9ff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.verification-section h3 {
    margin-top: 0;
    color: #2c3e50;
}

.verification-section p {
    margin-bottom: 1rem;
    color: #7f8c8d;
}

/* Confirmation Page Styles */
.confirmation-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.confirmation-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.confirmation-header h2 {
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.confirmation-details {
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.detail-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.channel-list {
    list-style: none;
    padding: 0;
}

.channel-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.channel-list i {
    width: 24px;
    text-align: center;
    color: #3498db;
}

.confirmation-note {
    background: #fff8e1;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.confirmation-note strong {
    color: #e65100;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-home, .btn-new {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-home {
    background: #3498db;
    color: white;
}

.btn-home:hover {
    background: #2980b9;
}

.btn-new {
    background: #2ecc71;
    color: white;
}

.btn-new:hover {
    background: #27ae60;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .half-width {
        width: 100%;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .btn-home, .btn-new {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .registration-container, .confirmation-container {
        padding: 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}