/**
 * Pizza99 Frontend Styles
 * Clean white background with bold design elements
 */

/* Header Banner */
.pizza99-header-banner {
    background: #ffffff;
    padding: 40px 20px;
    margin-bottom: 30px;
    border-bottom: 4px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pizza99-header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pizza99-logo-section {
    margin-bottom: 20px;
}

.pizza99-main-title {
    font-size: 72px;
    font-weight: 900;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.pizza99-number {
    color: #e74c3c;
    font-size: 80px;
}

.pizza99-since {
    font-size: 20px;
    font-weight: 700;
    color: #7f8c8d;
    margin: 10px 0 0 0;
    letter-spacing: 2px;
}

.pizza99-tagline-section {
    margin-top: 20px;
}

.pizza99-tagline {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 10px 0;
    line-height: 1.4;
}

.pizza99-canadian-style {
    font-size: 18px;
    font-weight: 600;
    color: #34495e;
    margin: 10px 0;
}

/* Customization Options */
.pizza99-customization-options {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.pizza99-field {
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.pizza99-field:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pizza99-field-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.pizza99-field-header::before {
    content: "▼";
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    color: #666;
    transition: transform 0.3s;
}

.pizza99-field.collapsed .pizza99-field-header::before {
    transform: rotate(-90deg);
}

.pizza99-field label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 7px;
}

.pizza99-field label .required {
    color: #e74c3c;
    font-weight: bold;
}

.pizza99-field select,
.pizza99-field input[type="text"],
.pizza99-field textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.pizza99-field select,
select.pizza99-cheese-select {
    height: 44px;
    line-height: 24px;
}

.pizza99-field select:focus,
.pizza99-field input[type="text"]:focus,
.pizza99-field textarea:focus {
    border-color: #c60000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Cheese Option Price Info */
.pizza99-cheese-price-info {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 4px;
    border-left: 3px solid #3b82f6;
}

.pizza99-cheese-price-info strong {
    color: #374151;
    margin-right: 5px;
}

.pizza99-cheese-price-info .pizza99-price-display {
    color: #059669;
    font-weight: 500;
}

/* Radio Group */
.pizza99-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pizza99-radio-label {
    display: flex !important;
    align-items: center;
    padding: 6px 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
    font-size: 15px;
    justify-content: flex-start !important;
}

.pizza99-radio-label:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.pizza99-radio-label input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c60000;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.pizza99-radio-label input[type="radio"]:checked {
    accent-color: #e00000;
}

.pizza99-radio-label:has(input[type="radio"]:checked) {
    background: #eff6ff;
    border-color: #c60000;
}

.pizza99-radio-label span {
    color: #374151;
    flex: 1;
}

/* Toppings Section */
.pizza99-toppings-section {
    border-bottom: none;
}

.pizza99-toppings-price-info {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    margin: 0 0 15px 0;
    padding: 0;
    background: transparent;
}

.pizza99-toppings-category {
    margin-bottom: 25px;
}

.pizza99-toppings-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.pizza99-toppings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pizza99-topping-item {
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.pizza99-topping-item:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.pizza99-topping-item label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 400;
    color: #374151;
    font-size: 15px;
    margin-bottom: 0px;
}

.pizza99-topping-item label .topping-info {
    display: flex;
    align-items: center;
    flex: 1;
}
label.pizza99-radio-label span {
    font-weight: 600;
}
.pizza99-topping-item label .topping-price {
    color: #6b7280;
    font-size: 14px;
    margin-left: auto;
    padding-left: 15px;
}

.pizza99-topping-checkbox {
    width: 18px !important;
    height: 18px !important;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #c60000;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;

}

.pizza99-topping-item:has(.pizza99-topping-checkbox:checked) {
    background: #eff6ff;
    border-color: #c60000;
}

/* Topping Placement Modal */
.pizza99-placement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.pizza99-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.pizza99-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    max-width: 90%;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.pizza99-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 0 20px 0;
    text-align: center;
}

.pizza99-placement-options {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pizza99-placement-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex: 1;
    min-width: 100px;
    max-width: 140px;
}

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

.pizza99-placement-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pizza99-pizza-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pizza99-placement-option input[type="radio"]:checked + .pizza99-placement-visual .pizza99-pizza-icon {
    border-color: #e74c3c;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.pizza99-placement-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pizza99-placement-placeholder {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    padding: 10px;
}

.pizza99-placement-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-top: 5px;
}

.pizza99-placement-option input[type="radio"]:checked + .pizza99-placement-visual .pizza99-placement-label {
    color: #e74c3c;
}

.pizza99-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.pizza99-btn-remove,
.pizza99-btn-apply {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid;
    transition: all 0.3s ease;
    min-width: 100px;
}

.pizza99-btn-remove {
    background: #ffffff;
    border-color: #2c3e50;
    color: #2c3e50;
}

.pizza99-btn-remove:hover {
    background: #f8f9fa;
    border-color: #1a1a1a;
}

.pizza99-btn-apply {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #ffffff;
}

.pizza99-btn-apply:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Pizza icon visual representations
.pizza99-pizza-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #e74c3c;
    opacity: 0.3;
}

.pizza99-pizza-whole::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e74c3c;
    opacity: 0.3;
}

.pizza99-pizza-right::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #e74c3c;
    opacity: 0.3;
} */

/* Mobile responsive */
@media (max-width: 768px) {
    .pizza99-modal-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .pizza99-placement-options {
        gap: 10px;
    }
    
    .pizza99-pizza-icon {
        width: 80px;
        height: 80px;
    }
    
    .pizza99-modal-title {
        font-size: 18px;
    }
    
    .pizza99-placement-label {
        font-size: 12px;
    }
}

/* Topping Removal Section */
.pizza99-topping-removal-section {
    margin-bottom: 20px;
}

.pizza99-removal-header {
    margin-bottom: 15px;
}

.pizza99-removal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.pizza99-removal-icon {
    font-size: 20px;
    color: #374151;
}

.pizza99-removal-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.pizza99-removal-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
    padding: 8px 10px;
    gap: 8px;
    align-items: center;
}

.pizza99-removal-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 1px 11px;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
    padding-top: 10px;
}

.pizza99-removal-row:last-child {
    border-bottom: none;
}

.pizza99-removal-row:hover {
    background: #f9fafb;
}

.pizza99-removal-topping-col {
    display: flex;
    align-items: center;
}

.pizza99-removal-topping-name {
    font-weight: 500;
    color: #374151;
    font-size: 15px;
}

.pizza99-removal-option-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pizza99-removal-option-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.pizza99-removal-header-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    color: #374151;
    flex-shrink: 0;
}

.pizza99-removal-icon-empty {
    width: 40px;
    height: 40px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    background: transparent;
}

.pizza99-removal-radio-label {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.pizza99-removal-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.pizza99-removal-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.2s;
    display: block;
}

.pizza99-removal-radio:checked + .pizza99-removal-radio-custom {
    border-color: #c30000;
    background: #c30000;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1)2bg;
}

.pizza99-removal-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.2s;
}

.pizza99-removal-radio:checked ~ .pizza99-removal-icon-wrapper {
    border-color: #2563eb;
    background: #eff6ff;
}

.pizza99-removal-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: opacity 0.2s;
}

.pizza99-removal-radio:checked ~ .pizza99-removal-icon-wrapper .pizza99-removal-icon {
    opacity: 1;
    filter: brightness(0.9);
}

.pizza99-field-description {
    font-size: 13px;
    color: #6b7280;
    margin: 5px 0 12px 0;
}

.pizza99-btn-cancel {
    padding: 12px 24px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #374151;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pizza99-btn-cancel:hover {
    background: #e5e7eb;
}

/* Chilli Add-ons Section */
.pizza99-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pizza99-checkbox-label {
    display: flex !important;
    align-items: center;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.pizza99-checkbox-label:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.pizza99-checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #c60000;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;

}

.pizza99-checkbox-label:has(input:checked) {
    background: #eff6ff;
    border-color: #c60000;
}

/* Only apply bold to chilli addon labels */
.pizza99-field-chilli_addon .pizza99-checkbox-label span {
    font-weight: 600;
}

.pizza99-disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
    font-style: italic;
    line-height: 1.5;
}

/* Free Toppings */
.pizza99-free-topping {
    background: #f0fdf4;
    border-color: #86efac;
}

.pizza99-free-topping:hover {
    background: #dcfce7;
}

.pizza99-free-topping .topping-price {
    display: none;
}

/* Special Instructions */
.pizza99-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* Tip Section */
.pizza99-tip-field {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 3px;
    border: 1px solid #d5d8dc;
}

.pizza99-tip-field h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.pizza99-tip-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.pizza99-tip-options label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.pizza99-tip-options label:hover {
    border-color: #af0000;
    background: #e8f8f5;
}

.pizza99-tip-options label:has(input[type="radio"]:checked) {
    background: #d1f4e0;
    border-color: #af0000;
    color: #059669;
}
.pizza99-tip-options input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: #af0000;
    visibility: visible;
    opacity: 1;
    display: block;
}
/* Custom tip input inline styling */
.pizza99-custom-tip-label {
    position: relative;
}

.pizza99-custom-tip-input {
    width: 90px;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s;
    margin-left: 0px;
    text-align: center;
    background: #ffffff;
    height: auto;
    line-height: 1.4;
}

.pizza99-custom-tip-input:focus {
    border-color: #ae2727;
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.pizza99-custom-tip-label:has(input[type="radio"]:checked) .pizza99-custom-tip-input {
    border-color: #af0000;
}

/* Mobile responsive for tip section */
@media (max-width: 768px) {
    .pizza99-tip-field {
        padding: 15px;
    }
    
    .pizza99-tip-field h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .pizza99-tip-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .pizza99-tip-options label {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .pizza99-tip-options input[type="radio"] {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    
    .pizza99-custom-tip-input {
        width: 100px;
        font-size: 13px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .pizza99-tip-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .pizza99-tip-options label {
        padding: 8px 6px;
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }
    
    .pizza99-tip-options input[type="radio"] {
        margin-right: 0;
        margin-bottom: 2px;
    }
}

/* VISA Payment Fields */
.pizza99-visa-fields {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.pizza99-visa-fields input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 16px;
}

.pizza99-visa-fields label {
    font-weight: 700;
    color: #2c3e50;
}

.pizza99-note {
    margin-top: 15px;
    padding: 10px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.pizza99-note small {
    color: #856404;
    font-weight: 600;
}

/* Product Categories */
.woocommerce-shop-page .product-category {
    background: #ffffff;
    border: 2px solid #dfe6e9;
    transition: all 0.3s;
}

.woocommerce-shop-page .product-category:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.2);
}

.woocommerce-shop-page .product-category h2 {
    font-weight: 700;
    color: #2c3e50;
}

/* Product Cards */
.woocommerce ul.products li.product {
    background: #ffffff;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    transition: all 0.3s;
}

.woocommerce ul.products li.product:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.2);
    transform: translateY(-5px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: 700;
    color: #2c3e50;
    font-size: 20px;
}

.woocommerce ul.products li.product .price {
    font-weight: 700;
    font-size: 22px;
    color: #e74c3c;
}

/* Add to Cart Button */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  
        background: red;
        padding: 4px 7px;
        border-radius: 5px;
    
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button:hover {
color: white;
}
/* Error States & Validation */
.pizza99-field.field-error {
    border-left-color: #e74c3c;
    background: #fff5f5;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.pizza99-error-message {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

/* Loading States */
.pizza99-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.pizza99-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #e74c3c;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Cart & Checkout Accordion Styles - Clean & Simple */
.pizza99-cart-toggle-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 12px;
    background: #c60000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    vertical-align: middle;
}

.pizza99-cart-toggle-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.pizza99-cart-toggle-btn:active {
    transform: translateY(0);
}

/* Details content wrapper */
.pizza99-cart-details-content {
    margin-top: 12px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 6px;
    border-left: 3px solid #c60000;
}

/* Style the variation list inside */
.pizza99-cart-details-content dl.variation,
.pizza99-cart-details-content .wc-item-meta {
    margin: 0;
    padding: 0;
}

.pizza99-cart-details-content dl.variation dt,
.pizza99-cart-details-content .wc-item-meta-label {
    font-weight: 600;
    color: #1f2937;
    margin-top: 8px;
    font-size: 13px;
}

.pizza99-cart-details-content dl.variation dd,
.pizza99-cart-details-content .wc-item-meta-value {
    margin: 2px 0 8px 0;
    color: #6b7280;
    font-size: 13px;
}

/* Product name spacing */
.product-name {
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pizza99-cart-toggle-btn {
        display: block;
        width: 100%;
        margin: 10px 0 0 0;
        text-align: center;
    }
    
    .pizza99-cart-details-content {
        padding: 12px;
    }
}

/* Order Preparation Time Selector */
.pizza99-preparation-time-selector {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
}

.pizza99-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
    margin: 0 0 12px 0;
    display: block;
}

.pizza99-section-description {
    font-size: 14px;
    color: #374151;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.pizza99-estimated-time {
    color: #c60000;
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 14px;
}

.pizza99-preparation-options {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 15px 0;
}

.pizza99-prep-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 1;
}

.pizza99-prep-card:hover {
    border-color: #c60000;
}

.pizza99-prep-card.selected {
    border-color: #c60000;
    background: #c60000;
}

.pizza99-prep-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
    border-color: #d1d5db;
}

.pizza99-prep-card.disabled:hover {
    transform: none;
    border-color: #d1d5db;
}

.pizza99-prep-card.disabled input[type="radio"] {
    cursor: not-allowed;
}


/* Radio button styling for preparation time */
.pizza99-prep-card input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #000000;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
    flex-shrink: 0;
    padding: 0px;
}

.pizza99-prep-card input[type="radio"]:not(:checked) {
    border-color: #000000;
    background: #ffffff;
}

.pizza99-prep-card.selected input[type="radio"],
.pizza99-prep-card input[type="radio"]:checked {
    border-color: #2563eb;
    background: #2563eb;
}

.pizza99-prep-card.selected input[type="radio"]::after,
.pizza99-prep-card input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

/* Match image: selected has white circle with dark border on red background */
.pizza99-prep-card.selected input[type="radio"] {
    border-color: #000000;
    background: #ffffff;
}

.pizza99-prep-card.selected input[type="radio"]::after {
    background: #000000;
}

.pizza99-prep-card .pizza99-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.pizza99-prep-card .pizza99-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.pizza99-prep-card.selected .pizza99-card-title {
    color: #ffffff;
}

.pizza99-schedule-datetime {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.pizza99-schedule-datetime label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Custom Calendar Styling */
.pizza99-datetime-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
}

.pizza99-datetime-display {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: border-color 0.2s;
    cursor: pointer;
    background: #ffffff;
}

.pizza99-datetime-display:focus {
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* HTML5 datetime-local input styling */
.pizza99-datetime-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
    color: #111827;
    transition: all 0.2s ease;
}

.pizza99-datetime-input:focus {
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.pizza99-datetime-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    padding: 4px;
}

.pizza99-datetime-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.pizza99-calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.pizza99-calendar-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    min-width: 600px;
    max-width: 90vw;
}

.pizza99-calendar-container {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}

/* Calendar Section */
.pizza99-calendar-section {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

.pizza99-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.pizza99-calendar-nav {
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    color: #374151;
    font-weight: bold;
}

.pizza99-calendar-nav:hover {
    background: #e5e7eb;
}

.pizza99-calendar-month-year {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pizza99-calendar-month,
.pizza99-calendar-year {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #ffffff;
}

.pizza99-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.pizza99-calendar-weekdays div {
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #6b7280;
    padding: 8px 0;
}

.pizza99-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 15px;
}

.pizza99-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: #374151;
}

.pizza99-calendar-day.other-month {
    color: #9ca3af;
    cursor: default;
}

.pizza99-calendar-day.past {
    color: #d1d5db;
    cursor: not-allowed;
}

.pizza99-calendar-day.today {
    border: 2px solid #000000;
    font-weight: 700;
}

.pizza99-calendar-day.selected {
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
}

.pizza99-calendar-day:not(.other-month):not(.past):hover {
    background: #f3f4f6;
}

.pizza99-calendar-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.pizza99-calendar-clear,
.pizza99-calendar-today {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.pizza99-calendar-clear:hover,
.pizza99-calendar-today:hover {
    background: #f3f4f6;
}

/* Time Section */
.pizza99-time-section {
    width: 250px;
    padding: 20px;
    background: #f9fafb;
    border-left: 1px solid #e5e7eb;
}

.pizza99-time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.pizza99-time-btn {
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    min-width: 50px;
    transition: background 0.2s;
}

.pizza99-time-btn:hover {
    background: #1d4ed8;
}

.pizza99-time-display span {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
}

.pizza99-time-selectors {
    position: relative;
    display: flex;
    gap: 8px;
    justify-content: center;
    max-height: 200px;
    overflow-y: auto;
}

.pizza99-time-column {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 70px;
}

.pizza99-time-column.show {
    display: flex;
}

.pizza99-time-option {
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
    color: #374151;
    min-width: 50px;
}

.pizza99-time-option:hover {
    background: #f3f4f6;
}

.pizza99-time-option.selected {
    background: #dbeafe;
    color: #2563eb;
    font-weight: 700;
}

.pizza99-time-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pizza99-calendar-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.pizza99-calendar-cancel,
.pizza99-calendar-apply {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pizza99-calendar-cancel {
    background: #f3f4f6;
    color: #374151;
}

.pizza99-calendar-cancel:hover {
    background: #e5e7eb;
}

.pizza99-calendar-apply {
    background: #2563eb;
    color: #ffffff;
}

.pizza99-calendar-apply:hover {
    background: #1d4ed8;
}

/* Mobile Responsive Calendar */
@media (max-width: 768px) {
    .pizza99-calendar-popup {
        min-width: auto;
        width: 95vw;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .pizza99-calendar-container {
        flex-direction: column;
    }
    
    .pizza99-calendar-section {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .pizza99-time-section {
        width: 100%;
        border-left: none;
    }
    
    .pizza99-time-selectors {
        justify-content: space-around;
    }
    
    .pizza99-time-column {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
    }
}

/* Order Type Selector - Radio Button Style */
.pizza99-order-type-selector {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
}

.pizza99-order-type-title {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    margin: 0 0 12px 0;
    display: block;
    background: transparent;
}

.pizza99-order-type-cards {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.pizza99-order-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 1;
}

.pizza99-order-card:hover {
    border-color: #c60000;
}

.pizza99-order-card.selected {
    border-color: #c60000;
    background: #c60000;
}

/* Radio button styling - visible and styled */
.pizza99-order-card input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #000000;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
    flex-shrink: 0;
    padding: 0px;
}

/* Unselected radio button - empty circle with black border */
.pizza99-order-card input[type="radio"]:not(:checked) {
    border-color: #000000;
    background: #ffffff;
}

/* Selected radio button - white circle with dark border on red background */
.pizza99-order-card.selected input[type="radio"],
.pizza99-order-card input[type="radio"]:checked {
    border-color: #000000;
    background: #ffffff;
}

/* Inner dot for selected radio - dark circle */
.pizza99-order-card.selected input[type="radio"]::after,
.pizza99-order-card input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000000;
}

.pizza99-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.pizza99-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.pizza99-order-card.selected .pizza99-card-title {
    color: #ffffff;
}

.pizza99-card-time-value {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.pizza99-order-card.selected .pizza99-card-time-value {
    color: #ffffff;
}

.pizza99-card-payment {
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    margin-top: 4px;
}

.pizza99-order-card.selected .pizza99-card-payment {
    color: #ffffff;
}

.pizza99-order-type-payment-message {
    margin-top: 12px;
    padding: 10px 12px;
    background: #f0fdf4;
    border: 1px solid #34d399;
    border-radius: 6px;
    font-size: 14px;
    color: #065f46;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pizza99-preparation-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .pizza99-prep-card {
        width: 100%;
        padding: 10px 12px;
    }
    
    .pizza99-schedule-datetime input[type="datetime-local"] {
        max-width: 100%;
    }
    
    .pizza99-order-type-title {
        display: block;
        margin-bottom: 12px;
    }
    
    .pizza99-order-type-cards {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }
    
    .pizza99-order-card {
        flex: 1;
        justify-content: flex-start;
        padding: 10px 12px;
    }
}

/* Returning Customer Login Section */
.e-woocommerce-login-section {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce-form-login-toggle.e-checkout-secondary-title {
    font-size: 16px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 15px;
}

.woocommerce-form-login-toggle a.e-show-login {
    color: #c60000;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.woocommerce-form-login-toggle a.e-show-login:hover {
    color: #2563eb;
    text-decoration: underline;
}

.pizza99-payment-info {
    margin: 15px 0;
    padding: 12px 15px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 8px;
    color: #92400e;
    font-size: 14px;
}

.e-woocommerce-login-anchor {
    margin-top: 20px;
}

.e-woocommerce-login-nudge.e-description {
    background: #f0f9ff;
    border-left: 4px solid #c60000;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.6;
}

.e-login-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.e-login-wrap-start {
    flex: 1;
    min-width: 300px;
}

.e-login-wrap-end {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
}

.e-login-wrap .form-row {
    margin-bottom: 15px;
}

.e-login-wrap label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 14px;
}

.e-login-wrap .input-text {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.e-login-wrap .input-text:focus {
    border-color: #c60000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.e-woocommerce-form-login-submit {
    background: #c60000 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.e-woocommerce-form-login-submit:hover {
    background: #2563eb !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.e-login-label {
    visibility: hidden;
    height: 0;
    margin: 0;
}

.e-login-actions-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 15px;
}

.e-login-actions-wrap-start label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
}

.e-login-actions-wrap-start input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c60000;
}

.e-login-actions-wrap-end .lost_password a {
    color: #c60000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.e-login-actions-wrap-end .lost_password a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Mobile responsive for login section */
@media (max-width: 768px) {
    .e-login-wrap {
        flex-direction: column;
    }
    
    .e-login-wrap-start {
        min-width: 100%;
    }
    
    .e-login-wrap-end {
        width: 100%;
    }
    
    .e-woocommerce-form-login-submit {
        width: 100%;
    }
    
    .e-login-actions-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Checkout Form Enhancements */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    background: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    margin: 30px 0 20px 0;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.woocommerce-checkout .form-row label {
    font-weight: 700;
    color: #2c3e50;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: #e74c3c;
    outline: none;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #000000 !important;
}

.woocommerce-checkout .woocommerce-error li,
.woocommerce-checkout .woocommerce-message li {
    color: #000000 !important;
}

.woocommerce-checkout .woocommerce-message {
    background: #e8f8f5;
    border-left-color: #af0000;
}

/* Order Review */
#order_review_heading {
    background: var(--theme-color);
    color: #ffffff;
    padding: 15px 20px;
    margin: 30px 0 20px 0;
    border-radius: 6px;
    font-weight: 700;

}
h4#order_review_heading {
    margin-top: 0px !important;
}

.woocommerce-checkout-review-order {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout-review-order-table {
    border: 2px solid #dfe6e9;
    border-radius: 6px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 15px;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .order-total th {
    color: #2c3e50;
    font-weight: 700;
}

.woocommerce-checkout-review-order-table .order-total td {
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

/* Payment Methods */
.woocommerce-checkout #payment {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none;
    padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: #ffffff;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
    border-color: #e74c3c;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.2);
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 700;
    color: #2c3e50;
    font-size: 18px;
}

.woocommerce-checkout #payment div.payment_box {
    background: #f8f9fa;
    border: 2px solid #3498db;
    border-radius: 6px;
    padding: 20px;
    margin: 15px 0;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #3498db;
}

/* Place Order Button */
#place_order {
    width: 100%;
    background: #af0000 !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 20px 40px !important;
    border-radius: 6px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

#place_order:hover {
    background: #229954 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4) !important;
}

/* Cart Table Styles */
.woocommerce-cart-form table.cart {
    border: 2px solid #dfe6e9;
    border-radius: 8px;
}

.woocommerce-cart-form table.cart th {
    background:var(--theme-color);
    color: #ffffff;
    font-weight: 700;
    padding: 15px;
}

.woocommerce-cart-form table.cart td {
    padding: 20px 15px;
    vertical-align: middle;
}

.woocommerce-cart-form table.cart .product-name a {
    color: #2c3e50;
    font-weight: 700;
    font-size: 18px;
}

.woocommerce-cart-form table.cart .product-price,
.woocommerce-cart-form table.cart .product-subtotal {
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
}

/* Cart Totals */
.cart-collaterals .cart_totals {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #dfe6e9;
}

.cart-collaterals .cart_totals h2 {
    background: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    margin: -25px -25px 20px -25px;
    border-radius: 6px 6px 0 0;
    font-weight: 700;
}

.cart-collaterals .cart_totals table {
    border: none;
}

.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
    padding: 12px 0;
    font-weight: 600;
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    border-top: 3px solid #2c3e50;
    padding-top: 20px;
}

/* Shipping Methods */
.woocommerce-shipping-methods {
    list-style: none;
    padding: 0;
}

.woocommerce-shipping-methods li {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 2px solid #dfe6e9;
    transition: all 0.3s;
}

.woocommerce-shipping-methods li:hover {
    border-color: #3498db;
    background: #ffffff;
}

.woocommerce-shipping-methods li input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.woocommerce-shipping-methods li label {
    font-weight: 700;
    color: #2c3e50;
    cursor: pointer;
}

/* Product Page Enhancements */
.single-product .product {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.single-product .product_title {
    color: #2c3e50;
    font-weight: 900;
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.single-product .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.single-product .price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 25px;
}

/* Success Messages */
.woocommerce-message,
.woocommerce-info {
    background: #e8f8f5;
    border-left: 4px solid #af0000;
    padding: 15px 20px 15px 50px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000000 ;
    position: relative;
}

.woocommerce-message li,
.woocommerce-message p,
.woocommerce-info li,
.woocommerce-info p {
    color: #000000;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: #af0000;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* Error Messages */
.woocommerce-error {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px 15px 50px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000000 !important;
    position: relative;
}
.woocommerce-info::before{

    display:none;
    
}
.woocommerce-info{
    padding-left:10px !important;

}
.woocommerce-error li,
.woocommerce-error p {
    color: #000000 !important;
}

.woocommerce-error::before {
    color: #e74c3c;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* Notices */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

/* Delivery unavailable notice - styled like error but doesn't block checkout */
.woocommerce-notice.woocommerce-info {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px 15px 50px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000000 !important;
    position: relative;
}

.woocommerce-notice.woocommerce-info::before {
    color: #e74c3c;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.woocommerce-notice.woocommerce-info li,
.woocommerce-notice.woocommerce-info p {
    color: #000000 !important;
}


/* Breadcrumbs */
.woocommerce-breadcrumb {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
}

.woocommerce-breadcrumb a {
    color: #e74c3c;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: #c0392b;
}

/* Tabs */
.woocommerce-tabs ul.tabs {
    border: none;
    background: #2c3e50;
    border-radius: 6px 6px 0 0;
    padding: 0;
    overflow: hidden;
}

.woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
}

.woocommerce-tabs ul.tabs li a {
    color: #ffffff;
    font-weight: 700;
    padding: 15px 25px;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li:hover a {
    background: #e74c3c;
    color: #ffffff;
}

.woocommerce-tabs .panel {
    background: #ffffff;
    padding: 25px;
    border: 2px solid #dfe6e9;
    border-radius: 0 0 6px 6px;
}

/* Related Products */
.related.products {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 3px solid #2c3e50;
}

.related.products h2 {
    color: #2c3e50;
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Pagination */
.woocommerce-pagination {
    text-align: center;
    margin: 40px 0;
}

.woocommerce-pagination ul {
    border: none;
}

.woocommerce-pagination ul li {
    border: 2px solid #dfe6e9;
    margin: 0 5px;
    border-radius: 4px;
    overflow: hidden;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    padding: 12px 18px;
    color: #2c3e50;
    font-weight: 700;
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background: #e74c3c;
    color: #ffffff;
}

/* Result Count */
.woocommerce-result-count {
    color: #7f8c8d;
    font-weight: 600;
    padding: 10px 0;
}

/* Ordering Dropdown */
.woocommerce-ordering select {
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    padding: 10px 15px;
    font-weight: 600;
    background: #ffffff;
}

/* My Account Pages */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #2c3e50;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:hover a,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: #e74c3c;
    padding-left: 30px;
}

/* Dips & Drinks Checkout Section */
.pizza99-dips-drinks-section {
    margin: 30px 0;
}

.pizza99-checkout-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.pizza99-checkout-product-item:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.pizza99-checkout-product-checkbox {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer;
    accent-color: #e74c3c;
    flex-shrink: 0;
    visibility: visible !important  ;
    opacity: 1 !important;
    display: block !important;
}

.pizza99-checkout-product-item .pizza99-product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pizza99-checkout-product-item .pizza99-product-name {
    font-weight: 500;
    color: #111827;
    font-size: 14px;
    margin: 0;
}

.pizza99-checkout-product-item .pizza99-product-price {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .pizza99-dips-drinks-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pizza99-main-title {
        font-size: 48px;
    }
    
    .pizza99-number {
        font-size: 56px;
    }
    
    .pizza99-tagline {
        font-size: 20px;
    }
    
    .pizza99-canadian-style {
        font-size: 16px;
    }
    
    .pizza99-radio-group {
        flex-direction: column;
    }
    
    .pizza99-toppings-list {
        grid-template-columns: 1fr;
    }
    
    .pizza99-tip-options {
        flex-direction: column;
    }
    
    .single-product .product_title {
        font-size: 28px;
    }
    
    .single-product .price {
        font-size: 24px;
    }
    
    .woocommerce-checkout .form-row {
        width: 100% !important;
    }
    
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button {
       
        font-size: 14px;
    }
    
    #place_order {
        font-size: 18px !important;
        padding: 15px 30px !important;
    }
}

@media (max-width: 480px) {
    .pizza99-header-banner {
        padding: 20px 15px;
    }
    
    .pizza99-main-title {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    .pizza99-number {
        font-size: 42px;
    }
    
    .pizza99-customization-options {
        padding: 8px;
    }
    
    .pizza99-field {
        padding: 15px;
    }
    
    .woocommerce-cart-form table.cart th,
    .woocommerce-cart-form table.cart td {
        padding: 10px 5px;
        font-size: 14px;
    }
}

.woocommerce-notices-wrapper .woocommerce-message:before {
    margin-top: 15px;
    color: wheat;
}
/* Print Styles for Orders */
@media print {
    .pizza99-header-banner,
    .woocommerce-breadcrumb,
    .related.products,
    .woocommerce-tabs {
        display: none;
    }
    
    .pizza99-customization-summary {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}


.pizza99-removal-option-header span {
    line-height: 13px;
    text-align: center;
}

input.pizza99-two-topper-checkbox {
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
}

input#pizza99_gluten_free{

    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
}

input.pizza99-punjabi-option{
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
}
.pizza99-chilli-quantity-controls {
    display: flex;
}

/* Phone number inputs */
.pizza99-phone-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.pizza99-phone-input {
    width: 90px;
    text-align: center;
    font-size: 16px;
    padding: 10px 12px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pizza99-phone-input:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.4);
    outline: none;
}

.pizza99-phone-divider {
    font-size: 20px;
    color: #9ca3af;
    font-weight: 600;
}

.pizza99-phone-placeholder {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #d1d5db;
    font-style: italic;
    font-size: 16px;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.pizza99-phone-wrapper:focus-within .pizza99-phone-placeholder,
.pizza99-phone-wrapper.pizza99-phone-has-value .pizza99-phone-placeholder {
    opacity: 0;
}

@media (max-width: 500px) {
    .pizza99-phone-input {
        width: 78px;
    }
}

/* Order confirmation prompt */
.pizza99-confirm-details-card {
    margin: 20px 0;
    padding: 16px 18px;
    border: 1px solid #fdba74;
    border-radius: 10px;
    background: #fff7ed;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pizza99-confirm-details-card label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: #7c2d12;
    margin: 0;
}

.pizza99-confirm-details-card input[type="checkbox"] {
    margin-top: 2px;
    transform: scale(1.15);
}

.pizza99-confirm-help {
    margin: 0;
    font-size: 14px;
    color: #92400e;
}

#place_order.pizza99-btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(0.2);
}

/* Thank you note */
.pizza99-thankyou-note {
    margin: 25px 0;
    padding: 18px 22px;
    background: #ecfdf5;
    border: 1px solid #34d399;
    border-radius: 12px;
}

.pizza99-thankyou-primary {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #065f46;
}

.pizza99-thankyou-secondary {
    margin: 0;
    font-size: 15px;
    color: #047857;
}
input#pizza99_confirm_details {
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    width: 18px;
    height: 18px;
}
input.pizza99-checkbox-punjabi-options,
label input.pizza99-checkbox-punjabi-options,
.pizza99-field input.pizza99-checkbox-punjabi-options {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px !important;
    cursor: pointer !important;
    accent-color: #c60000 !important;
    flex-shrink: 0 !important;
}

/* Chutney Sauce Checkbox Styling */
.pizza99-field-chutney_sauce {
    display: flex !important;
    align-items: center !important;
    padding: 12px 0 !important;
    gap: 10px ;
}

.pizza99-field-chutney_sauce label {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.pizza99-field-chutney_sauce input[type="checkbox"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
    margin-right: 10px !important;
    cursor: pointer !important;
    accent-color: #c60000 !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.widget_shopping_cart .quantity {
    visibility: hidden;
}

div#pizza99_combo_fish_sauce_quantity_controls {
    display: flex;
}

div#pizza99_combo_onions_quantity_controls {
    display: flex;
}

/* WooCommerce Button Styling */
a.button.checkout.wc-forward.th-btn.style1,
a.button.wc-forward.th-btn.style1 {
    background: var(--theme-color);
    padding: 17px 37px;
    border-radius: 5px;
}
.woocommerce-message a.button.wc-forward{

    background: white!important;
    padding: 14px 20px!important;
	color:black!important;
    border-radius: 5px!important;
	text-decoration:none!important;
}



a.button.wc-forward:hover{

color:white;

}

/* Clear Cart Button */
.pizza99-clear-cart-btn {
    background: #dc2626 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-left: 10px !important;
    display: inline-block !important;
    margin-top: 10px !important;
    text-transform: uppercase !important;
}

.pizza99-clear-cart-btn:hover {
    background: #b91c1c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2) !important;
}

.pizza99-clear-cart-btn:active {
    transform: translateY(0);
}

.pizza99-clear-cart-btn:disabled {
    background: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/* Mini Cart Clear Button */
.pizza99-mini-cart-clear-wrapper {
    padding: 8px 0;
    margin: 8px 0 5px 0;
    width: 168px;
    display: none;
}

.pizza99-mini-clear-cart-btn {
    width: 100% !important;
    text-align: center !important;
    background: #dc2626 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.pizza99-mini-clear-cart-btn:hover {
    background: #b91c1c !important;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2) !important;
}

.pizza99-mini-clear-cart-btn:disabled {
    background: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

div#pizza99_fish_sauce_quantity_controls {
    display: flex;
}

div#pizza99_onions_quantity_controls {
    display: flex;
}

div#pizza99_samosa_veggie_quantity_controls {
    display: flex;
}

div#pizza99_samosa_meat_quantity_controls {
    display: flex;
}

div#pizza99_chutney_quantity_controls {
    display: flex;
}


a.checkout-button.button.alt.wc-forward.th-btn {
    padding: 16px 29px;
    font-size: 19px;
    border-radius: 0px;
    background: #e31a27;
}
a.button.checkout.wc-forward.th-btn.style1, a.button.wc-forward.th-btn.style1 {
    margin-top: 10px;
}

.pizza99-tip-field h3 {
    color: black !important;
}

.hero-bottom {
    display: none !important;
}
