.fabricor-frontend-wrap {
    font-family: inherit;
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding-left: 3rem;
    padding-right: 3rem;
}
.fabricor-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.fabricor-tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex-grow: 1;
    text-align: center;
}
.fabricor-tab-btn.is-active {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}
.fabricor-week-content {
    display: none;
}
.fabricor-week-content.is-active {
    display: block;
}
.fabricor-days-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.fabricor-day-col {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
}
.fabricor-day-title {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.fabricor-product-card {
    border: 1px solid #e2e8f0;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.fabricor-product-name {
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f7;
    color: #2d3748;
}
.fabricor-var-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    min-height: 30px;
}
.fabricor-var-row:last-child {
    margin-bottom: 0;
}
.fabricor-var-label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.95em;
    color: #4a5568;
    line-height: 1.4;
    margin-bottom: 5px;
}
.fabricor-var-checkbox {
    margin-right: 12px;
    margin-top: 0;
    margin-bottom: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.fabricor-qty-wrap {
    justify-content: center;
    align-items: center;
}

.fabricor-var-qty {
    width: 50% !important;
    padding: 4px 8px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    text-align: center;
}

.fabricor-qty-label {
    margin-left: 5px;
    font-weight: bold;
}

.fabricor-order-summary {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.fabricor-total-wrap {
    font-size: 1.5em;
    font-weight: bold;
    margin: 15px 0;
}

.fabricor-var-separator {
    padding-right: 5px;
    padding-left: 5px;
}

@media (max-width: 1024px) {
    .fabricor-frontend-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .fabricor-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fabricor-frontend-wrap {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .fabricor-days-grid {
        grid-template-columns: 1fr;
    }
    .fabricor-tab-btn {
        width: 100%;
    }
}