/* assets/she-menu.css */

/* Package Grid Styles */
.she-packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.she-packages-container h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #8BEB8B;
    font-size: 2.5em;
    font-weight: bold;
}

.she-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.she-package-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.she-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.she-package-card h3 {
    color: #8BEB8B;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.she-package-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #e53e3e;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.she-package-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1em;
}

.she-book-now-btn {
    background-color: #8BEB8B;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.she-book-now-btn:hover {
    background-color: #ef632d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.she-book-now-btn:active {
    transform: translateY(0);
}

/* Modal Styles */
.she-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.she-modal-content {
    background-color: #fff;
    margin: 1% auto;
    padding: 0;
    border: none;
    width: 100%;
    max-width: 1000px;
    max-height: 93vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    position: relative;
}

.she-close {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.she-close:hover,
.she-close:focus {
    color: #333;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .she-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .she-packages-container {
        padding: 15px;
    }
    
    .she-packages-container h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .she-package-card {
        padding: 20px;
    }
    
    .she-package-card h3 {
        font-size: 1.5em;
    }
    
    .she-package-price {
        font-size: 2em;
    }
    
    .she-book-now-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .she-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .she-packages-container h2 {
        font-size: 1.8em;
    }
    
    .she-package-card h3 {
        font-size: 1.3em;
    }
    
    .she-package-price {
        font-size: 1.8em;
    }
    
    .she-package-description {
        font-size: 1em;
    }
}

/* Animation for modal appearance */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.she-modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Loading state */
.she-book-now-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Custom scrollbar for modal */
.she-modal-content::-webkit-scrollbar {
    width: 8px;
}

.she-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.she-modal-content::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.she-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}



/* Add-ons Section Styling */
#addons-selection {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

#addons-selection h4 {
    color: #2c5282;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin: 0 0 20px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.she-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.she-addon-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    position: relative;
}

.she-addon-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.she-addon-card.selected {
    border-color: #2c5282;
    background: #f0f4f8;
    box-shadow: 0 4px 16px rgba(44, 82, 130, 0.15);
}

.she-addon-info {
    margin-bottom: 15px;
}

.she-addon-info h6 {
    margin: 0 0 8px 0;
    font-weight: bold;
    color: #2d3748;
    font-size: 1.1em;
}

.she-addon-price {
    font-weight: bold;
    color: #e53e3e;
    margin: 8px 0;
    font-size: 1.1em;
}

.she-addon-info p {
    margin: 8px 0 0 0;
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

.she-addon-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.she-addon-controls input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #2c5282;
}

.she-addon-controls label {
    cursor: pointer;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95em;
    user-select: none;
}

/* Selected state styling */
.she-addon-card.selected .she-addon-controls label {
    color: #2c5282;
}

.she-addon-card.selected .she-addon-info h6 {
    color: #2c5282;
}

/* Visual indicator for selected state */
.she-addon-card.selected::before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 15px;
    background: #2c5282;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive design for addons */
@media (max-width: 768px) {
    .she-addons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .she-addon-card {
        padding: 16px;
    }
    
    .she-addon-info h6 {
        font-size: 1em;
    }
    
    .she-addon-price {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .she-addon-card {
        padding: 14px;
    }
    
    #addons-selection {
        margin: 20px 0;
    }
    
    #addons-selection h4 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
}

/* Animation for card interactions */
.she-addon-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.she-addon-card:active {
    transform: translateY(0);
}

/* Focus styles for accessibility */
.she-addon-controls input[type="checkbox"]:focus {
    outline: 2px solid #2c5282;
    outline-offset: 2px;
}

.she-addon-card:focus-within {
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}












/* Tab Navigation */
.she-tab-navigation {
    display: flex;
    border-bottom: 3px solid #e2e8f0;
    margin-bottom: 30px;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
    gap: 30px;
}

.she-tab-btn {
    padding: 15px 30px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.she-tab-btn:hover {
    color: #2c5282 !important;
    background: #f7fafc !important;
}

.she-tab-btn.active {
    color: #ffffff;
    border-bottom-color: #2c5282;
    background: #000000;
}

/* Tab Content */
.she-tab-content {
    display: none;
}

.she-tab-content.active {
    display: block;
}

/* Individual Menu Styles */
.she-individual-menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.she-menu-section {
    margin-bottom: 40px;
}

.she-menu-section h3 {
    color: #2c5282;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.she-category-section h4 {
    background: #f7fafc;
    padding: 10px 15px;
    margin: 20px 0 15px 0;
    border-left: 4px solid #2c5282;
    font-weight: bold;
    color: #2c5282;
}

.she-individual-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.she-individual-item-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.she-individual-item-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.she-individual-item-card h5 {
    margin: 0 0 8px 0;
    font-weight: bold;
    color: #2d3748;
}

.she-individual-item-card p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

.she-individual-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.individual-qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #cbd5e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.individual-qty-btn:hover {
    background: #f7fafc;
    border-color: #2c5282;
}

.individual-quantity {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}

/* Addons Grid */
.she-individual-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.she-individual-addon-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.she-individual-addon-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.she-individual-addon-card.selected {
    border-color: #2c5282;
    background: #f7fafc;
}

.she-individual-addon-card h5 {
    margin: 0 0 5px 0;
    font-weight: bold;
    color: #2d3748;
}

.she-addon-price {
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 10px;
}

.she-addon-controls {
    margin-top: 15px;
}

.she-addon-controls input[type="checkbox"] {
    margin-right: 8px;
}

/* Order Summary */
.she-individual-order-summary {
    position: sticky;
    bottom: 4px;
    background: white;
    border: 2px solid #2c5282;
    border-radius: 10px;
    padding: 11px 20px;
    margin-top: 0px;
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.2);
}

.she-individual-order-summary h3 {
    margin: 0 0 15px 0;
    color: #2c5282;
}

.individual-order-total {
    margin: 0px 0;
    font-size: 1.2em;
    text-align: right;
}

#individual-checkout-btn {
    width: fit-content;
    padding: 15px;
    background: #8beb8b;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#individual-checkout-btn:hover {
    background: #2a4f7a;
}

.she-tab-btn.active:focus {
    color: #fff!important;
    background-color: #000000!important;
}

/* Responsive */
@media (max-width: 768px) {
    .she-tab-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .she-individual-items-grid {
        grid-template-columns: 1fr;
    }
    
    .she-individual-addons-grid {
        grid-template-columns: 1fr;
    }
}



.she-item-price {
    font-weight: bold;
    color: #2c5282;
    font-size: 1.1em;
    margin-bottom: 8px;
}


#individual-checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

#individual-checkout-btn:disabled:hover {
    background: #ccc;
}








/* Add these styles to the existing <style> section */

/* Payment Section Styles */
#payment-section {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    background: #f8fafc;
}

#card-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.sq-payment-form {
    max-width: 100%;
}

.sq-input {
    border: 2px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 12px !important;
    font-size: 16px !important;
    margin-bottom: 15px !important;
    transition: border-color 0.3s ease !important;
}

.sq-input:focus {
    border-color: #2c5282 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1) !important;
}

.sq-input.is-error {
    border-color: #e53e3e !important;
}

.sq-input-label {
    color: #2d3748 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.payment-loading {
    text-align: center;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 8px;
    margin: 10px 0;
}

.payment-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    text-align: center;
    margin: 15px 0;
}

.payment-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    text-align: center;
    margin: 15px 0;
}

.she-btn:disabled {
    background: #cbd5e0 !important;
    color: #718096 !important;
    cursor: not-allowed !important;
}

.she-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}


.she-menu-closed-notice {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
}

.she-menu-closed-notice h2 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 24px;
}

.she-menu-closed-notice p {
    color: #6c757d;
    font-size: 18px;
    margin: 0;
}