/**
 * Theme Name: SIP Studio Photography
 * Description: Custom styles for SIP Studio Photography plugin
 * Version: 1.0.0
 * Author: SIP Studio
 */

/* SIP Studio Photography Styles */

/* Thank You Page Styling */
.sip-thank-you {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}

.sip-thank-you-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.sip-thank-you-header h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.sip-order-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sip-order-summary h3 {
    margin-bottom: 20px;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.sip-order-details {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.sip-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.sip-order-label {
    font-weight: 600;
    color: #4a5568;
}

.sip-order-value {
    color: #2d3748;
    font-weight: 500;
}

.sip-order-items {
    margin: 20px 0;
}

.sip-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
}

.sip-item-number {
    font-weight: 600;
    color: #718096;
    min-width: 25px;
}

.sip-item-name {
    flex: 1;
    color: #2d3748;
}

.sip-item-quantity {
    color: #718096;
    font-weight: 600;
}

.sip-order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 2px solid #e2e8f0;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.sip-total-label {
    color: #2d3748;
}

.sip-total-value {
    color: #e53e3e;
    font-size: 20px;
}

.sip-next-steps {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #48bb78;
}

.sip-next-steps h4 {
    margin-bottom: 20px;
    color: #2d3748;
}

.sip-next-steps ol {
    margin-left: 20px;
    margin-bottom: 25px;
}

.sip-next-steps li {
    margin-bottom: 10px;
    color: #4a5568;
}

.sip-contact-info {
    background: #ebf8ff;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #4299e1;
}

.sip-contact-info a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

.sip-contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sip-thank-you {
        padding: 15px 10px;
    }
    
    .sip-thank-you-header {
        padding: 20px 15px;
    }
    
    .sip-thank-you-header h2 {
        font-size: 24px;
    }
    
    .sip-order-summary {
        padding: 20px 15px;
    }
    
    .sip-order-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Cart Empty Styling */
.sip-cart-empty-message {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 30px 0;
}

.sip-cart-empty-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.sip-cart-empty-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.sip-choose-package-btn {
    background: #007cba;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s;
}

.sip-choose-package-btn:hover {
    background: #005a87;
    color: white;
}

.sip-cart-empty-guide {
    text-align: center;
    padding: 50px 20px;
}

.sip-cart-empty-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.sip-cart-empty-guide h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.sip-cart-empty-guide p {
    color: #4a5568;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.sip-primary-button {
    background: #e53e3e;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.sip-primary-button:hover {
    background: #c53030;
    transform: translateY(-2px);
    color: white;
}

.sip-cart-note {
    font-size: 14px;
    color: #718096;
    margin-top: 20px;
}

/* Perbaikan CSS untuk Booking Page */
.booking-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.booking-page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
}

/* Perbaikan layout form booking */
.sip-booking-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.sip-booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sip-booking-column {
    flex: 1;
    min-width: 300px;
}

/* Perbaikan tampilan form fields */
.sip-form-row {
    margin-bottom: 15px;
}

.sip-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.sip-form-row input[type="text"],
.sip-form-row input[type="email"],
.sip-form-row input[type="tel"],
.sip-form-row select,
.sip-form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Perbaikan tampilan TnC */
.sip-tnc-row {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 3px solid #007cba;
}

/* Perbaikan tombol Extra Service */
#sip-open-extra-services {
    display: inline-block;
    background-color: #007cba;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    margin: 10px 0;
    text-decoration: none;
}

#sip-open-extra-services:hover {
    background-color: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Perbaikan Modal Extra Service */
.sip-extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.sip-extra-service-card {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 15px;
    background-color: #f8f8f8;
}

.sip-extra-service-card h4 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
}

.sip-extra-service-options {
    margin-top: 10px;
}

/* Perbaikan tombol Save */
#sip-save-extra-services {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 15px;
    display: block;
    width: 100%;
}

#sip-save-extra-services:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Perbaikan tampilan summary */
#sip-selected-extra-services-summary {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #007bff;
}

.sip-summary-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.sip-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sip-selected-service-item {
    background-color: #e9f5ff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Styles untuk Add-on Selection yang Sederhana */
.sip-addon-selection-simple {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sip-addon-header {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.sip-package-info-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 15px;
}

.sip-addon-section {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sip-addon-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Grid untuk attire dan konsep */
.sip-attire-grid,
.sip-konsep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.sip-attire-item,
.sip-konsep-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sip-attire-item:hover,
.sip-konsep-item:hover {
    border-color: #007cba;
    transform: translateY(-2px);
}

.sip-attire-label,
.sip-konsep-label {
    display: block;
    cursor: pointer;
    padding: 10px;
}

.sip-attire-card,
.sip-konsep-card {
    text-align: center;
}

.sip-attire-image,
.sip-konsep-image {
    margin-bottom: 10px;
}

.sip-attire-image img,
.sip-konsep-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.sip-attire-info h4,
.sip-konsep-info h4 {
    margin: 5px 0;
    font-size: 1em;
}

.sip-attire-price,
.sip-konsep-price {
    color: #007cba;
    font-weight: bold;
}

/* Checkbox styling */
.sip-attire-checkbox,
.sip-konsep-checkbox,
.sip-service-input {
    display: none;
}

.sip-attire-checkbox:checked + .sip-attire-card,
.sip-konsep-checkbox:checked + .sip-konsep-card {
    background: #e8f4fd;
    border: 2px solid #007cba;
}

.sip-service-checkbox {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sip-service-checkbox:hover {
    border-color: #007cba;
}

.sip-service-input:checked + .sip-service-label {
    background: #e8f4fd;
}

.sip-service-label {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sip-service-label strong {
    color: #333;
    margin-bottom: 5px;
}

.sip-service-label span {
    color: #666;
    font-size: 0.9em;
}

/* Action buttons */
.sip-addon-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.sip-addon-actions .button {
    padding: 12px 25px;
    font-size: 1.1em;
}

.sip-attire-counter {
    text-align: center;
    font-weight: bold;
    color: #007cba;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sip-attire-grid,
    .sip-konsep-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .sip-addon-actions {
        flex-direction: column;
    }
    
    .sip-addon-actions .button {
        width: 100%;
        text-align: center;
    }
}





/* Paket Selection Styles */
.sip-paket-selection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sip-category-section {
    margin-bottom: 30px;
}

.sip-category-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.sip-accordion {
    margin-bottom: 30px;
}

.sip-accordion-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.sip-accordion-header {
    padding: 15px 20px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    border-bottom: 1px solid #ddd;
}

.sip-accordion-header:hover {
    background-color: #f9f9f9;
}

.sip-accordion-header.active {
    background-color: #f1f1f1;
}

.sip-accordion-header h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.sip-accordion-toggle {
    font-size: 18px;
    font-weight: bold;
}

.sip-accordion-content {
    display: none;
    padding: 20px;
    background-color: #fff;
}

.sip-paket-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sip-paket-option {
    flex: 1;
    min-width: 150px;
}

.sip-paket-option input[type="radio"] {
    display: none;
}

.sip-paket-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.sip-paket-card:hover {
    border-color: #aaa;
    transform: translateY(-2px);
}

.sip-paket-option input[type="radio"]:checked + .sip-paket-card {
    border-color: #0073aa;
    background-color: #f0f8ff;
    transform: translateY(-2px);
}

.sip-paket-card h5 {
    margin: 0 0 10px 0;
    color: #333;
}

.sip-paket-card p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

#sip-pilih-paket {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    font-size: 18px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#sip-pilih-paket:hover {
    background-color: #005a87;
}

.sip-browse-first {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    font-size: 18px;
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sip-browse-first:hover {
    background-color: #e1e1e1;
}

/* Paket Notice Styles */
.sip-paket-notice {
    background-color: #f8f8f8;
    border-left: 4px solid #0073aa;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.sip-looks-info {
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.sip-ganti-paket {
    margin-left: 10px;
    color: #0073aa;
    text-decoration: none;
}

.sip-ganti-paket:hover {
    text-decoration: underline;
}


/* Tambahkan styling untuk search dan status */
.sip-package-search {
    position: relative;
    margin: 20px 0;
    max-width: 400px;
}

.sip-package-search input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.sip-package-search input:focus {
    border-color: #0073aa;
    outline: none;
}

.sip-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.sip-loading, .sip-no-results, .sip-error {
    text-align: center;
    padding: 30px;
    font-style: italic;
    color: #666;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin: 20px 0;
}

.sip-error {
    color: #d63638;
    background-color: #f8ebea;
}

/* Highlight hasil pencarian */
.sip-package-highlight {
    background-color: yellow;
    font-weight: bold;
}


/* Booking Form Styles */
.sip-booking-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Layout 2 kolom */
.sip-booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.sip-booking-column {
    flex: 1;
    min-width: 300px;
}

.sip-booking-form-column {
    flex-basis: 45%;
}

.sip-booking-details-column {
    flex-basis: 45%;
}

.sip-booking-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Package and Add-on Info Styles */
.sip-package-info,
.sip-addon-info {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sip-package-info h3,
.sip-addon-info h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.sip-package-detail,
.sip-addon-detail {
    margin-top: 15px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.sip-package-detail h4,
.sip-addon-detail h4 {
    margin-top: 0;
    color: #555;
    font-size: 16px;
    margin-bottom: 8px;
}

.sip-addon-detail ul {
    margin: 0;
    padding-left: 20px;
}

.sip-addon-detail li {
    margin-bottom: 5px;
}

/* Detail section styles */
.sip-detail-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sip-booking-container {
        flex-direction: column;
    }
    
    .sip-booking-column {
        flex-basis: 100%;
    }
}

 /* Banner Mode Melihat-lihat */ 
.sip-browse-mode-banner { 
    background-color: #f8f9fa; 
    border: 1px solid #e9ecef; 
    border-radius: 5px; 
    padding: 15px; 
    margin-bottom: 20px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
} 

.sip-browse-mode-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
} 

.sip-browse-mode-info { 
    display: flex; 
    align-items: center; 
    margin-bottom: 10px; 
} 

.sip-browse-mode-icon { 
    font-size: 24px; 
    margin-right: 10px; 
} 

.sip-browse-mode-label { 
    font-weight: bold; 
    margin-right: 10px; 
    color: #343a40; 
} 

.sip-browse-mode-timer { 
    color: #6c757d; 
} 

.sip-browse-mode-actions { 
    margin-left: auto; 
} 

.sip-end-browse-mode-btn { 
    display: inline-block; 
    background-color: #007bff; 
    color: #fff !important; 
    padding: 8px 16px; 
    border-radius: 4px; 
    text-decoration: none; 
    font-weight: 500; 
    transition: background-color 0.2s; 
} 

.sip-end-browse-mode-btn:hover { 
    background-color: #0069d9; 
    color: #fff !important; 
    text-decoration: none; 
} 

.sip-browse-mode-message { 
    margin-top: 10px; 
    color: #6c757d; 
    font-size: 0.9em; 
}

.sip-form-row {
    margin-bottom: 25px;
}

/* Extra Service Styles */
.sip-extra-services-section {
    margin-bottom: 20px;
}

.sip-selected-services-summary {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
    min-height: 20px;
}

.sip-selected-service-item {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 5px 10px;
    background-color: #e6f7ff;
    border-radius: 15px;
    border: 1px solid #1e88e5;
    font-size: 14px;
}

/* Extra Services Grid (inside modal) */
.sip-extra-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.sip-extra-service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.sip-extra-option {
    display: inline-flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.sip-extra-option:hover {
    background-color: #e9e9e9;
}

.sip-extra-option input {
    margin-right: 5px;
}

.sip-extra-service-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    transition: border-color 0.3s;
}

.sip-extra-service-select:focus {
    border-color: #007cba;
    outline: none;
}

.sip-extra-service-card {
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sip-extra-service-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.sip-extra-service-card h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.sip-extra-service-item {
    margin-bottom: 15px;
    width: 100%;
}

/* Modal Styles for Extra Services */
.sip-extra-services-section {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.sip-selected-services-summary {
    margin-top: 15px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    border-left: 3px solid #4CAF50;
}

/* Extra Services Button */
#sip-open-extra-services {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#sip-open-extra-services:hover {
    background-color: #45a049;
}

#sip-save-extra-services {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Responsive for Extra Services */
@media (max-width: 768px) {
    .sip-extra-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sip-extra-service-options {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .sip-extra-option {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .sip-extra-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sip-extra-service-card {
        padding: 12px;
        flex-direction: row;
        align-items: center;
    }
    
    .sip-extra-service-card h4 {
        margin: 0 10px 0 0;
        flex: 0 0 auto;
        min-width: 100px;
    }
    
    .sip-extra-service-options {
        margin-top: 0;
        flex: 1;
    }

    .sip-extra-option {
        padding: 8px 10px;
        font-size: 13px;
    }

    .sip-extra-service-select {
        font-size: 14px;
        height: 38px;
        padding: 10px 12px;
    }
}

.sip-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.sip-form-row input[type="text"],
.sip-form-row input[type="tel"],
.sip-form-row input[type="email"],
.sip-form-row textarea,
.sip-form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sip-form-row input[type="text"]:focus,
.sip-form-row input[type="tel"]:focus,
.sip-form-row input[type="email"]:focus,
.sip-form-row textarea:focus,
.sip-form-row select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
    outline: none;
}

.sip-selected-paket,
.sip-cart-items {
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.sip-cart-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sip-cart-item:last-child {
    border-bottom: none;
}

.sip-cart-item a {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #f0f7fc;
    transition: background-color 0.2s;
}

.sip-cart-item a:hover {
    background-color: #e0f0fa;
}

.sip-booking-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sip-booking-form button[type="submit"]:hover {
    background-color: #005a87;
}

/* Add-on Summary Styles */
.sip-addons-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.sip-addon-category {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sip-addon-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sip-addon-category h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.sip-addon-list {
    margin: 0;
    padding-left: 20px;
}

.sip-addon-list li {
    padding: 4px 0;
}

/* WhatsApp Button Styles */
.wa-chat-wrapper {
    margin-top: 20px;
    text-align: left;
}

.wa-chat-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wa-chat-button:hover {
    background-color: #1ebe54;
    transform: scale(1.03);
}

/* Add-on Selection Styles */
.sip-addon-selection {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.sip-addon-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sip-addon-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.sip-addon-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.sip-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.sip-addon-item {
    position: relative;
}

.sip-addon-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sip-addon-checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    transform: scale(1.5);
}

.sip-addon-checkbox:checked + .sip-addon-card {
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.sip-addon-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.sip-addon-card h4 {
    margin: 10px 0;
    font-size: 16px;
    flex-grow: 1;
}

.sip-addon-card .price {
    color: #e91e63;
    font-weight: bold;
}

.sip-addon-actions {
    margin-top: 30px;
    text-align: center;
}

.sip-addon-actions button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sip-addon-actions button:hover {
    background-color: #45a049;
}

/* TNC Modal Styles */
.sip-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.sip-modal-content {
    background: white;
    padding: 25px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.sip-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.sip-tnc-content {
    margin: 20px 0;
    max-height: 50vh;
    overflow-y: auto;
}

.sip-tnc-modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.sip-tnc-modal-buttons .button {
    flex: 1;
    margin: 0 5px;
}

/* Ganti Paket Styles */
.sip-change-package {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.sip-selected-paket-info {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .sip-tnc-modal-buttons {
        flex-direction: column;
    }
    
    .sip-tnc-modal-buttons .button {
        margin: 5px 0;
    }
    
    /* Shop grid untuk tampilan mobile */
    .woocommerce ul.products {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    
    /* Perbaikan untuk class products columns-4 */
    .woocommerce ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        width: 100%;
    }
    
    /* Menghilangkan jarak kosong pada before ul woocommerce */
    .woocommerce ul.products::before {
        display: none !important;
    }
        display: grid !important;
    }
    
    .woocommerce ul.products.columns-4 li.product {
        width: 100% !important;
        margin-right: 0 !important;
        clear: none !important;
        float: none !important;
    }
}

/* Modal Styles */
.wa-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.wa-modal-content {
    background: white;
    margin: 10% auto;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.wa-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.wa-close:hover {
    color: #000;
}

/* Tab Styles */
.wa-tabs-container {
    margin-top: 15px;
}

.wa-tab-header {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.wa-tab-link {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.wa-tab-link.active {
    color: #25D366;
    border-bottom: 2px solid #25D366;
}

.wa-tab-content {
    display: none;
}

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

/* Form Styles */
.wa-tab-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.wa-tab-content button {
    width: 100%;
    padding: 12px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wa-tab-content button:hover {
    background-color: #1ebe54;
}

.wa-lost-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 0.9em;
}

/* Response Messages */
#wa-login-response,
#wa-register-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

#wa-login-response.error,
#wa-register-response.error {
    color: #d63638;
    background-color: #f8ebea;
}

#wa-login-response.success,
#wa-register-response.success {
    color: #00a32a;
    background-color: #edfaef;
}

/* Styles for SIP Studio Plugin */

/* Looks 2 Modal */
.looks2-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.looks2-modal .modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
}

.close-modal:hover {
    color: #2c3e50;
}

@keyframes slideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.looks2-modal h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.looks2-modal p {
    margin-bottom: 25px;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.looks2-modal .modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.looks2-modal .modal-btn {
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.looks2-modal .modal-btn.traditional {
    background-color: #1a5fb4;
    color: white;
}

.looks2-modal .modal-btn.modern {
    background-color: #c64600;
    color: white;
}

.looks2-modal .modal-btn.chat {
    background-color: #25D366;
    color: white;
}

.looks2-modal .modal-btn.skip {
    background-color: #6c757d;
    color: white;
}

.looks2-modal .modal-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Cart Modal */
.ero-cart-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.browse-mode-notice {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.browse-mode-notice p {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.browse-mode-notice .button {
    display: inline-block;
    background-color: #2271b1;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.browse-mode-notice .button:hover {
    background-color: #135e96;
}

.ero-cart-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    position: relative;
}

.ero-cart-items ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ero-cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ero-cart-items li:last-child {
    border-bottom: none;
}

.remove-btn {
    color: #ff0000;
    text-decoration: none;
    font-size: 0.9em;
}

.remove-btn:hover {
    text-decoration: underline;
}

.ero-cart-modal-buttons {
    display: flex;
    justify-content: center;
}

.ero-continue {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.ero-continue:hover {
    background-color: #005a87;
}

/* TNC Modal */
.ero-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.ero-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.ero-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.ero-accept-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.ero-accept-whatsapp:hover {
    background-color: #1ebe54;
}

.ero-decline {
    background-color: #ccc;
    color: #333;
    border: none;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.ero-decline:hover {
    background-color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
    .sip-paket-options {
        flex-direction: column;
    }
    
    .sip-paket-option {
        min-width: 100%;
    }
    
    .ero-qv-col-gallery,
    .ero-qv-col-details {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .ero-qv-content {
        padding: 20px;
    }
    
    .ero-qv-main-image {
        height: 300px;
    }
    
    .ero-qv-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ero-qv-wishlist {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .ero-qv-cart .single_add_to_cart_button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .ero-qv-cart form.cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ero-qv-cart .quantity {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .ero-qv-cart .quantity input {
        width: 100%;
    }
    
    .ero-qv-cart .single_add_to_cart_button {
        width: 100%;
        float: none;
    }
    
    .looks2-modal .modal-content {
        padding: 25px;
    }
    
    .looks2-modal .modal-buttons {
        gap: 10px;
    }
    
    .looks2-modal .modal-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .looks2-modal h3 {
        font-size: 1.5rem;
    }
    
    .looks2-modal p {
        font-size: 1rem;
    }
    
    .ero-modal-content {
        padding: 20px;
    }
    
    .ero-modal-buttons {
        flex-direction: column;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@keyframes eroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}