.showcase-body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.showcase-back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.showcase-back-btn svg {
    width: 20px;
    height: 20px;
}

/* Help Tooltip */
.showcase-help-tooltip {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.help-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.help-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.help-content {
    position: absolute;
    top: 54px;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 260px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-help-tooltip.active .help-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.help-content h4 {
    margin: 0 0 16px 0;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.shortcut {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.shortcut:last-child {
    margin-bottom: 0;
}

.shortcut kbd {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: monospace;
    font-size: 13px;
    font-weight: 600;
    color: white;
    min-width: 28px;
    text-align: center;
}

.shortcut span {
    flex: 1;
}

/* Showcase Actions Fixed (TikTok Style) */
.showcase-actions-fixed {
    position: fixed;
    right: max(12px, calc((100vw - 600px) / 2 + 20px));
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9998;
    pointer-events: auto;
}

@media (min-width: 1400px) {
    .showcase-actions-fixed {
        right: 450px;
    }
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .showcase-actions-fixed {
        right: 300px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .showcase-actions-fixed {
        right: 150px;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .showcase-actions-fixed {
        right: 80px;
    }
}

@media (max-width: 768px) {
    .showcase-actions-fixed {
        right: 12px;
    }
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px;
    min-width: 48px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.action-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.action-btn:active {
    transform: scale(0.95);
}

.like-btn.liked .like-icon {
    display: none;
}

.like-btn.liked .like-icon-filled {
    display: block !important;
}

.action-count {
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    min-width: 30px;
    text-align: center;
}

@keyframes likeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .showcase-actions-fixed {
        right: 8px;
        gap: 12px;
    }
    
    .action-btn {
        padding: 8px;
        min-width: 44px;
    }
    
    .action-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .action-count {
        font-size: 10px;
    }
}

/* Floating Create Post Button */
.floating-create-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    background: #f59e0b;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.create-post-text {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
}

.floating-create-btn:hover {
    transform: scale(1.1);
}

.floating-create-btn:active {
    transform: scale(0.95) rotate(90deg);
}

/* Post Creator Modal */
.post-creator-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.post-creator-container {
    position: relative;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.post-creator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-creator-header h3 {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.post-creator-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.post-creator-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.post-creator-body textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    resize: none;
    margin-bottom: 8px;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.post-creator-body textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.post-creator-body textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.char-count-fb {
    text-align: right;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-bottom: 24px;
}

/* Media Selector */
.media-selector {
    margin-bottom: 16px;
}

.media-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.media-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.media-btn {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.media-btn svg {
    opacity: 0.7;
}

.media-btn span {
    font-size: 14px;
    font-weight: 500;
}

.media-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.media-btn:hover svg {
    opacity: 1;
}

.media-btn.active {
    background: rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    color: #667eea;
}

.media-btn.active svg {
    opacity: 1;
    color: #667eea;
}

/* Media Input Area */
.media-input-area {
    margin-bottom: 20px;
}

.video-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.video-input-wrapper input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 14px;
}

.video-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.video-input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.clear-media-btn {
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.clear-media-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.photo-input-wrapper {
    /* Styles handled by image preview */
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-gallery-item {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.remove-gallery-item:hover {
    background: rgba(239, 68, 68, 0.9);
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.1);
}

.gallery-item-number {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 4px 8px;
    border-radius: 6px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-count-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 12px;
}

.add-more-photos-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.add-more-photos-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    color: white;
}

.image-preview-fb {
    margin-top: 14px;
}

.preview-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.preview-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.remove-image-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-image-btn:hover {
    background: rgba(239, 68, 68, 0.9);
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.1);
}

.post-submit-btn-fb {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.post-submit-btn-fb span {
    display: inline-block;
}

.post-submit-btn-fb:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.post-submit-btn-fb:active:not(:disabled) {
    transform: translateY(0);
}

.post-submit-btn-fb:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.showcase-post-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.showcase-page.active {
    display: block !important;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.toast-icon {
    flex-shrink: 0;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

/* Retry Button */
.retry-btn {
    margin-top: 20px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.4);
}

.retry-btn:active {
    transform: translateY(0);
}

/* Image Size Info */
.image-size-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Loading Spinner Enhancement */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Improved Empty State */
.showcase-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.showcase-empty svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.showcase-empty h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.showcase-empty p {
    font-size: 16px;
    margin: 0;
    max-width: 400px;
}

@media (max-width: 768px) {
    .showcase-back-btn {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .showcase-back-btn svg {
        width: 18px;
        height: 18px;
    }

    .floating-create-btn {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
    
    .floating-create-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .post-creator-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .post-creator-container {
        border-radius: 20px 20px 0 0;
        max-height: 85vh;
        padding: 24px 20px;
    }

    .post-creator-header h3 {
        font-size: 19px;
    }

    .post-creator-body textarea {
        font-size: 15px;
        padding: 14px;
    }
    
    .toast {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    .toast {
        transform: translateY(100px);
    }
}
/* Contact Information Modal */
.contact-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-info-container {
    position: relative;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-header h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.contact-info-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.contact-info-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-info-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.form-group-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-contact label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.form-group-contact .required {
    color: #f59e0b;
}

.form-group-contact input[type="text"],
.form-group-contact input[type="tel"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group-contact input[type="text"]:focus,
.form-group-contact input[type="tel"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
}

.form-group-contact input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    min-height: 16px;
    display: block;
}

.messaging-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-label svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.checkbox-label:has(input:checked) {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.2);
}

.checkbox-label:has(#hasWhatsApp:checked) svg {
    color: #25D366;
}

.checkbox-label:has(#hasViber:checked) svg {
    color: #7360f2;
}

.checkbox-label span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.btn-continue-post {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.btn-continue-post:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-continue-post:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .contact-info-container {
        padding: 24px 20px;
    }
    
    .contact-info-header h3 {
        font-size: 19px;
    }
    
    .messaging-options {
        flex-direction: column;
    }
    
    .checkbox-label {
        width: 100%;
    }
}
/* Contact Seller Button */
.showcase-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    padding: 10px 16px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.showcase-contact-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.showcase-contact-btn svg {
    flex-shrink: 0;
}

/* Seller Contact Modal */
.seller-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.seller-contact-container {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 100000;
    animation: slideUp 0.3s ease;
}

.seller-contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.seller-contact-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.contact-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-close-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

.seller-contact-body {
    padding: 24px;
}

.seller-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.seller-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
}

.seller-info-item svg {
    flex-shrink: 0;
    color: #6b7280;
    margin-top: 2px;
}

.seller-info-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seller-info-item label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seller-info-item span {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    word-break: break-word;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1fba57;
}

.viber-btn {
    background: #7360f2;
    color: white;
}

.viber-btn:hover {
    background: #5f4dd1;
}

.call-btn {
    background: #3b82f6;
    color: white;
}

.call-btn:hover {
    background: #2563eb;
}

@media (max-width: 768px) {
    .seller-contact-container {
        width: 95%;
        max-width: none;
    }
    
    .seller-contact-header {
        padding: 20px 20px 12px;
    }
    
    .seller-contact-header h3 {
        font-size: 18px;
    }
    
    .seller-contact-body {
        padding: 20px;
    }
    
    .contact-action-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Video embed error handling */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-embed-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    text-align: center;
    z-index: 10;
}

.video-embed-error svg {
    color: #f59e0b;
    opacity: 0.8;
}

.video-embed-error p {
    color: white;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.btn-watch-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-watch-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.btn-watch-youtube svg {
    width: 24px;
    height: 24px;
}
