/* PS Gift Wrap - Frontend Styles */

/* Gift Wrap Section */
#gift-wrap-section {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#gift-wrap-section .card-header {
    background: #9fb0a4;
    color: white;
    border-radius: 7px 7px 0 0;
}

.card-body{
    padding: 10px 20px;
}

#gift-wrap-section .card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

#gift-wrap-section .card-title i {
    margin-right: 10px;
    vertical-align: middle;
}

/* Form Elements */
#gift-wrap-options {
    padding: 20px 0;
}

.form-check-label {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
}

.form-check-input{
    margin-left: 0px!important;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

/* Message Input */
.message-input-container {
    position: relative;
}

/* Character Counter */
#char-count {
    font-weight: 600;
    color: #28a745;
}

#char-count.warning {
    color: #ffc107;
}

#char-count.danger {
    color: #dc3545;
}

/* Preview Section */
#gift-wrap-preview {
    padding: 0px!important;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    width: 400px;
    height: 267px;
    max-width: 100%;
    margin: 0 auto;
}

#preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6c757d;
    text-align: center;
}

#preview-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

#preview-placeholder p {
    font-size: 16px;
    margin: 0;
    max-width: 300px;
}

#preview-content {
    position: relative;
    width: 100%;
    height: 267px;
    overflow: hidden;
    border-radius: 4px;
}

#preview-background {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    max-width: 100%;
}

#preview-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    pointer-events: none;
}

/* Text styling applied via JavaScript - same as admin */



/* Animation for options reveal */
#gift-wrap-options {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

#gift-wrap-options.show {
    opacity: 1;
    max-height: 1000px;
}





/* Responsive Design */
@media (max-width: 768px) {
    #gift-wrap-section {
        margin: 15px 0;
    }
    

    

    
    #gift-wrap-preview {
        min-height: 300px;
        height: auto;
        margin-top: 15px;
    }
    
    #preview-placeholder {
        height: 300px;
        padding-top: 100px;
    }
    
    #preview-content {
        height: auto;
        min-height: 300px;
        overflow: hidden;
    }
    
    #preview-text > div {
        font-size: 0.9rem;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    #gift-wrap-section .card-body {
        padding: 15px;
    }
    

    
    .gift-wrap-preview-fixed {
        width: 300px !important;
        min-width: 280px !important;
    }
    
    #gift-wrap-preview {
        min-height: 200px;
        height: auto;
    }
    
    #preview-placeholder {
        height: 200px;
        padding-top: 60px;
    }
    
    #preview-placeholder p {
        font-size: 14px;
        max-width: 250px;
    }
    
    #preview-content {
        height: auto;
        min-height: 200px;
        overflow: hidden;
    }
    
    #preview-text > div {
        font-size: 0.8rem;
        padding: 6px;
    }
}

/* Print styles */
@media print {
    #gift-wrap-section {
        break-inside: avoid;
    }
}