/* SuperEnergy Plans v2 - RTL */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

.sep-wrap {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    color: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 60px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.sep-wrap *, .sep-wrap *::before, .sep-wrap *::after { box-sizing: border-box; }

.sep-wrap button,
.sep-wrap input,
.sep-wrap select,
.sep-wrap textarea {
    font-family: inherit;
    line-height: inherit;
}

/* ===== LAYOUT ===== */
.sep-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}
.sep-configurator { min-width: 0; order: 1; }

/* ===== STICKY SIDEBAR ===== */
.sep-sidebar { position: sticky; top: 90px; order: 2; }
.sep-sidebar-inner {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e0e0e0;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.sep-sidebar-bag  { font-size: 44px; text-align: center; margin-bottom: 6px; }
.sep-sidebar-title {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}
.sep-sidebar-summary {
    text-align: center;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    min-height: 44px;
    margin-bottom: 14px;
}

/* Coupon */
.sep-coupon-row { display: flex; gap: 8px; margin-bottom: 14px; }
.sep-coupon-input {
    flex: 1;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 9px 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    direction: rtl;
}
.sep-coupon-btn {
    background: #f0f0f0;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 9px 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    color: #444;
    transition: background .15s;
}
.sep-coupon-btn:hover { background: #e4e4e4; }

/* Price breakdown */
.sep-price-breakdown { margin-bottom: 18px; }
.sep-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #555;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
}
.sep-total-row {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    border-bottom: none;
    padding-top: 10px;
    margin-top: 2px;
}

/* Checkout CTA */
.sep-checkout-btn {
    display: block;
    width: 100%;
    background: #2d7a3a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-family: 'Cairo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .1s;
}
.sep-checkout-btn:hover  { background: #246630; transform: translateY(-1px); }
.sep-checkout-btn:active { transform: translateY(0); }

/* ===== SECTIONS ===== */
.sep-section { margin-bottom: 44px; }
.sep-section-title {
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 4px;
}
.sep-section-sub {
    font-size: 13px;
    color: #888;
    margin: 0 0 16px;
}

/* ===== PLAN CARDS ===== */
.sep-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.sep-plan-card {
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    background: #fff;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.sep-plan-card:hover {
    border-color: #2d7a3a;
    box-shadow: 0 2px 12px rgba(45,122,58,0.1);
}
.sep-plan-card.selected {
    border-color: #2d7a3a;
    background: #f0faf2;
}
.sep-plan-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.sep-plan-icon { font-size: 30px; flex-shrink: 0; line-height: 1; }
.sep-plan-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 3px;
}
.sep-plan-info p {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}
.sep-plan-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.sep-link-btn {
    font-size: 12px;
    color: #2d7a3a;
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
}
.sep-link-btn:hover { text-decoration: underline; }

.sep-select-btn {
    background: #e8f5ea;
    color: #2d7a3a;
    border: 1.5px solid #2d7a3a;
    border-radius: 8px;
    padding: 6px 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, color .2s, border-color .2s;
    appearance: none;
    -webkit-appearance: none;
}
.sep-plan-card:not(.selected) .sep-select-btn:hover {
    background: #2d7a3a;
    color: #fff;
    border-color: #246630;
}
.sep-plan-card.selected .sep-select-btn {
    background: #2d7a3a;
    color: #fff;
}
.sep-plan-card.selected .sep-select-btn:hover {
    background: #246630;
    color: #fff;
    border-color: #1e5528;
}
.sep-check { margin-left: 4px; }

/* ===== MEALS ===== */
.sep-meals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.sep-meal-btn {
    position: relative;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 10px;
    padding: 16px 8px 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: border-color .2s, background .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 54px;
}
.sep-meal-btn:hover   { border-color: #2d7a3a; }
.sep-meal-btn.selected {
    border-color: #2d7a3a;
    background: #f0faf2;
    color: #2d7a3a;
}
.sep-meal-label {
    display: block;
    pointer-events: none;
}
.sep-meal-check {
    position: absolute;
    top: 5px;
    right: 7px;
    font-size: 11px;
    color: #2d7a3a;
    font-weight: 800;
    pointer-events: none;
}

/* ===== DAYS ===== */
.sep-days-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sep-day-btn {
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 50px;
    padding: 9px 18px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
}
.sep-day-btn:hover { border-color: #2d7a3a; }
.sep-day-btn.selected {
    background: #2d7a3a;
    color: #fff;
    border-color: #2d7a3a;
}
.sep-day-label { pointer-events: none; }

/* ===== BILLING ===== */
.sep-billing-list { display: flex; flex-direction: column; gap: 10px; }
.sep-billing-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    background: #fff;
    transition: border-color .2s, background .2s, box-shadow .2s;
    width: 100%;
    text-align: right;
}
.sep-billing-card:hover {
    border-color: #2d7a3a;
    box-shadow: 0 2px 10px rgba(45,122,58,.08);
}
.sep-billing-card input[type="radio"] {
    accent-color: #2d7a3a;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    pointer-events: none;
}
.sep-billing-card.selected {
    border-color: #2d7a3a;
    background: #f0faf2;
}
.sep-billing-info { flex: 1; min-width: 0; }
.sep-billing-header { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.sep-billing-name { font-size: 15px; font-weight: 700; }
.sep-billing-badge {
    background: #e8a020;
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
}
.sep-billing-price { font-size: 14px; font-weight: 700; color: #2d7a3a; }
.sep-billing-total { font-size: 12.5px; color: #888; margin-top: 2px; }
.sep-tamara-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Tamara iframe payment modal */
.sep-tamara-overlay { z-index: 1000000; }
.sep-tamara-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.sep-tamara-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}
.sep-tamara-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
}
.sep-tamara-modal-body {
    position: relative;
    flex: 1;
    min-height: 520px;
    background: #f5f5f5;
}
.sep-tamara-iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: none;
    background: #fff;
}
.sep-tamara-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #666;
    font-size: 14px;
}
.sep-tamara-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: #00b3a6;
    border-radius: 50%;
    animation: sep-spin .8s linear infinite;
}
@keyframes sep-spin { to { transform: rotate(360deg); } }

.sep-flash-error {
    outline: 2px solid #f87171 !important;
    outline-offset: 2px;
}

/* ===== OVERLAY ===== */
.sep-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}
.sep-modal { display: none; width: 100%; max-width: 480px; margin: auto; }
.sep-modal.active { display: block; }
.sep-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px 24px;
    position: relative;
    direction: rtl;
}
.sep-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #f2f2f2;
    border: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #444;
    transition: background .15s;
}
.sep-modal-close:hover { background: #e4e4e4; }
.sep-modal-title {
    font-size: 20px;
    font-weight: 800;
    text-align: right;
    margin: 0 0 4px;
}
.sep-modal-sub {
    font-size: 13px;
    color: #888;
    margin: 0 0 18px;
}

/* Modal choices */
.sep-modal-choices {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.sep-modal-choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sep-choice-card {
    flex: 1;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 12px;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    transition: all .18s;
    text-align: center;
}
.sep-choice-card small { font-size: 11px; color: #888; font-weight: 400; line-height: 1.4; }
.sep-choice-card:hover,
.sep-choice-card.active {
    border-color: #2d7a3a;
    background: #f0faf2;
    color: #2d7a3a;
}
.sep-choice-emoji { font-size: 28px; }

/* Modal input field */
.sep-modal-field {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    gap: 8px;
    transition: border-color .2s;
}
.sep-modal-field:focus-within { border-color: #2d7a3a; }
.sep-modal-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    direction: ltr;
    background: transparent;
}
.sep-modal-unit { font-size: 13px; color: #888; }

/* Modal buttons */
.sep-modal-btn {
    display: block;
    width: 100%;
    background: #2d7a3a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 8px;
}
.sep-modal-btn:hover { background: #246630; }
.sep-modal-btn-secondary {
    display: block;
    width: 100%;
    background: transparent;
    color: #666;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.sep-modal-btn-secondary:hover { background: #f5f5f5; border-color: #ccc; }

/* Calories result */
.sep-calories-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}
.sep-calories-num { font-size: 46px; font-weight: 800; color: #2d7a3a; }
.sep-calories-label { font-size: 15px; color: #888; }

.sep-macros-bar {
    display: flex;
    justify-content: space-around;
    margin-bottom: 18px;
    text-align: center;
}
.sep-macro-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sep-macro-item span { font-size: 17px; font-weight: 700; }
.sep-macro-item small { font-size: 11px; color: #888; }
.sep-macro-bar { width: 70px; height: 7px; border-radius: 4px; }
.sep-macro-carb { background: #f5a623; }
.sep-macro-prot { background: #7b68ee; }
.sep-macro-fat  { background: #50c878; }

/* Recommend box */
.sep-recommend-box {
    background: #f0faf2;
    border: 1.5px solid #2d7a3a;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    margin-bottom: 16px;
}
.sep-recommend-label { font-size: 12px; color: #888; margin-bottom: 4px; }
.sep-recommend-plan  { font-size: 19px; font-weight: 800; color: #2d7a3a; }

/* Checkout form */
.sep-checkout-fields { margin-bottom: 14px; }
.sep-field-row { display: flex; gap: 10px; }
.sep-field-row .sep-form-input { flex: 1; margin-bottom: 10px; }
.sep-form-input {
    display: block;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 11px 13px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    direction: rtl;
    text-align: right;
    margin-bottom: 10px;
    transition: border-color .2s;
    outline: none;
}
.sep-form-input:focus { border-color: #2d7a3a; }
.sep-order-summary-mini {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.9;
}
.sep-pay-btn {
    background: linear-gradient(135deg, #00b3a6, #008a9e) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
}
.sep-pay-btn:hover { background: linear-gradient(135deg, #009e92, #007a8e) !important; }
.sep-whatsapp-btn {
    background: #25D366 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    margin-top: 10px;
}
.sep-whatsapp-btn:hover { background: #1da851 !important; }
.sep-whatsapp-btn svg { flex-shrink: 0; }
.sep-or-divider {
    text-align: center;
    position: relative;
    margin: 12px 0;
    color: #888;
    font-size: 13px;
}
.sep-or-divider::before,
.sep-or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 20px);
    height: 1px;
    background: #e0e0e0;
}
.sep-or-divider::before { left: 0; }
.sep-or-divider::after { right: 0; }
.sep-checkout-actions {
    margin-top: 16px;
}
.sep-tamara-pay-logo {
    display: block;
    flex-shrink: 0;
    height: 22px;
    width: auto;
}
.sep-tamara-logo {
    display: inline-block;
    vertical-align: middle;
    height: 28px;
    width: auto;
}
.sep-pay-error {
    margin-top: 10px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
    .sep-wrap .sep-page-layout { grid-template-columns: 1fr !important; gap: 20px !important; display: grid !important; }
    .sep-wrap .sep-page-layout .sep-sidebar { position: static !important; order: 99 !important; }
    .sep-wrap .sep-page-layout .sep-configurator { order: 1 !important; }
    .sep-sidebar-inner { border-radius: 14px; padding: 18px; }
    .sep-plans-grid { grid-template-columns: 1fr; }
    .sep-meals-grid { grid-template-columns: repeat(2, 1fr); }
    .sep-billing-list { gap: 8px; }
    .sep-tamara-modal { max-width: 100%; border-radius: 12px; }
    .sep-tamara-iframe { height: 75vh; min-height: 400px; }
    .sep-tamara-modal-body { min-height: 400px; }
    .sep-section { margin-bottom: 28px; }
    .sep-section-title { font-size: 18px; }
}
@media (max-width: 480px) {
    .sep-wrap { padding: 0 10px 40px; }
    .sep-plans-grid { gap: 10px; }
    .sep-plan-card { padding: 14px; }
    .sep-plan-card-inner { gap: 8px; }
    .sep-plan-icon { font-size: 24px; }
    .sep-plan-info h3 { font-size: 13px; }
    .sep-plan-info p { font-size: 11px; }
    .sep-meals-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .sep-meal-btn { padding: 12px 6px; font-size: 13px; min-height: 48px; }
    .sep-days-grid { gap: 6px; }
    .sep-day-btn { padding: 8px 12px; font-size: 13px; }
    .sep-modal-choices { flex-direction: column; }
    .sep-modal-choices-grid { grid-template-columns: 1fr; }
    .sep-field-row { flex-direction: column; gap: 0; }
    .sep-plan-actions { flex-direction: column; align-items: stretch; gap: 8px; }
    .sep-select-btn { width: 100%; text-align: center; padding: 10px; }
    .sep-link-btn { text-align: center; padding: 8px; }
    .sep-billing-card { padding: 12px 14px; }
    .sep-sidebar-inner { padding: 16px; }
    .sep-checkout-btn { font-size: 16px; padding: 14px; }
    .sep-section-title { font-size: 17px; }
    .sep-section-sub { font-size: 12px; }
}

/* ===== MOBILE STICKY CTA BAR ===== */
.sep-mobile-bar {
    display: none;
}

/* ===== KADENCE / THEME OVERRIDES ===== */
.sep-wrap .sep-meal-btn,
.sep-wrap .sep-meal-btn:hover,
.sep-wrap .sep-meal-btn:focus,
.sep-wrap .sep-meal-btn:active {
    color: #1a1a1a !important;
    background: #fff !important;
    text-shadow: none !important;
    box-shadow: none !important;
}
.sep-wrap .sep-meal-btn.selected,
.sep-wrap .sep-meal-btn.selected:hover {
    color: #2d7a3a !important;
    background: #f0faf2 !important;
}
.sep-wrap .sep-meal-label {
    color: inherit !important;
    display: block !important;
    pointer-events: none;
}

.sep-wrap .sep-day-btn,
.sep-wrap .sep-day-btn:hover,
.sep-wrap .sep-day-btn:focus,
.sep-wrap .sep-day-btn:active {
    color: #1a1a1a !important;
    background: #fff !important;
    text-shadow: none !important;
}
.sep-wrap .sep-day-btn.selected,
.sep-wrap .sep-day-btn.selected:hover,
.sep-wrap .sep-day-btn.selected:focus {
    color: #fff !important;
    background: #2d7a3a !important;
}
.sep-wrap .sep-day-label {
    color: inherit !important;
    display: block !important;
    pointer-events: none;
}

/* الـ Choice cards في الـ modals */
.sep-wrap .sep-choice-card,
.sep-wrap .sep-choice-card:hover,
.sep-wrap .sep-choice-card:focus {
    color: #1a1a1a !important;
}
.sep-wrap .sep-choice-card strong {
    color: inherit !important;
}
.sep-wrap .sep-choice-card small {
    color: #888 !important;
}
.sep-wrap .sep-choice-card.active,
.sep-wrap .sep-choice-card.active:hover {
    color: #2d7a3a !important;
}
.sep-wrap .sep-choice-card.active strong {
    color: #2d7a3a !important;
}

/* الـ Select btn على الخطط */
.sep-wrap .sep-select-btn,
.sep-wrap .sep-select-btn:focus {
    color: #2d7a3a !important;
    background: #e8f5ea !important;
    border-color: #2d7a3a !important;
}
.sep-wrap .sep-plan-card:not(.selected) .sep-select-btn:hover {
    color: #ffffff !important;
    background: #2d7a3a !important;
    border-color: #246630 !important;
}
.sep-wrap .sep-plan-card.selected .sep-select-btn,
.sep-wrap .sep-plan-card.selected .sep-select-btn:hover,
.sep-wrap .sep-plan-card.selected .sep-select-btn:focus {
    color: #ffffff !important;
    background: #2d7a3a !important;
    border-color: #2d7a3a !important;
}
.sep-wrap .sep-plan-card.selected .sep-select-btn:hover {
    background: #246630 !important;
    border-color: #1e5528 !important;
}

/* أزرار الـ modals */
.sep-wrap .sep-modal-btn,
.sep-wrap .sep-modal-btn:hover {
    color: #fff !important;
}
.sep-wrap .sep-modal-btn-secondary,
.sep-wrap .sep-modal-btn-secondary:hover {
    color: #666 !important;
}

/* أزرار عامة في الـ overlay */
.sep-overlay .sep-modal-close,
.sep-overlay .sep-modal-close:hover {
    color: #444 !important;
}

/* Billing card text */
.sep-wrap .sep-billing-card { color: #1a1a1a !important; }
.sep-wrap .sep-billing-name { color: #1a1a1a !important; }
.sep-wrap .sep-billing-price { color: #2d7a3a !important; }
.sep-wrap .sep-billing-total { color: #888 !important; }
.sep-wrap .sep-billing-badge { color: #fff !important; }

/* Plan info */
.sep-wrap .sep-plan-info h3 { color: #1a1a1a !important; }
.sep-wrap .sep-plan-info p   { color: #777 !important; }
.sep-wrap .sep-link-btn,
.sep-wrap .sep-link-btn:hover { color: #2d7a3a !important; }

/* Checkout btn */
.sep-wrap .sep-checkout-btn,
.sep-wrap .sep-checkout-btn:hover { color: #fff !important; }

/* Pay btn */
.sep-wrap .sep-pay-btn,
.sep-wrap .sep-pay-btn:hover { color: #fff !important; }
.sep-wrap .sep-pay-btn img { opacity: 1 !important; filter: none !important; }

/* Coupon btn */
.sep-wrap .sep-coupon-btn,
.sep-wrap .sep-coupon-btn:hover { color: #444 !important; }

/* Section titles */
.sep-wrap .sep-section-title { color: #1a1a1a !important; }
.sep-wrap .sep-section-sub   { color: #888 !important; }

/* Sidebar */
.sep-wrap .sep-sidebar-title   { color: #1a1a1a !important; }
.sep-wrap .sep-sidebar-summary { color: #666 !important; }
.sep-wrap .sep-price-row       { color: #555 !important; }
.sep-wrap .sep-total-row       { color: #1a1a1a !important; }
.sep-wrap .sep-tamara-note     { color: #888 !important; }

/* Modal texts */
.sep-overlay .sep-modal-title { color: #1a1a1a !important; }
.sep-overlay .sep-modal-sub   { color: #888 !important; }
.sep-overlay .sep-modal-unit  { color: #888 !important; }
.sep-overlay .sep-calories-label { color: #888 !important; }
.sep-overlay .sep-macro-item small { color: #888 !important; }
.sep-overlay .sep-recommend-label { color: #888 !important; }
.sep-overlay .sep-recommend-plan  { color: #2d7a3a !important; }
