/* Christmas Card Creator - Modern Template Styles */

/* Base Styles */
.cc-container {
    font-family: 'Poppins', sans-serif;
    color: #343a40;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

/* Updated Logo Styles */
.cc-logo {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allow the logo to grow and take available space */
    max-width: 100%; /* Ensure it doesn't overflow its container */
    overflow: hidden; /* Hide overflow content */
}

.cc-logo img {
    height: auto; /* Allow height to adjust automatically */
    max-height: 50px; /* Maximum height */
    width: auto; /* Maintain aspect ratio */
    margin-right: 1rem;
    object-fit: contain; /* Ensure the image is fully visible */
}

.cc-logo h1 {
    font-size: clamp(1.2rem, 3vw, 2.2rem); /* Responsive font size */.5rem;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    flex-shrink: 1; /* Allow text to shrink if needed */
}

/* Typography */
.cc-container h1, .cc-container h2, .cc-container h3, .cc-container h4 {
    font-family: 'Mountains of Christmas', cursive, serif;
    color: #0f5132;
    margin-top: 0;
}

.cc-container h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.cc-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cc-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.cc-container p {
    margin-bottom: 1rem;
}

/* Header Styles */


.cc-header {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    width: 100%;
}



.cc-ai-badge {
    background: linear-gradient(135deg, #0f5132 0%, #146c43 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.cc-ai-badge::before {
    content: '🤖';
    margin-right: 5px;
    font-size: 1.2rem;
}

/* Hero Banner */
.cc-hero-banner {
    background: linear-gradient(135deg, #0f5132 0%, #146c43 100%);
    border-radius: 10px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cc-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M95,50 C95,74.85 74.85,95 50,95 C25.15,95 5,74.85 5,50 C5,25.15 25.15,5 50,5 C74.85,5 95,25.15 95,50 Z" stroke="%23ffffff" stroke-width="0.5" fill="none" opacity="0.2"/></svg>') no-repeat center center;
    opacity: 0.1;
}

.cc-hero-content {
    position: relative;
    z-index: 2;
}

.cc-hero-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cc-hero-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cc-hero-button {
    background: #c1272d;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 39, 45, 0.3);
}

.cc-hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 39, 45, 0.4);
}

/* Main Area Layout */
.cc-main-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Left Panel - Options */
.cc-left-panel {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.cc-panel-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.cc-panel-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Upload Section */
.cc-upload-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cc-upload-button {
    background: #0f5132;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
    justify-content: center;
}

.cc-upload-button:hover {
    background: #0d4429;
    transform: translateY(-2px);
}

.cc-file-input {
    display: none;
}

.cc-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.cc-preview-container {
    margin-bottom: 1.5rem;
}

.cc-camera-container {
    display: none;
    margin-bottom: 1rem;
}

.cc-camera-preview {
    width: 100%;
    max-height: 250px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cc-camera-controls {
    display: flex;
    gap: 1rem;
}

.cc-capture-button, .cc-camera-close {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
}

.cc-capture-button {
    background: #0f5132;
    color: white;
}

.cc-camera-close {
    background: #f8f9fa;
    color: #343a40;
    border: 1px solid #dee2e6;
}

.cc-image-preview-container {
    width: 100%;
    height: 250px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: white;
}

.cc-image-preview {
    max-width: 100%;
    max-height: 100%;
    display: none;
}

.cc-no-image {
    color: #aaa;
    font-style: italic;
}

/* Sample Faces */
.cc-sample-faces {
    margin-top: 1.5rem;
}

.cc-sample-faces h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.cc-sample-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.cc-sample-face {
    border: 2px solid transparent;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.cc-sample-face:hover {
    border-color: #0f5132;
    transform: translateY(-3px);
}

.cc-sample-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Template Section */
.cc-template-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.cc-template-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.cc-template-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cc-template-item.selected {
    border-color: #c1272d;
    box-shadow: 0 0 0 2px rgba(193, 39, 45, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cc-template-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.cc-template-name {
    font-size: 0.8rem;
    padding: 0.5rem;
    text-align: center;
    background: #f8f9fa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Text Customization */
.cc-text-options {
    margin-top: 1rem;
}


.cc-form-group {
    margin-bottom: 1rem;
}

.cc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cc-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.cc-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    font-family: inherit;
    background: white;
}

.cc-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
}

.cc-color-picker {
    width: 100%;
    height: 38px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.cc-range-container {
    display: flex;
    align-items: center;
}

.cc-range {
    flex-grow: 1;
    margin-right: 10px;
}

.cc-size-value {
    font-size: 0.9rem;
    color: #666;
    width: 50px;
    text-align: right;
}

/* Generate Button */
.cc-generate-section {
    text-align: center;
}

.cc-generate-button {
    background: #c1272d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 39, 45, 0.3);
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.cc-generate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 39, 45, 0.4);
}

.cc-generate-button:disabled {
    background-color: #999;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.cc-button-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Right Panel - Preview */
.cc-right-panel {
    display: flex;
    flex-direction: column;
}

.cc-preview-panel {
    backgrounfa;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cc-card-preview {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cc-card-frame {
    width: 100%;
    max-width: 350px;
    height: 350px;
    border: 10px solid #d4af37;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cc-card-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.cc-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-card-text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.cc-card-text-preview {
    margin: 0;
    font-size: 24px;
    font-family: 'Mountains of Christmas', cursive, serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cc-ai-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 81, 50, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.cc-preview-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cc-preview-info h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.cc-steps-list {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.cc-steps-list li {
    margin-bottom: 0.5rem;
}

.cc-steps-list li:last-child {
    margin-bottom: 0;
}

/* Features Section */
.cc-features-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.cc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cc-feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.cc-feature-item:hover {
    transform: translateY(-5px);
}

.cc-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cc-feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
}

.cc-feature-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Testimonials */
.cc-testimonials {
    margin: 3rem 0;
}

.cc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cc-testimonial {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cc-testimonial:hover {
    transform: translateY(-5px);
}

.cc-testimonial-content {
    padding: 1.5rem;
    position: relative;
}

.cc-testimonial-content p {
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.cc-testimonial-content p::before {
    content: '"';
    font-size: 2.5rem;
    position: absolute;
    left: -0.5rem;
    top: -0.75rem;
    color: #ddd;
    font-family: Georgia, serif;
}

.cc-testimonial-author {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
}

.cc-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #0f5132;
}

.cc-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #0f5132;
    font-family: 'Poppins', sans-serif;
}

/* Loading Animation */
.cc-loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-ai-processing {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.cc-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0f5132;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: cc-spin 1s linear infinite;
}

@keyframes cc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cc-ai-steps {
    margin: 2rem 0;
}

.cc-ai-step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.cc-ai-step.active {
    opacity: 1;
}

.cc-ai-step-number {
    width: 30px;
    height: 30px;
    background: #0f5132;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
}

.cc-ai-step-text {
    font-size: 1rem;
}

.cc-ai-status {
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
}

/* Progress Bar */
.cc-progress-container {
    margin: 20px 0;
}

.cc-progress-bar {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.cc-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0f5132 0%, #146c43 100%);
    width: 0;
    transition: width 0.3s ease;
}

.cc-progress-percentage {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

/* Modal */
.cc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
}

.cc-modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 2rem;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cc-close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.cc-close-button:hover {
    color: #343a40;
}

/* Success Animation */
.cc-ai-success {
    text-align: center;
    margin-bottom: 2rem;
}

.cc-ai-success-icon {
    width: 80px;
    height: 80px;
    background: #0f5132;
    color: white;
    border-radius: 50%;
    display: flex;items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 81, 50, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(15, 81, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 81, 50, 0);
    }
}

.cc-final-card-container {
    width: 100%;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.cc-final-card {
    max-width: 100%;
    max-height: 70vh;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 10px solid #d4af37;
    border-radius: 10px;
}

.cc-ai-badge-corner {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 81, 50, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Share Section */
.cc-ai-share {
    text-align: center;
    margin: 2rem 0;
}

.cc-social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cc-social-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cc-social-button::before {
    margin-right: 8px;
    font-size: 1.2rem;
}

.cc-facebook {
    background: #1877f2;
    color: white;
}

.cc-facebook::before {
    content: 'f';
    font-weight: bold;
}

.cc-twitter {
    background: #1da1f2;
    color: white;
}

.cc-twitter::before {
    content: 't';
    font-weight: bold;
}

.cc-email {
    background: #ea4335;
    color: white;
}

.cc-email::before {
    content: '✉';
}

.cc-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cc-download-button, .cc-create-new {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cc-download-button {
    background: #0f5132;
    color: white;
}

.cc-download-button:hover {
    background: #0d4429;
}

.cc-create-new {
    background: #c1272d;
    color: white;
}

.cc-create-new:hover {
    background: #a82227;
}

/* Footer */
.cc-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.cc-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cc-footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cc-footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.cc-footer-logo h3 {
    font-size: 1.2rem;
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.cc-footer-links h4,
.cc-footer-newsletter h4 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    border-bottom: none;
    padding-bottom: 0;
}

.cc-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-footer-links li {
    margin-bottom: 0.5rem;
}

.cc-footer-links a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cc-footer-links a:hover {
    color: #0f5132;
}

.cc-newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.cc-newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-family: inherit;
}

.cc-newsletter-form button {
    background: #0f5132;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}



.cc-footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Test Mode Notice */
.cc-test-mode-notice {
    background: #ffe9e9;
    color: #c1272d;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
}

/* Loading Button State */
.cc-generate-button.loading {
    position: relative;
    padding-left: 40px;
}

.cc-generate-button.loading::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: cc-spin 1s infinite linear;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cc-main-area {
        grid-template-columns: 1fr;
    }
    
    .cc-right-panel {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .cc-preview-panel {
        padding: 1rem;
    }
    
    .cc-card-frame {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .cc-hero-banner {
        padding: 2rem 1rem;
    }
    
    .cc-hero-banner h2 {
        font-size: 2rem;
    }
    
    .cc-template-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cc-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cc-testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cc-footer-content {
        grid-template-columns: 1fr;
    }
    
    .cc-modal-content {
        width: 95%;
        padding: 1rem;
    }
    
    .cc-social-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cc-upload-options {
        flex-direction: column;
    }
    
    .cc-sample-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cc-form-row {
        grid-template-columns: 1fr;
    }
}