/* Main Layout */
.wof-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Geist", Sans-serif;
}

.wof-two-columns {
    display: grid;
    grid-template-columns: 280px 1fr 380px;
    gap: 30px;
}

/* Categories Sidebar */
.wof-categories-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.wof-categories-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #E88602;
    padding-bottom: 10px;
}

.wof-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wof-categories-list li {
    margin-bottom: 15px;
}

.wof-category-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.wof-category-btn:hover {
    background: #E88602;
    color: #ffffff !important;
    border-color: #E88602;
    transform: translateX(5px);
}

.wof-category-btn.active {
    background: #E88602;
    color: #ffffff !important;
    border-color: #E88602;
}

/* Products Area */
.wof-products-area {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.wof-products-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.wof-products-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.wof-products-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wof-product-item {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.wof-product-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #E88602;
}

.wof-product-info {
    flex: 1;
}

.wof-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.wof-product-price {
    font-size: 14px;
    color: #E88602;
    font-weight: 600;
}

/* Quantity Controls */
.wof-product-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: white; */
    padding: 5px;
    border-radius: 8px;
    /* border: 1px solid #ddd; */
}

.wof-qty-minus,
.wof-qty-plus {
    width: 32px !important;
    height: 32px !important;
    border: 1px solid #000 !important;
    background: #f0f0f0;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #e88602 !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}

.wof-qty-minus:hover,
.wof-qty-plus:hover {
    background-color: #E88602 !important;
    color: #ffffff !important;
}

.wof-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 5px;
}

.wof-qty-input:focus {
    outline: none;
}

/* Order Summary */
.wof-summary {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.wof-summary h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #E88602;
    padding-bottom: 10px;
}

.wof-cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.wof-cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.wof-cart-item-name {
    flex: 1;
}

.wof-cart-item-qty {
    font-weight: 600;
    color: #E88602;
    margin: 0 10px;
}

.wof-cart-item-price {
    font-weight: 600;
}

.wof-total {
    border-top: 2px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.wof-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.wof-special-request {
    margin: 20px 0;
}

.wof-special-request label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.wof-special-request textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
}

.wof-submit-btn {
    width: 100% !important;
    padding: 14px !important;
    background: #E88602 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    border: 1px solid #E88602 !important;
}

.wof-submit-btn:hover {
    background: transparent !important;
    color: #E88602 !important;
    border: 1px solid #E88602 !important;
}

/* Login & Access Messages */
.wof-login-required,
.wof-access-denied {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    max-width: 600px;
    margin: 50px auto;
}

.wof-login-required h3,
.wof-access-denied h3 {
    color: #E88602;
    margin-bottom: 15px;
}

/* Loading State */
.wof-loading {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* Authentication Styles */
.wof-auth-container {
    font-family: Geist, sans-serif;
    /* max-width: 600px; */
    margin: 50px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wof-welcome-message {
    background: #000000;
     text-align: center; 
    padding: 30px;
    /* margin-bottom: 30px; */
    border-radius: 12px 12px 0 0;
}

.wof-welcome-message h2 {
    font-family: Agdasima, sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #E88602;
    margin-bottom: 10px;
}

.wof-welcome-message p {
    color: #ffffff;
}

.wof-buttons-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px;
    margin-bottom: 30px;
}

.wof-auth-btn {
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wof-auth-btn span {
    font-size: 16px;
    font-weight: 400;
}

.wof-login-btn {
    width: 100%;
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.wof-login-btn:hover {
    background: #E88602;
    color: #ffffff;
    border: 1px solid;
}

.wof-register-btn {
    width: 100%;
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.wof-register-btn:hover {
    background: #E88602;
    color: #ffffff;
    border: 1px solid;
}

.wof-form-container {
    padding: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.wof-form-container h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.wof-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.wof-form-group {
    margin-bottom: 15px;
}

.wof-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
}

.wof-form-group input,
.wof-form-group textarea {
    width: 100% !important;
    padding: 10px !important;
    border: 1px solid #E88602 !important;
    border-radius: 6px !important;
    font-size: 14px;
}

.wof-form-group input:focus,
.wof-form-group textarea:focus {
    outline: none;
    border-color: #E88602;
}

.wof-submit-auth {
    width: 100% !important;
    padding: 12px !important;
    background: #E88602 !important;
    color: #fff !important;
    border: 1px solid #E88602 !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-top: 10px;
}

.wof-submit-auth:hover {
    background: #000 !important;
    color: #ffffff !important;
}

.wof-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

.wof-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wof-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .wof-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wof-auth-container {
        padding: 20px;
        margin: 20px;
    }
    
    .wof-buttons-wrapper {
        flex-direction: column;
    }
    
    .wof-auth-btn {
        width: 100%;
    }
}

.wof-message.wof-error {
    text-align: center;
    padding: 40px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 8px;
    margin: 20px;
}

/* Empty State */
.wof-empty-cart {
    text-align: center;
    padding: 40px;
    color: #999;
}

.wof-no-products {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* ============================================
   DELIVERY / PICKUP RADIO BUTTONS STYLES
   ============================================ */

.wof-delivery-options {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #e9ecef;
}

.wof-options-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.wof-options-label .required {
    color: #e74c3c;
}

.wof-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wof-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    padding: 8px 15px;
    background: white;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.wof-radio-label:hover {
    border-color: #E88602;
    background: #fff8f0;
}

.wof-radio-input {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    cursor: pointer;
    accent-color: #E88602;
}

.wof-radio-label span {
    cursor: pointer;
}

/* Selected radio label styling */
.wof-radio-label:has(input:checked) {
    border-color: #E88602;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(232, 134, 2, 0.15);
}


/* Responsive */
@media (max-width: 1200px) {
    .wof-two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wof-categories-sidebar,
    .wof-summary {
        position: static;
    }
    
    .wof-categories-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .wof-category-btn {
        width: auto;
    }
}

@media (max-width: 600px) {
    .wof-radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .wof-radio-label {
        width: 100%;
    }
}

