
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:#f7f6f3;color:#1a1a1a;min-height:100vh}
:root{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --nav-h:66px;--cat-h:54px;
    --radius:16px;--radius-sm:10px;
    --shadow:0 2px 16px rgba(0,0,0,.06);
    --shadow-md:0 6px 28px rgba(0,0,0,.11);
}

/* ── NAV ── */
.nav{position:sticky;top:0;z-index:900;height:var(--nav-h);background:rgba(255,255,255,.97);backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.07);display:flex;align-items:center;padding:0 24px;gap:12px}
.nav-brand{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0}
.nav-brand-logo{width:38px;height:38px;border-radius:10px;object-fit:cover}
.nav-brand-name{font-family:'Syne',sans-serif;font-weight:800;font-size:18px;color:#111;letter-spacing:-.3px}
.nav-spacer{flex:1}
.nb-link { font-size:13px;color:#555;text-decoration:none;font-weight:500; }
.nb-link:hover { color:var(--brand); }
a.nb-link.nb-link-right { padding-right: 10px;}

/* --- Compact Buttons --- */
:root {
    --brand-main: #e03b25;          /* Your requested color */
    --brand-hover: #c42f1c;         /* Slightly darker shade for hover states */
    --surface-white: #ffffff;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --border-light: #edf2f7;
    --radius-sm: 6px;
    --radius-md: 8px;
    --shadow-menu: 0 4px 20px rgba(0, 0, 0, 0.08);
    --speed-fast: 0.15s ease-in-out;
}
.custom-account-trigger, 
.custom-login-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;             /* Reduced padding for a smaller footprint */
    font-size: 0.875rem;           /* Smaller text size */
    font-weight: 600;
    color: var(--surface-white);
    background-color: var(--brand-main);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: var(--speed-fast);
}

.custom-account-trigger:hover,
.custom-login-action:hover {
    background-color: var(--brand-hover);
}

.custom-account-trigger .custom-icon-chevron {
    font-size: 0.75rem;
    opacity: 0.8;
    transition: transform var(--speed-fast);
}

/* --- Dropdown Layout --- */
.custom-account-dropdown {
    position: relative;
    display: inline-block;
}

/* --- Dropdown Menu Container --- */
.custom-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;                     /* Sits directly beneath the button */
    width: 180px;                  /* Slimmer container width */
    background-color: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-menu);
    padding: 6px;
    z-index: 150;
    
    /* Hidden state properties */
    visibility: hidden;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--speed-fast), transform var(--speed-fast), visibility var(--speed-fast);
}

/* --- Invisible Bridge Element --- */
/* This fills the micro-gap between button and menu so the hover isn't lost */
.custom-dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
    background: transparent;
}

.custom-dropdown-menu a.custom-menu-link, .custom-dropdown-menu a.custom-menu-link:hover{
    color:#e03b25;
}

/* --- Trigger Animations on Hover --- */
.custom-account-dropdown:hover .custom-dropdown-menu,
.custom-account-dropdown:focus-within .custom-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(6px);    /* Moves down slightly when it opens */
}

.custom-account-dropdown:hover .custom-icon-chevron {
    transform: rotate(180deg);
}

/* --- Dropdown Links/Items --- */
.custom-menu-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 12px;
    font-size: 0.85rem;            /* Clean, smaller typography */
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    transition: var(--speed-fast);
}

.custom-menu-link:hover {
    background-color: #fff5f5;     /* Ultra-light red tint on hover */
    color: var(--brand-main);
}

.custom-menu-link .custom-menu-icon {
    width: 16px;
    margin-right: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--speed-fast);
}

.custom-menu-link:hover .custom-menu-icon {
    color: var(--brand-main);
}

/* --- Divider Line --- */
.custom-menu-split {
    height: 1px;
    background-color: var(--border-light);
    margin: 4px 4px;
}

/* --- Specialized Logout Styling --- */
.custom-menu-link.custom-logout-action {
    color: var(--brand-main);      /* Matches your red theme */
}

.custom-menu-link.custom-logout-action:hover {
    background-color: var(--brand-main);
    color: var(--surface-white);
}

.custom-menu-link.custom-logout-action:hover .custom-menu-icon {
    color: var(--surface-white);
}


/* Branch dropdown */
.branch-form{display:flex;align-items:center}
.branch-wrap{display:flex;align-items:center;gap:7px;background:#f5f5f2;border-radius:24px;padding:7px 14px 7px 12px;border:1.5px solid transparent;transition:all .18s;cursor:pointer}
.branch-wrap:hover,.branch-wrap:focus-within{border-color:var(--brand);background:var(--brand-light)}
.branch-wrap i{color:var(--brand);font-size:12px;flex-shrink:0}
.branch-select{background:none;border:none;outline:none;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:500;color:#333;cursor:pointer;max-width:170px}
.branch-select option{color:#333;background:#fff}

/* Auth */
.nav-auth{display:flex;align-items:center;gap:10px}
.nav-auth a{font-size:13px;color:#fff;text-decoration:none;font-weight:500;transition:color .18s}
.nav-auth a:hover{color:#fff}

/* Cart button — always opens DRAWER */
.cart-btn{display:flex;align-items:center;gap:8px;background:var(--brand);color:#fff;border:none;border-radius:24px;padding:9px 14px;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:600;cursor:pointer;transition:background .18s,box-shadow .18s;white-space:nowrap;box-shadow:0 4px 14px rgba(232,67,27,.3);text-decoration:none}
.cart-btn:hover{background:var(--brand-dark);color:#fff;box-shadow:0 6px 20px rgba(232,67,27,.4)}
.cart-badge{background:#fff;color:var(--brand);border-radius:50%;width:20px;height:20px;font-size:11px;font-weight:700;display:none;align-items:center;justify-content:center}
.cart-badge.show{display:flex}

/* BREADCRUMB */
.breadcrumb-bar{background:#fff;border-bottom:1px solid rgba(0,0,0,.06);padding:10px 24px;display: flex;
    justify-content: space-between;}
.breadcrumb{display:flex;align-items:center;gap:6px;font-size:12px;color:#aaa;list-style:none;flex-wrap:wrap}
.breadcrumb a{color:#aaa;text-decoration:none;transition:color .15s}
.breadcrumb a:hover{color:var(--brand)}
.breadcrumb li:not(:last-child)::after{content:'›';margin-left:6px;color:#ddd}
.breadcrumb li.active{color:#555;font-weight:500}

/* Main */
.main { max-width: 1100px; margin: 0 auto; padding: 32px 16px 80px; }

/* ── COVER ── */
.cover{position:relative;height:220px;background:linear-gradient(135deg,#1a1a2e,#e8431b);overflow:hidden}
.cover-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.45}
.cover-grad{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.65) 0%,transparent 60%)}
.cover-content{position:absolute;inset:0;display:flex;align-items:flex-end;padding:28px}
.cover-text h1{font-family:'Syne',sans-serif;color:#fff;font-size:28px;font-weight:800;line-height:1.15;margin-bottom:5px;letter-spacing:-.5px}
.cover-text p{color:rgba(255,255,255,.8);font-size:13px}
.cover-meta{display:flex;gap:10px;margin-top:9px;flex-wrap:wrap}
.cover-meta span{color:rgba(255,255,255,.85);font-size:12px;display:flex;align-items:center;gap:5px;background:rgba(255,255,255,.13);border-radius:20px;padding:4px 10px;backdrop-filter:blur(4px)}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a2e, var(--brand));
    padding: 40px 24px; text-align: center; color: #fff;
}
.hero h1 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.hero p   { opacity: .8; font-size: 14px; }

/* ── CAT NAV ── */
.cat-nav{position:sticky;top:var(--nav-h);z-index:800;background:rgba(255,255,255,.97);backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.07);height:var(--cat-h);overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.cat-nav::-webkit-scrollbar{display:none}
.cat-nav-inner{display:flex;align-items:center;gap:6px;padding:8px 20px;height:100%;white-space:nowrap}
.cat-pill{display:inline-flex;align-items:center;gap:6px;padding:6px 16px;border-radius:20px;font-size:16px;font-weight:500;color:#666;cursor:pointer;border:1.5px solid transparent;background:#f0eeeb;transition:all .18s;text-decoration:none;flex-shrink:0;user-select:none}
.cat-pill img{width:18px;height:18px;border-radius:50%;object-fit:cover}
.cat-pill:hover{background:var(--brand-light);border-color:var(--brand);color:var(--brand)}
.cat-pill.active{background:var(--brand);color:#fff;border-color:var(--brand);font-weight:600}

/* ── MAIN ── */
.main{max-width:1400px;margin:0 auto;padding:28px 20px 100px}
.section-head{display:flex;align-items:center;gap:12px;margin-bottom:20px;justify-content: center;}
.section-title{font-family:'Syne',sans-serif;font-size:20px;font-weight:800;color:#111;letter-spacing:-.3px;    text-transform: uppercase;}
.section-divider{flex:1;height:1px;background:#e8e8e4}
.section-count{font-size:12px;color:#bbb;font-weight:500;background:#f0eeeb;padding:2px 9px;border-radius:10px}
.cat-section{margin-bottom:48px;scroll-margin-top:calc(var(--nav-h) + var(--cat-h) + 20px)}

/* ── DEALS ── */
.deals-scroll{display:flex;gap:14px;overflow-x:auto;padding-bottom:8px;scrollbar-width:none}
.deals-scroll::-webkit-scrollbar{display:none}
.deal-card{position: relative;flex-shrink:0;width:328px;background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);cursor:pointer;transition:transform .18s,box-shadow .18s;border:1px solid rgba(0,0,0,.04)}
.deal-card-img{width:100%;height:124px;object-fit:cover;display:block;height: auto; max-height: 300px; min-height: 300px;}
.deal-card-no-img{width:100%;height:124px;background:linear-gradient(135deg,var(--brand),#f5a623);display:flex;align-items:center;justify-content:center;font-size:44px}
.deal-card-body{padding:13px 14px}
.deal-badge{display:inline-block;background:var(--brand-light);color:var(--brand);font-size:10px;font-weight:700;padding:3px 9px;border-radius:8px;margin-bottom:6px;text-transform:uppercase;letter-spacing:.6px}
.deal-name{font-family:'Syne',sans-serif;font-size:14px;font-weight:700;color:#111;margin-bottom:5px;line-height:1.3}
.deal-price-row{margin-bottom: 10px;display:flex;align-items:center;gap:7px;flex-wrap:wrap}
.deal-price{font-size:15px;font-weight:800;color:var(--brand)}
.deal-compare{font-size:12px;color:#ccc;text-decoration:line-through}
.deal-save{font-size:11px;background:#d1fae5;color:#065f46;padding:2px 7px;border-radius:6px;font-weight:700}

/* ── PRODUCT GRID ── */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:30px 16px;}
.product-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;position:relative;border:1px solid rgba(0,0,0,.04);transition:transform .18s,box-shadow .18s}
/* .product-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)} */
.featured-badge{position:absolute;top:10px;left:10px;z-index:2;background:var(--brand);color:#fff;font-size:10px;font-weight:700;padding:3px 9px;border-radius:8px;text-transform:uppercase;letter-spacing:.5px;pointer-events:none}

/* Clickable image */
.product-img-link{display:block;overflow:hidden;flex-shrink:0;border: 4px solid white; border-radius: 10px 10px 0px 0px; border-bottom: unset;}
.product-img{width:100%;height:155px;height: auto;max-height: 300px;    min-height: 300px;object-fit:cover;display:block;transition:transform .3s ease}
.product-img-link:hover .product-img{transform:scale(1.04)}
.product-no-img{width:100%;height:155px;background:#f0eeeb;display:flex;align-items:center;justify-content:center;color:#d5d2cc;font-size:40px}

/* Clickable name */
.product-name-link{text-decoration:none;color:inherit}
.product-name{font-family:'Syne',sans-serif;font-size:14px;font-weight:700;color:#111;line-height:1.4;margin-bottom:4px;letter-spacing:-.2px;transition:color .15s}
.product-name-link:hover .product-name{color:var(--brand)}

.product-body{padding:13px 14px 14px;display:flex;flex-direction:column;flex:1;justify-content: flex-end;}
.product-desc{font-size:12px;color:#999;line-height:1.5;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.required-addon-summary{display:flex;flex-wrap:wrap;gap:4px;margin-bottom:8px;font-size:11px;line-height:1.35;color:#6b7280}
.required-addon-label{font-weight:700;color:var(--brand)}
.required-addon-names{color:#444}

/* Variant select under description */
.variant-select{width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:7px 28px 7px 11px;font-family:'DM Sans',sans-serif;font-size:12px;color:#333;background:#fafaf8;outline:none;margin-bottom:9px;cursor:pointer;transition:border-color .15s;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center}
.variant-select:focus{border-color:var(--brand)}

.product-meta{display:flex;align-items:center;gap:8px;margin-bottom:10px;flex-wrap:wrap}
.product-price{font-size:17px;font-weight:800;color:var(--brand)}
.product-compare{font-size:12px;color:#ccc;text-decoration:line-through}

/* Cart area */
/* .cart-area{margin-top:auto} */
.add-row{display:flex;align-items:center;gap:8px;flex-wrap: wrap;}
.qty-box{display:flex;align-items:center;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0}
.qty-btn{width:30px;height:34px;border:none;background:#f5f5f2;font-size:16px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#555;transition:background .15s,color .15s}
.qty-btn:hover{background:var(--brand);color:#fff}
.qty-val{width:57px;text-align:center;font-size:14px;font-weight:700;color:#222;user-select:none}
.add-to-cart-btn{flex:1;display:flex;align-items:center;justify-content:center;gap:6px;background:var(--brand);color:#fff;border:none;border-radius:var(--radius-sm);height:34px;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:background .15s}
.add-to-cart-btn:hover{background:var(--brand-dark)}
button.is-loading{cursor:wait!important;opacity:.82}
button.is-loading i{font-size:.95em}

/* In-cart state on card */

/* ── ADDON MODAL ── */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:4000;align-items:flex-end;justify-content:center}
.modal-overlay.open{display:flex}
.modal-sheet{background:#fff;border-radius:24px 24px 0 0;width:100%;max-width:520px;max-height:88vh;overflow-y:auto;animation:slideUp .25s cubic-bezier(.4,0,.2,1);scrollbar-width:none}
.modal-sheet::-webkit-scrollbar{display:none}
@keyframes slideUp{from{transform:translateY(100%);opacity:0}to{transform:none;opacity:1}}
.modal-handle{width:40px;height:4px;background:#e0e0e0;border-radius:2px;margin:14px auto 0}
.modal-header{display:flex;align-items:center;justify-content:space-between;padding:16px 22px;border-bottom:1px solid #f0eeeb;position:sticky;top:0;background:#fff;z-index:1}
.modal-title{font-family:'Syne',sans-serif;font-size:18px;font-weight:700;color:#111}
.modal-close{width:34px;height:34px;border:none;background:#f5f5f2;border-radius:50%;font-size:16px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#555;transition:background .15s}
.modal-close:hover{background:#fee2e2;color:var(--brand)}
.modal-body{padding:18px 22px}
/* Addon groups rendered via AJAX — these styles match the addon partial */
.addon-group-box{margin-bottom:22px}
.addon-group-head{font-size:12px;font-weight:700;color:#444;text-transform:uppercase;letter-spacing:.6px;margin-bottom:11px;display:flex;align-items:center;gap:8px}
.addon-req{background:#fee2e2;color:#ef4444;font-size:10px;padding:2px 7px;border-radius:6px;font-weight:700;text-transform:none;letter-spacing:0}
.addon-opt-tag{background:#f0eeeb;color:#999;font-size:10px;padding:2px 7px;border-radius:6px;font-weight:700}
.addon-option{display:flex;align-items:center;gap:11px;padding:11px 14px;border:1.5px solid #eee;border-radius:11px;margin-bottom:8px;cursor:pointer;transition:all .15s}
.addon-option:hover{border-color:var(--brand);background:var(--brand-light)}
.addon-option.selected{border-color:var(--brand);background:var(--brand-light)}
.addon-option input{accent-color:var(--brand);width:17px;height:17px;flex-shrink:0;cursor:pointer}
.addon-option-name{flex:1;font-size:14px;color:#222;font-weight:500}
.addon-option-price{font-size:13px;font-weight:700;color:var(--brand)}
label.addon-option.disabled {
    border: 2px solid #afafaf;
}
.modal-footer{position:sticky;bottom:0;background:#fff;border-top:1px solid #f0eeeb;padding:14px 22px}
.modal-add-btn{display:flex;align-items:center;justify-content:space-between;width:100%;background:var(--brand);color:#fff;border:none;border-radius:13px;padding:15px 20px;font-family:'Syne',sans-serif;font-size:16px;font-weight:700;cursor:pointer;transition:background .15s}
.modal-add-btn:hover{background:var(--brand-dark)}

/* ── CART DRAWER ── */
.drawer-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:3000;opacity:0;transition:opacity .25s}
.drawer-overlay.open{display:block;opacity:1}
.cart-drawer{position:fixed;top:0;right:-420px;width:400px;max-width:100vw;height:100%;background:#fff;z-index:3001;display:flex;flex-direction:column;transition:right .3s cubic-bezier(.4,0,.2,1);box-shadow:-6px 0 40px rgba(0,0,0,.13)}
.cart-drawer.open{right:0}

.drawer-header{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;border-bottom:1px solid #f0eeeb;flex-shrink:0}
.drawer-title{font-size:19px;font-weight:800;color:#111;display:flex;align-items:center;gap:10px}
.drawer-count{font-size:13px;font-weight:400;color:#aaa;font-family:'DM Sans',sans-serif}
.drawer-close-btn{width:36px;height:36px;border:none;background:#f5f5f2;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:16px;color:#555;transition:background .15s,color .15s}
.drawer-close-btn:hover{background:#fee2e2;color:var(--brand)}

.drawer-items{flex:1;overflow-y:auto;padding:12px 22px;scrollbar-width:thin}
.drawer-items::-webkit-scrollbar{width:4px}
.drawer-items::-webkit-scrollbar-thumb{background:#eee;border-radius:4px}
.cart-loading .drawer-items,#cartPanel.cart-loading{position:relative;pointer-events:none}
.cart-loading .drawer-items::after,#cartPanel.cart-loading::after{content:"";position:absolute;inset:0;background:rgba(255,255,255,.58);z-index:2;pointer-events:none}
.cart-loading .drawer-items::before,#cartPanel.cart-loading::before{content:"";position:absolute;top:16px;right:18px;width:20px;height:20px;border:3px solid #f3d4cb;border-top-color:var(--brand);border-radius:50%;animation:ros-spin .75s linear infinite;z-index:3}
.cart-skeleton-row{display:flex;gap:13px;align-items:flex-start;padding:15px 0;border-bottom:1px solid #f5f4f1}
.cart-skeleton-img{width:62px;height:62px;border-radius:11px;flex-shrink:0;background:linear-gradient(90deg,#eee 25%,#f8f8f8 37%,#eee 63%);background-size:400% 100%;animation:cart-shimmer 1.2s ease-in-out infinite}
.cart-skeleton-info{flex:1;min-width:0;padding-top:4px}
.cart-skeleton-line{display:block;height:12px;border-radius:999px;margin-bottom:11px;background:linear-gradient(90deg,#eee 25%,#f8f8f8 37%,#eee 63%);background-size:400% 100%;animation:cart-shimmer 1.2s ease-in-out infinite}
.cart-skeleton-line.wide{width:78%}
.cart-skeleton-line.medium{width:52%}
.cart-skeleton-line.short{width:34%;margin-bottom:0}
@keyframes cart-shimmer{0%{background-position:100% 0}100%{background-position:0 0}}

.drawer-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;padding:40px 20px;text-align:center}
.drawer-empty-icon{width:80px;height:80px;background:var(--brand-light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:34px;color:var(--brand);margin-bottom:18px}
.drawer-empty p{font-family:'Syne',sans-serif;font-size:16px;font-weight:700;color:#333;margin-bottom:6px}
.drawer-empty small{font-size:13px;color:#aaa}

.d-item{display:flex;gap:13px;align-items:flex-start;padding:15px 0;border-bottom:1px solid #f5f4f1;animation:fadeIn .2s ease}
@keyframes fadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.d-item:last-child{border-bottom:none}
.d-item-img{width:62px;height:62px;border-radius:11px;object-fit:cover;flex-shrink:0;background:#f0eeeb}
.d-item-no-img{width:62px;height:62px;border-radius:11px;background:#f0eeeb;display:flex;align-items:center;justify-content:center;color:#d5d2cc;font-size:22px;flex-shrink:0}
.d-item-info{flex:1;min-width:0}
.d-item-name{font-size:14px;font-weight:600;color:#222;margin-bottom:9px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.d-item-sub{font-size:12px;color:#bbb;margin-bottom:5px;line-height:1.4}
.d-item-price{font-size:14px;font-weight:700;color:var(--brand);margin-bottom:9px}
.d-item-compare{font-size:11px;color:#aaa;text-decoration:line-through;margin-bottom:2px}
.d-qty-row{display:flex;align-items:center;gap:0px}
.d-qty-btn{width:26px;height:26px;border:1.5px solid #e8e8e4;border-radius:7px;background:#f9f9f7;font-size:14px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#444;transition:all .15s}
.d-qty-btn:hover{background:var(--brand);color:#fff;border-color:var(--brand)}
.d-qty-num{min-width:28px;text-align:center;font-size:14px;font-weight:700}
.d-remove{background:none;border:none;color:#d5d2cc;cursor:pointer;font-size:15px;padding:4px;transition:color .15s;flex-shrink:0}
.d-remove:hover{color:var(--brand)}
.d-item.bogo-free-item .d-qty-btn,.d-item.bogo-free-item .d-remove{display:none}

/* Coupon */
.drawer-coupon{padding:12px 22px;border-top:1px solid #f5f4f1;flex-shrink:0}
.coupon-label{font-size:11px;font-weight:700;color:#aaa;text-transform:uppercase;letter-spacing:.5px;margin-bottom:7px}
.coupon-row{display:flex;gap:8px}
.coupon-inp{flex:1;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:9px 13px;font-family:'DM Sans',sans-serif;font-size:13px;outline:none;text-transform:uppercase;letter-spacing:1px;transition:border-color .15s;background:#fafaf8}
.coupon-inp:focus{border-color:var(--brand)}
.coupon-btn{background:#111;color:#fff;border:none;border-radius:var(--radius-sm);padding:9px 16px;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:background .15s}
.coupon-btn:hover{background:var(--brand)}
.coupon-applied-row{display:flex;align-items:center;justify-content:space-between;background:#f0fdf4;border:1.5px solid #86efac;border-radius:var(--radius-sm);padding:10px 14px;font-size:13px}
.coupon-applied-code{font-weight:700;color:#15803d}
.coupon-rm-btn{background:none;border:none;color:#15803d;font-weight:700;cursor:pointer;font-size:13px}
.coupon-rm-btn:hover{color:#ef4444}
.coupon-msg{font-size:12px;margin-top:6px;display:none}
.coupon-msg.show{display:block}
.coupon-msg.ok{color:#15803d}
.coupon-msg.err{color:#ef4444}

/* Totals */
.drawer-totals{padding:15px 22px;border-top:1px solid #f0eeeb;flex-shrink:0;background:#fafaf8}
.t-row{display:flex;justify-content:space-between;font-size:14px;color:#666;margin-bottom:7px}
.t-row.disc{color:#15803d}
.t-row.grand{font-size:19px;font-weight:800;color:#111;margin-top:10px;padding-top:12px;border-top:2px solid #111;margin-bottom:0}

/* Drawer footer */
.drawer-footer{padding:16px 22px;border-top:1px solid #f0eeeb;flex-shrink:0}
.checkout-btn,.view-cart-link{display:block;width:100%;background:var(--brand);color:#fff;border:none;border-radius:13px;padding:15px;font-family:'Syne',sans-serif;font-size:16px;font-weight:700;cursor:pointer;text-align:center;text-decoration:none;transition:background .2s,box-shadow .2s;box-shadow:0 4px 16px rgba(232,67,27,.3)}
.checkout-btn:hover{background:var(--brand-dark);color:#fff;box-shadow:0 6px 22px rgba(232,67,27,.4)}
.checkout-btn.off{background:#ddd;cursor:not-allowed;pointer-events:none;box-shadow:none}
.view-cart-link{    background: royalblue;    margin-top: 12px;}
/* .view-cart-link:hover{color:var(--brand)} */

/* Float cart mobile */
.float-cart{display:none;position:fixed;bottom:20px;left:50%;transform:translateX(-50%);z-index:800}

/* Toast */
#toast{position:fixed;bottom:28px;left:50%;transform:translateX(-50%) translateY(10px);background:#111;color:#fff;padding:11px 24px;border-radius:24px;font-size:14px;font-weight:500;z-index:9999;opacity:0;pointer-events:none;transition:opacity .25s,transform .25s;white-space:nowrap}
#toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

.deal-products {
    background: #f8f8f8; border-radius: 10px;
    padding: 12px 14px; margin-bottom: 14px;
}
.deal-products-title {
    font-size: 11px; font-weight: 700; color: #aaa;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px;
}
.deal-prod-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #444; margin-bottom: 4px;
}
.deal-prod-item:last-child { margin-bottom: 0; }
.deal-prod-item i { color: var(--brand); font-size: 10px; flex-shrink: 0; }

/* Responsive */
@media(max-width:768px){
    .cover{height:170px}
    .cover-text h1{font-size:22px}
    .product-grid{grid-template-columns:repeat(2,1fr);gap:15px 10px}
    .float-cart{display:block}
    .product-img {max-height: 200px;min-height: 200px;}
}
@media(max-width:767px){
    .product-layout {
        grid-template-columns: 1fr !important;
    }
    .image-panel {
        position: unset !important;
    }
}
@media(max-width:480px){
    /* .cart-drawer{width:100vw} */
    .product-grid{grid-template-columns:repeat(2,1fr);gap:8px}
    .nav{padding:0 14px;gap:8px}
    .main{padding:20px 8px 100px}
    .qty-val {
        width: 100%;
        max-width: 25px;
    }
    .product-body {
        padding: 13px 10px 14px 10px
    }
    button#addToCartBtn .fa-plus {
        display: none !important;
    }
}
a.btn-link.btn-category {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .18s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--surface-white);
    background-color: var(--brand-main);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
/* -------------------------- sidebar css start ------------------------------- */

.app-sidebar,
.app-sidebar *,
.app-sidebar *::before,
.app-sidebar *::after,
.sidebar-trigger,
.sidebar-trigger *{
    box-sizing:border-box;
}

.app-sidebar{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --radius:16px;--radius-sm:10px;
    font-family:'DM Sans',sans-serif;
}

/* ── Hamburger trigger button ── */
.sidebar-trigger{
    width:40px;height:40px;border-radius:10px;background:#f5f5f2;border:none;
    display:flex;align-items:center;justify-content:center;cursor:pointer;
    flex-shrink:0;transition:background .18s;position:relative;
}
.sidebar-trigger:hover{background:var(--brand-light, #fff3ef)}
.sidebar-trigger .bar-stack{display:flex;flex-direction:column;gap:4px;width:18px}
.sidebar-trigger .bar{height:2px;width:100%;background:#444;border-radius:2px;transition:all .25s cubic-bezier(.4,0,.2,1)}
.sidebar-trigger.is-open .bar:nth-child(1){transform:translateY(6px) rotate(45deg)}
.sidebar-trigger.is-open .bar:nth-child(2){opacity:0}
.sidebar-trigger.is-open .bar:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* ── Overlay ── */
.app-sidebar .overlay{
    display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:4000;
    opacity:0;transition:opacity .28s;
}
.app-sidebar .overlay.open{display:block;opacity:1}

/* ── Drawer panel ── */
.app-sidebar .drawer{
    position:fixed;top:0;left:-320px;width:300px;max-width:88vw;height:100%;
    background:#fff;z-index:4001;display:flex;flex-direction:column;
    transition:left .32s cubic-bezier(.4,0,.2,1);
    box-shadow:8px 0 36px rgba(0,0,0,.16);
}
.app-sidebar .drawer.open{left:0}

/* ── Drawer header (brand + close) ── */
.app-sidebar .drawer-head{
    display:flex;align-items:center;justify-content:space-between;
    padding:20px 20px;border-bottom:1px solid #f0eeeb;flex-shrink:0;
}
.app-sidebar .drawer-brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.app-sidebar .drawer-logo{width:36px;height:36px;border-radius:9px;object-fit:cover}
.app-sidebar .drawer-brand-name{font-family:'Syne',sans-serif;font-weight:800;font-size:16px;color:#111;letter-spacing:-.2px}
.app-sidebar .drawer-close{
    width:32px;height:32px;border-radius:50%;background:#f5f5f2;border:none;
    display:flex;align-items:center;justify-content:center;cursor:pointer;
    color:#666;font-size:14px;transition:all .15s;flex-shrink:0;
}
.app-sidebar .drawer-close:hover{background:#fee2e2;color:var(--brand)}

/* ── Scrollable body ── */
.app-sidebar .drawer-body{flex:1;overflow-y:auto;padding:14px 0 20px}
.app-sidebar .drawer-body::-webkit-scrollbar{width:4px}
.app-sidebar .drawer-body::-webkit-scrollbar-thumb{background:#eee;border-radius:4px}

/* ── Branch switcher block ── */
.app-sidebar .branch-block{padding:0 20px 18px;border-bottom:1px solid #f0eeeb;margin-bottom:14px}
.app-sidebar .branch-label{
    font-size:10.5px;font-weight:700;color:#bbb;text-transform:uppercase;
    letter-spacing:.6px;margin-bottom:10px;
}
.app-sidebar .branch-current{
    display:flex;align-items:center;gap:10px;background:var(--brand-light);
    border:1.5px solid rgba(232,67,27,.2);border-radius:var(--radius-sm);
    padding:11px 13px;cursor:pointer;transition:all .15s;
}
.app-sidebar .branch-current:hover{border-color:var(--brand)}
.app-sidebar .branch-icon{
    width:30px;height:30px;border-radius:8px;background:var(--brand);color:#fff;
    display:flex;align-items:center;justify-content:center;font-size:13px;flex-shrink:0;
}
.app-sidebar .branch-text{flex:1;min-width:0}
.app-sidebar .branch-name{font-size:13px;font-weight:700;color:#222;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.app-sidebar .branch-hint{font-size:10.5px;color:#aaa;margin-top:1px}
.app-sidebar .branch-current .chev{color:var(--brand);font-size:11px;flex-shrink:0;transition:transform .25s}
.app-sidebar .branch-current.open .chev{transform:rotate(180deg)}

.app-sidebar .branch-options{max-height:0;overflow:hidden;transition:max-height .25s ease}
.app-sidebar .branch-options.open{max-height:260px;overflow-y:auto}
.app-sidebar .branch-option-item{
    display:flex;align-items:center;gap:10px;padding:10px 13px;margin-top:7px;
    border-radius:var(--radius-sm);cursor:pointer;transition:background .15s;
    text-decoration:none;color:#555;font-size:12.5px;font-weight:500;
}
.app-sidebar .branch-option-item:hover{background:#f5f5f2}
.app-sidebar .branch-option-item.active{background:var(--brand-light);color:var(--brand);font-weight:700}
.app-sidebar .branch-option-item i{font-size:10px;color:#ccc;flex-shrink:0}
.app-sidebar .branch-option-item.active i{color:var(--brand)}

/* ── Nav section ── */
.app-sidebar .nav-section{padding:0 12px;margin-bottom:6px}
.app-sidebar .nav-section-label{
    font-size:10.5px;font-weight:700;color:#bbb;text-transform:uppercase;
    letter-spacing:.6px;padding:6px 12px 10px;
}
.app-sidebar .nav-link{
    display:flex;align-items:center;gap:13px;padding:12px 12px;border-radius:11px;
    text-decoration:none;color:#444;font-size:13.5px;font-weight:600;
    transition:all .15s;margin-bottom:2px;position:relative;
}
.app-sidebar .nav-link:hover{background:#f5f5f2;color:#222}
.app-sidebar .nav-link.active{background:var(--brand-light);color:var(--brand)}
.app-sidebar .nav-icon{
    width:34px;height:34px;border-radius:9px;background:#f5f5f2;
    display:flex;align-items:center;justify-content:center;font-size:14px;color:#888;
    flex-shrink:0;transition:all .15s;
}
.app-sidebar .nav-link:hover .nav-icon{background:#ebe9e5;color:#555}
.app-sidebar .nav-link.active .nav-icon{background:var(--brand);color:#fff}
.app-sidebar .nav-link-text{flex:1}
.app-sidebar .nav-link .nav-badge{
    background:var(--brand);color:#fff;font-size:10.5px;font-weight:700;
    border-radius:10px;padding:2px 8px;flex-shrink:0;
}
.app-sidebar .nav-link .nav-chevron{color:#ddd;font-size:11px;flex-shrink:0}

/* ── Category links (nested, indented) ── */
.app-sidebar .category-toggle{
    display:flex;align-items:center;gap:13px;padding:12px 12px;border-radius:11px;
    cursor:pointer;color:#444;font-size:13.5px;font-weight:600;transition:all .15s;margin-bottom:2px;
}
.app-sidebar .category-toggle:hover{background:#f5f5f2}
.app-sidebar .category-toggle .nav-chevron{margin-left:auto;transition:transform .25s;color:#ccc;font-size:11px}
.app-sidebar .category-toggle.open .nav-chevron{transform:rotate(180deg)}

.app-sidebar .category-list{max-height:0;overflow:hidden;transition:max-height .28s ease;padding-left:12px}
.app-sidebar .category-list.open{max-height:400px;overflow-y:auto}
.app-sidebar .category-item{
    display:flex;align-items:center;gap:11px;padding:9px 12px 9px 35px;border-radius:9px;
    text-decoration:none;color:#777;font-size:12.5px;font-weight:500;transition:all .15s;
}
.app-sidebar .category-item:hover{background:#f5f5f2;color:#333}
.app-sidebar .category-item img{width:20px;height:20px;border-radius:5px;object-fit:cover;flex-shrink:0}
.app-sidebar .category-item .cat-dot{width:6px;height:6px;border-radius:50%;background:var(--brand);flex-shrink:0}

.app-sidebar .nav-divider{height:1px;background:#f0eeeb;margin:14px 16px}

/* ── Auth block at bottom ── */
.app-sidebar .drawer-footer{padding:16px 16px;border-top:1px solid #f0eeeb;flex-shrink:0}
.app-sidebar .auth-user-row{
    display:flex;align-items:center;gap:11px;padding:10px 8px;margin-bottom:8px;
}
.app-sidebar .auth-avatar{
    width:38px;height:38px;border-radius:50%;background:linear-gradient(135deg,var(--brand),#f5a623);
    display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;
    font-family:'Syne',sans-serif;font-size:15px;flex-shrink:0;
}
.app-sidebar .auth-name{font-size:13px;font-weight:700;color:#222;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.app-sidebar .auth-sub{font-size:11px;color:#aaa}
.app-sidebar .footer-btn{
    display:flex;align-items:center;justify-content:center;gap:8px;width:100%;
    padding:11px;border-radius:var(--radius-sm);font-family:'DM Sans',sans-serif;
    font-size:13px;font-weight:600;cursor:pointer;text-decoration:none;transition:all .18s;
}
.app-sidebar .footer-btn.primary{background:var(--brand);color:#fff;border:none;box-shadow:0 4px 14px rgba(232,67,27,.25)}
.app-sidebar .footer-btn.primary:hover{background:var(--brand-dark)}
.app-sidebar .footer-btn.outline{background:#fff;color:#888;border:1.5px solid #e8e8e4;margin-top:8px}
.app-sidebar .footer-btn.outline:hover{border-color:var(--brand);color:var(--brand)}

@media(max-width:380px){
    /* .app-sidebar .drawer{width:88vw} */
}

/* Wrapper container */
.ros-nav-dropdown-wrapper {
    position: relative;
    width: 100%;
}

/* Arrow indicator handling */
.nav-arrow {
    margin-left: auto;
    font-size: 11px;
    transition: transform 0.2s ease;
    color: #94a3b8;
}
.ros-nav-dropdown-wrapper.open .nav-arrow {
    transform: rotate(180deg);
}

/* Hidden container dropdown */
.ros-dropdown-content {
    display: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    margin-top: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.2s ease-out;
    margin-bottom: 10px;
}

/* Smooth opening animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Input group layouts */
.ros-dropdown-field-group {
    margin-bottom: 12px;
}
.ros-field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}

/* Beautiful Input Box container */
.ros-input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.ros-input-with-icon .input-icon {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 13px;
}
.ros-input-with-icon input {
    width: 100%;
    padding: 10px 12px 10px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}
/* Modern focus state */
.ros-input-with-icon input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #c42f1c; /* Change to your primary layout brand color */
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Premium submit button style */
.ros-dropdown-submit-btn {
    width: 100%;
    background: #e03b25; /* Primary theme color */
    color: #ffffff;
    border: none;
    padding: 10px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}
.ros-dropdown-submit-btn:hover {
    background: #c42f1c;
}

@media (max-width:767px) {
    nav.nav form#branchForm {
        display: none !important;
    }
    nav.nav .nav-auth {
        display: none !important;
    }
}
@media (max-width:425px){
   span.nav-brand-name {
        width: 190px !important;
        font-size: 16px;
        white-space: nowrap;
    } 
}
@media (max-width:370px){
   span.nav-brand-name {
        width: 140px !important;
    } 
}
span.nav-brand-name {
    /* width: 240px; */
    /* text-overflow: ellipsis; */
}
span.nav-brand-name {
  overflow: auto;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE / Edge old */
}

span.nav-brand-name::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Edge */
}

/* -------------------- sidebar css end here ------------------------------------------ */

/* -----------------        product page css start from here ----------------------------- */

/* ── MAIN LAYOUT ── */
.product-page{max-width:1200px;margin:0 auto;padding:32px 24px 80px}
.product-layout{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}

/* ── LEFT: IMAGE PANEL ── */
.image-panel{position:sticky;top:calc(var(--nav-h) + 20px)}
.main-image-wrap{position:relative;border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:var(--shadow-md);aspect-ratio:4/3;margin-bottom:14px}
.main-image-wrap img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.main-image-wrap:hover img{transform:scale(1.03)}
.main-image-no-img{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#f7f6f3,#ede8e3);font-size:72px;color:#d5d2cc}

/* Badges on image */
.img-badges{position:absolute;top:14px;left:14px;display:flex;flex-direction:column;gap:7px;z-index:2}
.img-badge{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:700;padding:4px 10px;border-radius:8px;backdrop-filter:blur(8px);letter-spacing:.4px}
.img-badge.featured{background:var(--brand);color:#fff}
.img-badge.veg{background:rgba(22,163,74,.9);color:#fff}
.img-badge.prep{background:rgba(0,0,0,.6);color:#fff}

/* Thumbnail strip */
.thumbs{display:flex;gap:10px;flex-wrap:wrap}
.thumb{width:70px;height:70px;border-radius:10px;overflow:hidden;cursor:pointer;border:2px solid transparent;transition:all .18s;flex-shrink:0}
.thumb:hover{border-color:var(--brand)}
.thumb.active{border-color:var(--brand);box-shadow:0 0 0 3px var(--brand-light)}
.thumb img{width:100%;height:100%;object-fit:cover;display:block}

/* ── RIGHT: DETAIL PANEL ── */
.product-category-tag{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:var(--brand);background:var(--brand-light);padding:4px 11px;border-radius:8px;text-transform:uppercase;letter-spacing:.6px;margin-bottom:12px}
.product-title{font-family:'Syne',sans-serif;font-size:30px;font-weight:800;color:#111;line-height:1.2;letter-spacing:-.6px;margin-bottom:10px}
.product-meta-row{display:flex;align-items:center;gap:10px;margin-bottom:18px;flex-wrap:wrap}
.meta-chip{display:flex;align-items:center;gap:5px;font-size:12px;color:#666;background:#f5f5f2;border-radius:20px;padding:5px 12px;font-weight:500}
.meta-chip i{color:var(--brand);font-size:11px}
.product-desc{font-size:14px;color:#777;line-height:1.7;}

/* Price block */
.price-block{display:flex;align-items:baseline;gap:10px;margin-bottom:24px}
.price-main{font-family:'Syne',sans-serif;font-size:30px;font-weight:800;color:var(--brand)}
.price-compare{font-size:16px;color:#ccc;text-decoration:line-through}
.price-save{font-size:12px;background:#d1fae5;color:#065f46;padding:4px 10px;border-radius:8px;font-weight:700}
span.req_cstm {
    color: red;
    font-size: 10px;
    text-transform: unset;
    position: relative;
    top: -2px;
}
/* Section titles */
.section-label{font-size:11px;font-weight:700;color:#aaa;text-transform:uppercase;letter-spacing:.8px;margin-bottom:12px}

/* Divider */
.divider{height:1px;background:#f0eeeb;margin:22px 0}

/* ── VARIANTS ── */
.variants-grid{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:4px}
.variant-card{position:relative;border:2px solid #e8e8e4;border-radius:12px;padding:12px 28px;cursor:pointer;transition:all .18s;background:#fff;min-width:110px;text-align:center}
.variant-card:hover{border-color:var(--brand);background:var(--brand-light)}
.variant-card.selected{border-color:var(--brand);background:var(--brand-light)}
.variant-card input{position:absolute;opacity:0;pointer-events:none}
.variant-img{width:44px;height:44px;border-radius:8px;object-fit:cover;display:block;margin:0 auto 8px}
.variant-name{font-size:13px;font-weight:600;color:#333;margin-bottom:3px}
.variant-price{font-size:14px;font-weight:800;color:var(--brand)}
.variant-compare{font-size:11px;color:#ccc;text-decoration:line-through}
.variant-check{position:absolute;top:7px;right:7px;width:18px;height:18px;background:var(--brand);border-radius:50%;display:none;align-items:center;justify-content:center;color:#fff;font-size:9px}
.variant-card.selected .variant-check{display:flex}

/* ── ADDONS ── */
.addon-group-box{margin-bottom:20px}
.addon-group-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.addon-group-name{font-size:13px;font-weight:700;color:#333}
.addon-req-tag{font-size:10px;font-weight:700;padding:3px 8px;border-radius:6px;background:#fee2e2;color:#ef4444}
.addon-opt-tag{font-size:10px;font-weight:700;padding:3px 8px;border-radius:6px;background:#f0eeeb;color:#aaa}
.addon-hint{font-size:11px;color:#bbb;margin-bottom:10px}
.addons-list{display:flex;flex-direction:column;gap:8px}
.addon-option{display:flex;align-items:center;gap:12px;padding:11px 14px;border:2px solid #eee;border-radius:11px;cursor:pointer;transition:all .15s;background:#fff}
.addon-option:hover{border-color:var(--brand);background:var(--brand-light)}
.addon-option.selected{border-color:var(--brand);background:var(--brand-light)}
.addon-option input{accent-color:var(--brand);width:16px;height:16px;flex-shrink:0;cursor:pointer}
.addon-option-img{width:32px;height:32px;border-radius:7px;object-fit:cover;flex-shrink:0}
.addon-option-name{flex:1;font-size:13px;color:#222;font-weight:500}
.addon-option-price{font-size:13px;font-weight:700;color:var(--brand)}
.addon-option-price.free{color:#aaa;font-weight:500}

/* ── SPECIAL INSTRUCTIONS ── */
.instr-textarea{width:100%;border:2px solid #e8e8e4;border-radius:var(--radius-sm);padding:12px 14px;font-family:'DM Sans',sans-serif;font-size:13px;color:#333;resize:none;outline:none;transition:border-color .15s;background:#fafaf8;line-height:1.6}
.instr-textarea:focus{border-color:var(--brand)}
.instr-textarea::placeholder{color:#ccc}

/* ── CART FOOTER (sticky on mobile, inline on desktop) ── */
.product-page .cart-action-row{display:flex;align-items:center;gap:12px;margin-top:24px}
.product-page .qty-box{display:flex;align-items:center;border:2px solid #e8e8e4;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0}
.product-page .qty-btn{width:40px;height:50px;border:none;background:#f5f5f2;font-size:18px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#555;transition:background .15s,color .15s}
.product-page .qty-btn:hover{background:var(--brand);color:#fff}
.product-page .qty-val{width:50px;text-align:center;font-size:16px;font-weight:800;color:#222;user-select:none}
.product-page .add-to-cart-btn{flex:1;display:flex;align-items:center;justify-content:space-between;background:var(--brand);color:#fff;border:none;border-radius:var(--radius-sm);height:50px;padding:0 20px;font-family:'Syne',sans-serif;font-size:15px;font-weight:700;cursor:pointer;transition:background .18s,box-shadow .18s;box-shadow:0 4px 16px rgba(232,67,27,.3)}
.product-page .add-to-cart-btn:hover{background:var(--brand-dark);box-shadow:0 6px 22px rgba(232,67,27,.4)}
.product-page .add-to-cart-btn:disabled{background:#ddd;cursor:not-allowed;box-shadow:none;pointer-events:none}
.product-page .btn-label{display:flex;align-items:center;gap:8px}
.product-page .btn-price{font-size:15px;font-weight:800;opacity:.9}

/* ── RELATED PRODUCTS ── */
.related-section{margin-top:52px;border-top:2px solid #f0eeeb;padding-top:36px}
.related-title{font-family:'Syne',sans-serif;font-size:20px;font-weight:800;color:#111;letter-spacing:-.3px;margin-bottom:22px}
.related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px}
.related-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;border:1px solid rgba(0,0,0,.04);transition:transform .18s,box-shadow .18s;text-decoration:none;color:inherit}
.related-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.related-img{width:100%;height:130px;object-fit:cover;display:block}
.related-no-img{width:100%;height:130px;background:#f0eeeb;display:flex;align-items:center;justify-content:center;color:#d5d2cc;font-size:32px}
.related-body{padding:12px 14px}
.related-name{font-family:'Syne',sans-serif;font-size:13px;font-weight:700;color:#111;margin-bottom:5px;line-height:1.3}
.related-price{font-size:14px;font-weight:800;color:var(--brand)}
.related-compare{font-size:11px;color:#ccc;text-decoration:line-through;margin-left:5px}
.related-add{display:flex;align-items:center;justify-content:center;gap:6px;background:var(--brand);color:#fff;border:none;border-radius:8px;padding:7px 0;font-family:'DM Sans',sans-serif;font-size:12px;font-weight:600;cursor:pointer;width:100%;margin-top:10px;transition:background .15s}
.related-add:hover{background:var(--brand-dark)}


/* ----------------         product page css end here   ---------------------------------- */

/* ---------------          Categories page css start here --------------------------------- */

/* Categories grid */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.cat-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    text-decoration: none; color: inherit;
    transition: transform .15s, box-shadow .15s;
    display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

.cat-img-wrap { position: relative; }
.cat-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.cat-no-img {
    width: 100%; height: 160px;
    background: linear-gradient(135deg, #1a1a2e, var(--brand));
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
}
.cat-count-badge {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,.6); color: #fff; backdrop-filter: blur(4px);
    font-size: 12px; font-weight: 600; padding: 4px 10px;
    border-radius: 8px;
}

.cat-body { padding: 16px; flex: 1; }
.cat-name { font-size: 17px; font-weight: 800; color: #111; margin-bottom: 6px; }
.cat-desc { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 10px; }

/* Subcategories chips */
.sub-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.sub-chip {
    display: inline-block; background: #f5f5f5; color: #555;
    font-size: 11px; font-weight: 600; padding: 3px 10px;
    border-radius: 20px; text-decoration: none;
    transition: all .15s;
}
.sub-chip:hover { background: var(--brand-lt); color: var(--brand); }

.cat-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; border-top: 1px solid #f5f5f5;
    background: #fafafa;
}
.cat-count { font-size: 13px; color: #888; }
.cat-arrow {
    width: 32px; height: 32px; background: var(--brand);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px;
}

/* Pagination */
.store-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 32px; flex-wrap: wrap;
}
.sp-btn {
    width: 38px; height: 38px; display: flex; align-items: center;
    justify-content: center; border-radius: 10px; font-size: 14px;
    font-weight: 600; text-decoration: none; color: #555;
    background: #fff; border: 1.5px solid #e5e5e5; transition: all .15s;
}
.sp-btn:hover  { border-color: var(--brand); color: var(--brand); }
.sp-active     { background: var(--brand); color: #fff !important; border-color: var(--brand); }
.sp-disabled   { opacity: .35; cursor: not-allowed; pointer-events: none; }
.sp-info       { font-size: 13px; color: #aaa; margin-left: 8px; }

/* ---------------------    Categories page css end here ----------------------------------- */

/* --------------------     Category page css start from here ------------------------- */

 /* Main layout */
.category-wrapper-main .layout { display:flex;gap:24px; }
.category-wrapper-main .sidebar { width:220px;flex-shrink:0; }
.category-wrapper-main .content { flex:1;min-width:0; }

/* Sidebar */
.category-wrapper-main .sidebar-card { background:#fff;border-radius:14px;padding:16px;box-shadow:0 2px 8px rgba(0,0,0,.06);margin-bottom:16px; }
.category-wrapper-main .sidebar-title { font-size:12px;font-weight:700;color:#aaa;text-transform:uppercase;letter-spacing:.6px;margin-bottom:12px; }

/* Subcategory list */
.category-wrapper-main .sub-list { list-style:none; }
.category-wrapper-main .sub-item { margin-bottom:4px; }
.category-wrapper-main .sub-link {
    display:flex;align-items:center;justify-content:space-between;
    padding:8px 12px;border-radius:8px;text-decoration:none;
    font-size:14px;color:#444;font-weight:500;
    transition:all .15s;
}
.category-wrapper-main .sub-link:hover { background:var(--brand-lt);color:var(--brand); }
.category-wrapper-main .sub-link.active { background:var(--brand);color:#fff;font-weight:600; }
.category-wrapper-main .sub-link .sub-count { font-size:12px;opacity:.7; }

/* Price filter */
.category-wrapper-main .price-inputs { display:flex;gap:8px;align-items:center;flex-wrap: wrap; }
.category-wrapper-main .price-inp {
    flex:1;border:1.5px solid #e5e5e5;border-radius:8px;
    padding:7px 10px;font-size:13px;outline:none;
}
.category-wrapper-main .price-inp:focus { border-color:var(--brand); }
.category-wrapper-main .price-sep { color:#bbb;font-size:13px; }
.category-wrapper-main .filter-btn {
    width:100%;margin-top:10px;background:var(--brand);color:#fff;
    border:none;border-radius:8px;padding:9px;font-size:13px;
    font-weight:600;cursor:pointer;
}

            /* pagination */
.store-pagination { display:flex;align-items:center;justify-content:center;gap:6px;margin-top:32px;flex-wrap:wrap; }
.sp-btn { width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;color:#555;background:#fff;border:1.5px solid #e5e5e5;transition:all .15s; }
.sp-btn:hover { border-color:var(--brand);color:var(--brand); }
.sp-active { background:var(--brand);color:#fff !important;border-color:var(--brand); }
.sp-disabled { opacity:.35;cursor:not-allowed;pointer-events:none; }
.sp-info { font-size:13px;color:#aaa;margin-left:8px; }

/* Toolbar */
.category-wrapper-main .toolbar {
    display:flex;align-items:center;justify-content:space-between;
    margin-bottom:18px;flex-wrap:wrap;gap:10px;
}
.category-wrapper-main .toolbar-left { display:flex;align-items:center;gap:10px; }
.category-wrapper-main .toolbar-count { font-size:14px;color:#888; }
.category-wrapper-main .sort-select {
    border:1.5px solid #e5e5e5;border-radius:8px;padding:7px 12px;
    font-size:13px;outline:none;background:#fff;cursor:pointer;
}
.category-wrapper-main .sort-select:focus { border-color:var(--brand); }
.category-wrapper-main .search-wrap { position:relative; }
.category-wrapper-main .search-inp {
    border:1.5px solid #e5e5e5;border-radius:8px;
    padding:7px 12px 7px 34px;font-size:13px;outline:none;
    background:#fff;width:200px;
}
.category-wrapper-main .search-inp:focus { border-color:var(--brand); }
.category-wrapper-main .search-icon { position:absolute;left:11px;top:50%;transform:translateY(-50%);color:#bbb;font-size:13px; }

/* Empty state */
.category-wrapper-main .empty-state { text-align:center;padding:60px 20px;color:#bbb; }
.category-wrapper-main .empty-state i { font-size:50px;margin-bottom:14px;display:block; }
.category-wrapper-main .empty-state p { font-size:15px;color:#aaa; }

@media (max-width:768px) {
    .category-wrapper-main .layout { flex-direction:column; }
    .category-wrapper-main .sidebar { width:100%; }
    .category-wrapper-main .prod-grid { grid-template-columns:repeat(2,1fr);gap:10px; }
}
@media (max-width:767px) {
    .category-wrapper-main .sidebar {
        display: none;
    }
}

/* -------------------  Category page css end here ------------------------------- */

/* -------------------  All products page css end here ------------------------------- */

/* PAGE HEADER */
.all_products_cstm .header-search{display:flex;align-items:center;background:#f5f5f2;border:2px solid transparent;border-radius:24px;padding:0 16px;transition:all .18s;flex:1;max-width:360px}
.all_products_cstm .header-search:focus-within{border-color:var(--brand);background:#fff}
.all_products_cstm .header-search i{color:#bbb;font-size:13px;flex-shrink:0}
.all_products_cstm .header-search input{flex:1;border:none;background:none;outline:none;padding:10px;font-family:'DM Sans',sans-serif;font-size:14px;color:#333}
.all_products_cstm .header-search input::placeholder{color:#ccc}
.all_products_cstm .search-clear{background:none;border:none;color:#ccc;cursor:pointer;font-size:13px;padding:2px;display:none}
.all_products_cstm .search-clear.show{display:block}
.all_products_cstm .search-clear:hover{color:var(--brand)}
.all_products_cstm .layout-toggle{display:flex;gap:4px}
.all_products_cstm .layout-btn{width:40px;height:40px;border:1.5px solid #e8e8e4;background:#fff;border-radius:8px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#aaa;transition:all .15s}
.all_products_cstm .layout-btn.active,.layout-btn:hover{border-color:var(--brand);color:var(--brand);background:var(--brand-light)}

.all_products_cstm .header-search {background: #fff; margin-right: 15px;}
/* BODY */
.all_products_cstm .page-body{margin:0 auto;padding:24px 24px 80px;display:grid;grid-template-columns:var(--sidebar-w) 1fr;gap:28px;align-items:start}

/* SIDEBAR */
.all_products_cstm .sidebar{position:sticky;top:calc(var(--nav-h) + 20px)}
.all_products_cstm .filter-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;margin-bottom:16px}
.all_products_cstm .filter-card-head{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;border-bottom:1px solid #f0eeeb}
.all_products_cstm .filter-card-title{font-family:'Syne',sans-serif;font-size:13px;font-weight:700;color:#111;display:flex;align-items:center;gap:7px}
.all_products_cstm .filter-card-title i{color:var(--brand);font-size:12px}
.filter-clear-link{font-size:12px;color:var(--brand);text-decoration:none;font-weight:600;cursor:pointer;background:none;border:none;padding:0}
.filter-card-body{padding:14px 18px}
.active-filters{display:flex;flex-wrap:wrap;gap:7px}
.active-filter-chip{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--brand);background:var(--brand-light);border:1.5px solid rgba(232,67,27,.2);border-radius:20px;padding:4px 10px}
.chip-remove{background:none;border:none;color:var(--brand);cursor:pointer;font-size:11px;display:flex;align-items:center;padding:0}
.chip-remove:hover{color:var(--brand-dark)}
.sort-select{width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:9px 28px 9px 12px;font-family:'DM Sans',sans-serif;font-size:13px;color:#333;background:#fafaf8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center;outline:none;cursor:pointer;transition:border-color .15s;-webkit-appearance:none}
.sort-select:focus{border-color:var(--brand)}
.cat-filter-list{display:flex;flex-direction:column;gap:3px}
.cat-filter-item{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:9px;cursor:pointer;transition:background .15s;text-decoration:none;color:#555;font-size:13px;font-weight:500}
.cat-filter-item:hover{background:#f5f5f2;color:#333}
.cat-filter-item.active{background:var(--brand-light);color:var(--brand);font-weight:600}
.cat-filter-item img{width:24px;height:24px;border-radius:6px;object-fit:cover;flex-shrink:0}
.cat-icon-box{width:24px;height:24px;border-radius:6px;background:#f0eeeb;display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0}
.cat-count{margin-left:auto;font-size:11px;color:#bbb;background:#f0eeeb;padding:2px 7px;border-radius:8px;font-weight:600}
.cat-filter-item.active .cat-count{background:rgba(232,67,27,.15);color:var(--brand)}

/* Price range */
.price-range-vals{display:flex;justify-content:space-between;font-size:12px;color:#aaa;margin-bottom:12px}
.price-range-vals strong{color:#333;font-size:13px}
.range-track{position:relative;height:4px;background:#e8e8e4;border-radius:2px;margin:8px 0 6px}
.range-fill{position:absolute;height:100%;background:var(--brand);border-radius:2px;pointer-events:none}
.range-input{position:absolute;width:100%;height:4px;background:none;outline:none;-webkit-appearance:none;pointer-events:none;top:0;left:0}
.range-input::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;border-radius:50%;background:#fff;border:2.5px solid var(--brand);cursor:pointer;pointer-events:all;box-shadow:0 2px 8px rgba(0,0,0,.15);transition:transform .15s}
.range-input::-webkit-slider-thumb:hover{transform:scale(1.2)}
.range-input::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:#fff;border:2.5px solid var(--brand);cursor:pointer;pointer-events:all}
.price-inputs{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:14px}
.price-inp-wrap label{font-size:10px;font-weight:700;color:#aaa;text-transform:uppercase;letter-spacing:.5px;display:block;margin-bottom:4px}
.price-inp-wrap input{width:100%;border:1.5px solid #e8e8e4;border-radius:8px;padding:8px 10px;font-family:'DM Sans',sans-serif;font-size:13px;color:#333;background:#fafaf8;outline:none;transition:border-color .15s}
.price-inp-wrap input:focus{border-color:var(--brand)}

.filter-apply-btn{display:block;width:100%;background:var(--brand);color:#fff;border:none;border-radius:var(--radius-sm);padding:11px;font-family:'Syne',sans-serif;font-size:14px;font-weight:700;cursor:pointer;text-align:center;transition:background .15s;box-shadow:0 3px 12px rgba(232,67,27,.25)}
.filter-apply-btn:hover{background:var(--brand-dark)}

/* RESULTS */
.results-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px;gap:12px;flex-wrap:wrap}
.results-info{font-size:13px;color:#aaa}
.results-info strong{color:#333;font-weight:600}
.mobile-filter-btn{display:none;align-items:center;gap:7px;font-size:13px;font-weight:600;color:#333;background:#fff;border:1.5px solid #e8e8e4;border-radius:20px;padding:8px 16px;cursor:pointer;transition:all .18s}
.mobile-filter-btn:hover{border-color:var(--brand);color:var(--brand)}
.filter-dot{width:7px;height:7px;border-radius:50%;background:var(--brand);display:none;margin-left:2px}
.filter-dot.show{display:inline-block}

/* PRODUCT GRID */
.product-grid.list-view{grid-template-columns:1fr;gap:12px}

/* List view card adjustments */
.product-grid.list-view .product-card{flex-direction:row;height:120px}
.product-grid.list-view .product-img-link{width:120px;flex-shrink:0}
.product-grid.list-view .product-img{width:120px;height:120px}
.product-grid.list-view .product-no-img{width:120px;height:120px}
.product-grid.list-view .product-body{flex-direction:row;align-items:center;gap:14px;padding:10px 14px;overflow:hidden}
.product-grid.list-view .product-info{flex:1;min-width:0;overflow:hidden}
.product-grid.list-view .product-desc{-webkit-line-clamp:1}
.product-grid.list-view .cart-area{flex-shrink:0;min-width:160px}
.product-grid.list-view .product-cat-tag{display:none}
.product-grid.list-view .variant-select{margin-bottom:6px}

/* EMPTY */
.all_products_cstm .empty-state{text-align:center;padding:64px 24px;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow)}
.all_products_cstm .empty-icon{font-size:52px;margin-bottom:16px}
.all_products_cstm .empty-title{font-family:'Syne',sans-serif;font-size:20px;font-weight:800;color:#111;margin-bottom:8px}
.all_products_cstm .empty-sub{font-size:14px;color:#aaa;max-width:320px;margin:0 auto 24px;line-height:1.6}
.all_products_cstm .empty-btn{display:inline-flex;align-items:center;gap:7px;background:var(--brand);color:#fff;border:none;border-radius:24px;padding:11px 22px;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:600;cursor:pointer;text-decoration:none;transition:background .15s}
.all_products_cstm .empty-btn:hover{background:var(--brand-dark);color:#fff}


/* MOBILE FILTER DRAWER */
.filter-drawer-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:2000;opacity:0;transition:opacity .25s}
.filter-drawer-overlay.open{display:block;opacity:1}
.filter-drawer{position:fixed;left:-320px;top:0;width:300px;max-width:92vw;height:100%;background:#fff;z-index:2001;transition:left .3s cubic-bezier(.4,0,.2,1);box-shadow:6px 0 30px rgba(0,0,0,.12);display:flex;flex-direction:column}
.filter-drawer.open{left:0}
.filter-drawer-head{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;border-bottom:1px solid #f0eeeb;flex-shrink:0}
.filter-drawer-title{font-family:'Syne',sans-serif;font-size:18px;font-weight:800;color:#111}
.filter-drawer-close{width:34px;height:34px;border:none;background:#f5f5f2;border-radius:50%;font-size:16px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#555;transition:background .15s}
.filter-drawer-close:hover{background:#fee2e2;color:var(--brand)}
.filter-drawer-body{flex:1;overflow-y:auto;padding:16px 20px}
.filter-drawer-footer{padding:14px 20px;border-top:1px solid #f0eeeb;flex-shrink:0;display:flex;gap:10px}
.fd-reset-btn{flex:1;background:#f5f5f2;color:#555;border:none;border-radius:var(--radius-sm);padding:12px;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:background .15s}
.fd-reset-btn:hover{background:#e8e8e4}
.fd-apply-btn{flex:2;background:var(--brand);color:#fff;border:none;border-radius:var(--radius-sm);padding:12px;font-family:'Syne',sans-serif;font-size:14px;font-weight:700;cursor:pointer;transition:background .15s}
.fd-apply-btn:hover{background:var(--brand-dark)}
.fd-section-label{font-size:10px;font-weight:700;color:#bbb;text-transform:uppercase;letter-spacing:.7px;margin:0 0 10px;display:block}

.filters_cstm_all_pdp {
    display: flex;
}

/* RESPONSIVE */
@media(max-width:1024px){:root{--sidebar-w:220px}}
@media(max-width:768px){
    .all_products_cstm .page-body{grid-template-columns:1fr}
    .all_products_cstm .sidebar{display:none}
    .all_products_cstm .mobile-filter-btn{display:flex}
    .all_products_cstm .product-grid{grid-template-columns:repeat(2,1fr);gap:30px 12px;}
}
@media(max-width:480px){
    .all_products_cstm .nav{padding:0 14px;gap:8px}
    .all_products_cstm .page-header,.breadcrumb-bar{padding:12px 14px}
    .all_products_cstm .page-body{padding:16px 14px 100px}
    .all_products_cstm .product-grid{gap:20px 8px;}
}




/* ------------------------- All products page css end here -------------------------------- */

/* --------------- cart page css start here --------------------------------- */

.ros-body{font-family:'DM Sans',sans-serif;background:#f7f6f3;color:#1a1a1a}
.ros-page-head{max-width:1200px;margin:0 auto;padding:28px 24px 0}
.ros-page-title{font-family:'Syne',sans-serif;font-size:26px;font-weight:800;color:#111;letter-spacing:-.4px;display:flex;align-items:center;gap:10px}
.ros-page-title i{color:var(--brand)}
.ros-page-subtitle{font-size:13px;color:#aaa;margin-top:4px}

.ros-steps-row{display:flex;align-items:center;gap:8px;margin:18px 0 4px;flex-wrap:wrap}
.ros-step-chip{display:flex;align-items:center;gap:7px;font-size:12px;font-weight:600;color:#aaa;padding:6px 4px}
.ros-step-chip.active{color:var(--brand)}
.ros-step-num{width:22px;height:22px;border-radius:50%;background:#f0eeeb;color:#aaa;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700}
.ros-step-chip.active .ros-step-num{background:var(--brand);color:#fff}
.ros-step-divider{width:30px;height:1.5px;background:#e8e8e4}

.ros-cart-page{max-width:1200px;margin:0 auto;padding:20px 24px 80px;display:grid;grid-template-columns:1fr 360px;gap:28px;align-items:start}

.ros-panel{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.ros-panel-head{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;border-bottom:1px solid #f0eeeb}
.ros-panel-title{font-family:'Syne',sans-serif;font-size:16px;font-weight:700;color:#111}
.ros-clear-btn{font-size:12px;font-weight:600;color:#bbb;background:none;border:none;cursor:pointer;display:flex;align-items:center;gap:5px;transition:color .15s}
.ros-clear-btn:hover{color:var(--brand)}

.ros-cart-item{display:flex;gap:16px;padding:20px 22px;border-bottom:1px solid #f5f4f1;align-items:flex-start;transition:opacity .25s,transform .25s}
.ros-cart-item:last-child{border-bottom:none}
.ros-cart-item.removing{opacity:0;transform:translateX(20px)}
.ros-ci-img{width:84px;height:84px;border-radius:13px;object-fit:cover;flex-shrink:0;background:#f0eeeb}
.ros-ci-no-img{width:84px;height:84px;border-radius:13px;background:#f0eeeb;display:flex;align-items:center;justify-content:center;color:#d5d2cc;font-size:28px;flex-shrink:0}
.ros-ci-info{flex:1;min-width:0}
.ros-ci-top-row{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.ros-ci-name{font-family:'Syne',sans-serif;font-size:15px;font-weight:700;color:#111;line-height:1.35}
.ros-ci-remove{background:none;border:none;color:#d5d2cc;cursor:pointer;font-size:14px;padding:4px;transition:color .15s;flex-shrink:0}
.ros-ci-remove:hover{color:var(--brand)}
.ros-ci-sub{font-size:12px;color:#aaa;margin-top:3px;line-height:1.6}
.ros-ci-sub strong{color:#888;font-weight:600}
.ros-ci-instructions{font-size:12px;color:#bbb;margin-top:5px;font-style:italic;display:flex;align-items:flex-start;gap:5px}
.ros-ci-instructions i{color:#ddd;margin-top:1px;flex-shrink:0}
.ros-ci-bottom-row{display:flex;align-items:center;justify-content:space-between;margin-top:12px;flex-wrap:wrap;gap:10px}

.ros-qty-box{display:flex;align-items:center;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0}
.ros-qty-btn{width:30px;height:32px;border:none;background:#f5f5f2;font-size:15px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#555;transition:background .15s,color .15s}
.ros-qty-btn:hover{background:var(--brand);color:#fff}
.ros-qty-val{width:38px;text-align:center;font-size:14px;font-weight:700;color:#222}

.ros-ci-price-block{text-align:right}
.ros-ci-unit-price{font-size:11px;color:#bbb}
.ros-ci-compare-price{font-size:11px;color:#aaa;text-decoration:line-through}
.ros-ci-line-total{font-size:16px;font-weight:800;color:var(--brand)}

.ros-empty{text-align:center;padding:70px 24px;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow)}
.ros-empty-icon{width:96px;height:96px;background:var(--brand-light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:38px;color:var(--brand);margin:0 auto 22px}
.ros-empty-title{font-family:'Syne',sans-serif;font-size:22px;font-weight:800;color:#111;margin-bottom:8px}
.ros-empty-sub{font-size:14px;color:#aaa;margin-bottom:26px}
.ros-browse-btn{display:inline-flex;align-items:center;gap:8px;background:var(--brand);color:#fff;border:none;border-radius:24px;padding:13px 26px;font-family:'Syne',sans-serif;font-size:14px;font-weight:700;cursor:pointer;text-decoration:none;transition:background .18s;box-shadow:0 4px 16px rgba(232,67,27,.3)}
.ros-browse-btn:hover{background:var(--brand-dark);color:#fff}

.ros-summary{position:sticky;top:90px;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-md);overflow:hidden}
.ros-summary-head{padding:18px 22px;border-bottom:1px solid #f0eeeb}
.ros-summary-title{font-family:'Syne',sans-serif;font-size:16px;font-weight:700;color:#111}

.ros-coupon-section{padding:18px 22px;border-bottom:1px solid #f0eeeb}
.ros-coupon-label{font-size:11px;font-weight:700;color:#aaa;text-transform:uppercase;letter-spacing:.5px;margin-bottom:9px}
.ros-coupon-row{display:flex;gap:8px}
.ros-coupon-inp{flex:1;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:10px 13px;font-family:'DM Sans',sans-serif;font-size:13px;outline:none;text-transform:uppercase;letter-spacing:1px;transition:border-color .15s;background:#fafaf8}
.ros-coupon-inp:focus{border-color:var(--brand)}
.ros-coupon-btn{background:#111;color:#fff;border:none;border-radius:var(--radius-sm);padding:10px 18px;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:background .15s;white-space:nowrap}
.ros-coupon-btn:hover{background:var(--brand)}
.ros-coupon-btn:disabled{opacity:.5;cursor:not-allowed}
.ros-coupon-applied-row{display:flex;align-items:center;justify-content:space-between;background:#f0fdf4;border:1.5px solid #86efac;border-radius:var(--radius-sm);padding:11px 14px;font-size:13px}
.ros-coupon-applied-code{font-weight:700;color:#15803d;display:flex;align-items:center;gap:6px}
.ros-coupon-rm-btn{background:none;border:none;color:#15803d;font-weight:700;cursor:pointer;font-size:13px}
.ros-coupon-rm-btn:hover{color:#ef4444}
.ros-coupon-msg{font-size:12px;margin-top:7px;display:none}
.ros-coupon-msg.show{display:block}
.ros-coupon-msg.ok{color:#15803d}
.ros-coupon-msg.err{color:#ef4444}

.ros-totals{padding:18px 22px}
.ros-t-row{display:flex;justify-content:space-between;font-size:14px;color:#666;margin-bottom:11px}
.ros-t-row.disc{color:#15803d}
.ros-t-row span:last-child{font-weight:600;color:#333}
.ros-t-row.disc span:last-child{color:#15803d}
.ros-t-divider{height:1px;background:#f0eeeb;margin:14px 0}
.ros-t-row.grand{font-size:20px;font-weight:800;color:#111;margin-bottom:0}
.ros-t-row.grand span:last-child{color:var(--brand)}

.ros-summary-footer{padding:18px 22px;border-top:1px solid #f0eeeb}
.ros-checkout-btn{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;background:var(--brand);color:#fff;border:none;border-radius:13px;padding:16px;font-family:'Syne',sans-serif;font-size:15px;font-weight:700;cursor:pointer;text-decoration:none;transition:background .2s,box-shadow .2s;box-shadow:0 4px 16px rgba(232,67,27,.3)}
.ros-checkout-btn:hover{background:var(--brand-dark);color:#fff;box-shadow:0 6px 22px rgba(232,67,27,.4)}
.ros-continue-link{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;margin-top:12px;font-size:13px;color:#999;text-decoration:none;font-weight:500;transition:color .15s}
.ros-continue-link:hover{color:var(--brand)}

.ros-trust-row{display:flex;align-items:center;justify-content:center;gap:18px;padding:14px 22px;border-top:1px solid #f0eeeb;flex-wrap:wrap}
.ros-trust-item{display:flex;align-items:center;gap:6px;font-size:11px;color:#bbb;font-weight:500}
.ros-trust-item i{color:var(--brand);font-size:12px}

#ros-toast{position:fixed;bottom:28px;left:50%;transform:translateX(-50%) translateY(10px);background:#111;color:#fff;padding:11px 24px;border-radius:24px;font-size:14px;font-weight:500;z-index:9999;opacity:0;pointer-events:none;transition:opacity .25s,transform .25s;white-space:nowrap}
#ros-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

@media(max-width:860px){.ros-cart-page{grid-template-columns:1fr;gap:18px}.ros-summary{position:static}}
@media(max-width:560px){
.ros-page-head{padding:14px}
.ros-cart-page{padding:16px 14px 100px}
.ros-cart-item{padding:16px 14px;gap:12px}
.ros-ci-img,.ros-ci-no-img{width:68px;height:68px}
.ros-steps-row{display:none}
}

.d-none {
display: none !important;
}

/* py-2: Standard vertical padding (0.5rem is equivalent to roughly 8px) */
.py-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}

/* text-muted: Muted text/secondary font color */
.text-muted {
color: #6c757d !important;
}

/* text-primary: Primary theme color (Bootstrap's default blue, adjust if needed) */
.text-primary {
color: #0d6efd !important;
}

/* fw-bold: Font weight bold */
.fw-bold {
font-weight: 700 !important;
}

/* alert & alert-danger: Styling for the invalid coupon code box */
.alert {
position: relative;
padding: 0.75rem 1.25rem;
border: 1px solid transparent;
border-radius: 0.25rem;
}

.alert-danger {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
div#couponForm {
margin-bottom: 10px;
}


/* --------------- cart page css end here --------------------------------- */

/* --------------------------- Checkout page css start from here --------------- */

.checkout_wrapper_cstm .ros-steps-row { display: flex; align-items: center; gap: 8px; margin: 18px 0 4px; flex-wrap: wrap; }
.checkout_wrapper_cstm .ros-step-chip { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #aaa; padding: 6px 4px; }
.checkout_wrapper_cstm .ros-step-chip.active, .checkout_wrapper_cstm .ros-step-chip.done { color: var(--brand); }
.checkout_wrapper_cstm .ros-step-num { width: 22px; height: 22px; border-radius: 50%; background: #f0eeeb; color: #aaa; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.checkout_wrapper_cstm .ros-step-chip.active .ros-step-num, .checkout_wrapper_cstm .ros-step-chip.done .ros-step-num { background: var(--brand); color: #fff; }
.checkout_wrapper_cstm .ros-step-divider { width: 30px; height: 1.5px; background: #e8e8e4; }

.checkout_wrapper_cstm .ros-checkout-page { max-width: 1100px; margin: 0 auto; padding: 20px 24px 100px; display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }

.checkout_wrapper_cstm .ros-alert { border-radius: var(--radius-sm); padding: 13px 16px; font-size: 13px; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 10px; }
.checkout_wrapper_cstm .ros-alert-danger { background: #fef2f2; color: #b91c1c; border: 1.5px solid #fecaca; }
.checkout_wrapper_cstm .ros-alert ul { margin: 0; padding-left: 18px; }

.checkout_wrapper_cstm .ros-form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 20px; }
.checkout_wrapper_cstm .ros-form-card-head { display: flex; align-items: center; gap: 10px; padding: 18px 22px; border-bottom: 1px solid #f0eeeb; }
.checkout_wrapper_cstm .ros-form-card-num { width: 26px; height: 26px; border-radius: 50%; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.checkout_wrapper_cstm .ros-form-card-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #111; }
.checkout_wrapper_cstm .ros-form-card-body { padding: 20px 22px; }

.checkout_wrapper_cstm .ros-order-type-row { display: flex; gap: 10px; margin-bottom: 18px; }
.checkout_wrapper_cstm .ros-order-type-btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 10px; border: 2px solid #e8e8e4; border-radius: 13px; cursor: pointer; transition: all .18s; background: #fff; }
.checkout_wrapper_cstm .ros-order-type-btn:hover { border-color: var(--brand); background: var(--brand-light); }
.checkout_wrapper_cstm .ros-order-type-btn.active { border-color: var(--brand); background: var(--brand-light); }
.checkout_wrapper_cstm .ros-order-type-btn i { font-size: 20px; color: #aaa; }
.checkout_wrapper_cstm .ros-order-type-btn.active i { color: var(--brand); }
.checkout_wrapper_cstm .ros-order-type-btn span { font-size: 13px; font-weight: 600; color: #555; }
.checkout_wrapper_cstm .ros-order-type-btn.active span { color: var(--brand); }
.checkout_wrapper_cstm .ros-order-type-btn input { position: absolute; opacity: 0; pointer-events: none; }

.checkout_wrapper_cstm .ros-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout_wrapper_cstm .ros-field-wrap { margin-bottom: 16px; }
.checkout_wrapper_cstm .ros-field-wrap label { font-size: 12px; font-weight: 700; color: #555; display: block; margin-bottom: 7px; }
.checkout_wrapper_cstm .ros-field-wrap label .opt { color: #ccc; font-weight: 400; }
.checkout_wrapper_cstm .ros-field-wrap label .req { color: var(--brand); }
.checkout_wrapper_cstm .ros-field-wrap input, .checkout_wrapper_cstm .ros-field-wrap textarea { width: 100%; border: 1.5px solid #e8e8e4; border-radius: var(--radius-sm); padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: #222; background: #fafaf8; outline: none; transition: border-color .15s; }
.checkout_wrapper_cstm .ros-field-wrap input:focus, .checkout_wrapper_cstm .ros-field-wrap textarea:focus { border-color: var(--brand); }
.checkout_wrapper_cstm .ros-field-wrap textarea { resize: none; line-height: 1.6; }
.checkout_wrapper_cstm .ros-location-btn { width: 40%; min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1.5px solid var(--brand); border-radius: 13px; background: var(--brand); color: #fff; font-family: 'Syne', sans-serif; font-size: 13.5px; font-weight: 800; cursor: pointer; box-shadow: 0 4px 16px rgba(232, 67, 27, .22); transition: background .18s, border-color .18s, box-shadow .18s, transform .18s; }
.checkout_wrapper_cstm .ros-location-btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 7px 22px rgba(232, 67, 27, .32); transform: translateY(-1px); }
.checkout_wrapper_cstm .ros-location-btn:disabled { cursor: wait; opacity: .78; transform: none; box-shadow: none; }
.checkout_wrapper_cstm .ros-location-icon { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .16); color: #fff; font-size: 14px; flex-shrink: 0; }
.checkout_wrapper_cstm .ros-location-status { margin-top: 9px; border-radius: 10px; padding: 9px 11px; display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.45; font-weight: 600; }
.checkout_wrapper_cstm .ros-location-status::before { font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; margin-top: 1px; flex-shrink: 0; }
.checkout_wrapper_cstm .ros-location-status.error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.checkout_wrapper_cstm .ros-location-status.error::before { content: "\f071"; }
.checkout_wrapper_cstm .ros-location-status.pending { background: #f8fafc; border: 1px solid #e2e8f0; color: #475569; }
.checkout_wrapper_cstm .ros-location-status.pending::before { content: "\f110"; }
.checkout_wrapper_cstm .ros-location-status.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.checkout_wrapper_cstm .ros-location-status.success::before { content: "\f058"; }

.checkout_wrapper_cstm .ros-coupon-applied-row { display: flex; align-items: center; justify-content: space-between; background: #f0fdf4; border: 1.5px solid #86efac; border-radius: var(--radius-sm); padding: 11px 14px; font-size: 13px; gap: 10px; }
.checkout_wrapper_cstm .ros-coupon-applied-code { font-weight: 700; color: #15803d; }
.checkout_wrapper_cstm .ros-coupon-rm-btn { background: none; border: none; color: #15803d; font-weight: 700; cursor: pointer; font-size: 13px; flex-shrink: 0; }
.checkout_wrapper_cstm .ros-coupon-rm-btn:hover { color: #ef4444; }
.checkout_wrapper_cstm .ros-coupon-row { display: flex; gap: 8px; }
.checkout_wrapper_cstm .ros-coupon-inp { flex: 1; border: 1.5px solid #e8e8e4; border-radius: var(--radius-sm); padding: 10px 13px; font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none; text-transform: uppercase; letter-spacing: 1px; transition: border-color .15s; background: #fafaf8; }
.checkout_wrapper_cstm .ros-coupon-inp:focus { border-color: var(--brand); }
.checkout_wrapper_cstm .ros-coupon-btn { background: #111; color: #fff; border: none; border-radius: var(--radius-sm); padding: 10px 18px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s; white-space: nowrap; }
.checkout_wrapper_cstm .ros-coupon-btn:hover { background: var(--brand); }
.checkout_wrapper_cstm .ros-coupon-msg { font-size: 12px; margin-top: 7px; }
.checkout_wrapper_cstm .ros-coupon-msg.ok { color: #15803d; }
.checkout_wrapper_cstm .ros-coupon-msg.err { color: #ef4444; }

.checkout_wrapper_cstm .ros-guest-toggle { font-size: 12.5px; font-weight: 600; color: #555; background: #f5f5f2; border: 1.5px solid #e8e8e4; border-radius: var(--radius-sm); padding: 11px 14px; cursor: pointer; width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; transition: all .15s; }
.checkout_wrapper_cstm .ros-guest-toggle:hover { border-color: var(--brand); color: var(--brand); }
.checkout_wrapper_cstm .ros-guest-fields { margin-top: 12px; display: none; }
.checkout_wrapper_cstm .ros-guest-fields.show { display: block; }

.checkout_wrapper_cstm .ros-payment-list { display: flex; flex-direction: column; gap: 9px; }
.checkout_wrapper_cstm .ros-payment-option { display: flex; align-items: flex-start; gap: 13px; padding: 14px 16px; border: 1.5px solid #e8e8e4; border-radius: 13px; cursor: pointer; transition: all .15s; }
.checkout_wrapper_cstm .ros-payment-option:hover, .checkout_wrapper_cstm .ros-payment-option.selected { border-color: var(--brand); background: var(--brand-light); }
.checkout_wrapper_cstm .ros-payment-option input { accent-color: var(--brand); width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.checkout_wrapper_cstm .ros-payment-icon { width: 38px; height: 38px; border-radius: 9px; background: #f0eeeb; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.checkout_wrapper_cstm .ros-payment-option.selected .ros-payment-icon { background: var(--brand-light); }
.checkout_wrapper_cstm .ros-payment-name { font-size: 13.5px; font-weight: 700; color: #222; }
.checkout_wrapper_cstm .ros-payment-detail { font-size: 11.5px; color: #999; margin-top: 2px; line-height: 1.5; }
.checkout_wrapper_cstm .ros-payment-instructions { font-size: 11px; color: #bbb; font-style: italic; margin-top: 4px; line-height: 1.5; }
.checkout_wrapper_cstm .ros-proof-notice { background: #eff6ff; border: 1.5px solid #bfdbfe; color: #1e40af; border-radius: var(--radius-sm); padding: 12px 14px; font-size: 12.5px; margin-top: 14px; display: flex; align-items: flex-start; gap: 9px; }
.checkout_wrapper_cstm .ros-proof-notice.d-none { display: none; }
.checkout_wrapper_cstm .ros-no-methods { font-size: 13px; color: #aaa; text-align: center; padding: 14px; }

.checkout_wrapper_cstm .ros-summary { position: sticky; top: 90px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.checkout_wrapper_cstm .ros-summary-head { padding: 18px 22px; border-bottom: 1px solid #f0eeeb; display: flex; align-items: center; justify-content: space-between; }
.checkout_wrapper_cstm .ros-summary-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: #111; }
.checkout_wrapper_cstm .ros-summary-edit { font-size: 12px; color: var(--brand); text-decoration: none; font-weight: 600; }
.checkout_wrapper_cstm .ros-summary-edit:hover { color: var(--brand-dark); }

.checkout_wrapper_cstm .ros-summary-items { padding: 14px 22px; max-height: 280px; overflow-y: auto; border-bottom: 1px solid #f0eeeb; }
.checkout_wrapper_cstm .ros-si-row { display: flex; gap: 11px; padding: 9px 0; }
.checkout_wrapper_cstm .ros-si-qty { width: 26px; height: 26px; border-radius: 7px; background: var(--brand-light); color: var(--brand); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.checkout_wrapper_cstm .ros-si-info { flex: 1; min-width: 0; }
.checkout_wrapper_cstm .ros-si-name { font-size: 13px; font-weight: 600; color: #222; line-height: 1.4; }
.checkout_wrapper_cstm .ros-si-sub { font-size: 11px; color: #bbb; margin-top: 2px; line-height: 1.4; }
.checkout_wrapper_cstm .ros-si-price { font-size: 13px; font-weight: 700; color: var(--brand); flex-shrink: 0; white-space: nowrap; }

.checkout_wrapper_cstm .ros-totals { padding: 16px 22px; }
.checkout_wrapper_cstm .ros-t-row { display: flex; justify-content: space-between; font-size: 13.5px; color: #666; margin-bottom: 10px; }
.checkout_wrapper_cstm .ros-t-row.disc { color: #15803d; }
.checkout_wrapper_cstm .ros-t-row span:last-child { font-weight: 600; color: #333; }
.checkout_wrapper_cstm .ros-t-row.disc span:last-child { color: #15803d; }
.checkout_wrapper_cstm .ros-t-divider { height: 1px; background: #f0eeeb; margin: 13px 0; }
.checkout_wrapper_cstm .ros-t-row.grand { font-size: 19px; font-weight: 800; color: #111; margin-bottom: 0; }
.checkout_wrapper_cstm .ros-t-row.grand span:last-child { color: var(--brand); }

.checkout_wrapper_cstm .ros-summary-footer { padding: 18px 22px; border-top: 1px solid #f0eeeb; }
.checkout_wrapper_cstm .ros-captcha-wrap { display: flex; justify-content: center; margin-bottom: 14px; min-height: 78px; overflow-x: auto; }
.checkout_wrapper_cstm .ros-place-order-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--brand); color: #fff; border: none; border-radius: 13px; padding: 16px; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s, box-shadow .2s; box-shadow: 0 4px 16px rgba(232, 67, 27, .3); }
.checkout_wrapper_cstm .ros-place-order-btn:hover { background: var(--brand-dark); box-shadow: 0 6px 22px rgba(232, 67, 27, .4); }
.checkout_wrapper_cstm .ros-place-order-btn:disabled { background: #ddd; cursor: not-allowed; box-shadow: none; }
.checkout_wrapper_cstm .ros-place-order-note { font-size: 11px; color: #bbb; text-align: center; margin-top: 11px; line-height: 1.5; }

.checkout_wrapper_cstm .ros-trust-row { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 14px 22px; border-top: 1px solid #f0eeeb; flex-wrap: wrap; }
.checkout_wrapper_cstm .ros-trust-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #bbb; font-weight: 500; }
.checkout_wrapper_cstm .ros-trust-item i { color: var(--brand); font-size: 12px; }

.checkout_wrapper_cstm #ros-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(10px); background: #111; color: #fff; padding: 11px 24px; border-radius: 24px; font-size: 14px; font-weight: 500; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; white-space: nowrap; }
.checkout_wrapper_cstm #ros-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.checkout_wrapper_cstm .ros-submit-overlay { display: none; position: fixed; inset: 0; background: rgba(255, 255, 255, .85); z-index: 5000; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.checkout_wrapper_cstm .ros-submit-overlay.show { display: flex; }
.checkout_wrapper_cstm .ros-spinner { width: 44px; height: 44px; border: 4px solid var(--brand-light); border-top-color: var(--brand); border-radius: 50%; animation: ros-spin .8s linear infinite; }
@keyframes ros-spin { to { transform: rotate(360deg); } }
.checkout_wrapper_cstm .ros-submit-overlay p { font-family: 'Syne', sans-serif; font-weight: 700; color: #333; font-size: 14px; }

@media(max-width: 860px) {
    .checkout_wrapper_cstm .ros-checkout-page { grid-template-columns: 1fr; gap: 18px; }
    .checkout_wrapper_cstm .ros-summary { position: static; }
    .checkout_wrapper_cstm .ros-field-grid { grid-template-columns: 1fr; }
}
@media(max-width: 560px) {
    .checkout_wrapper_cstm .ros-page-head { padding: 14px; }
    .checkout_wrapper_cstm .ros-checkout-page { padding: 16px 14px 100px; }
    .checkout_wrapper_cstm .ros-form-card-body { padding: 16px; }
    .checkout_wrapper_cstm .ros-steps-row { display: none; }
}
div#couponInputBox {
    margin-bottom: 10px;
}
.ros-order-type-btn INPUT {
    width: auto !important;
}


/* ------------------------- Checkout Page css end here --------------------------- */

/* ---------------------------------- success page css start ------------------------ */

.order_success_page .ros-body { font-family: 'DM Sans', sans-serif; background: #f7f6f3; color: #1a1a1a; }
.order_success_page .ros-success-page { max-width: 680px; margin: 0 auto; padding: 36px 24px 80px; }

.order_success_page .ros-alert { border-radius: var(--radius-sm); padding: 13px 16px; font-size: 13px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.order_success_page .ros-alert-danger { background: #fef2f2; color: #b91c1c; border: 1.5px solid #fecaca; }
.order_success_page .ros-alert-success { background: #f0fdf4; color: #15803d; border: 1.5px solid #86efac; }
.order_success_page .ros-alert ul { margin: 0; padding-left: 18px; }

.order_success_page .ros-success-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 44px 36px; text-align: center; }

.order_success_page .ros-check-circle {
    width: 84px; height: 84px; border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #15803d);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 24px rgba(21, 128, 61, .3);
    animation: ros-pop .45s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes ros-pop { from { transform: scale(0); } to { transform: scale(1); } }
.order_success_page .ros-check-circle i { color: #fff; font-size: 32px; }

.order_success_page .ros-thank-you { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: #111; letter-spacing: -.4px; margin-bottom: 8px; }
.order_success_page .ros-status-text { font-size: 14px; color: #888; margin-bottom: 4px; line-height: 1.6; }
.order_success_page .ros-status-warn { font-size: 12.5px; color: var(--brand); font-weight: 600; }
.order_success_page .ros-order-number {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--brand);
    background: var(--brand-light); border-radius: 24px; padding: 9px 20px; margin: 18px 0 28px;
}

/* Order items table */
.order_success_page .ros-order-card { background: #fafaf8; border: 1.5px solid #f0eeeb; border-radius: var(--radius); overflow: hidden; text-align: left; margin-bottom: 24px; }
.order_success_page .ros-order-card-head { padding: 14px 20px; border-bottom: 1px solid #f0eeeb; background: #fff; }
.order_success_page .ros-order-card-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: #111; }

.order_success_page .ros-oi-row { display: flex; gap: 12px; padding: 14px 20px; border-bottom: 1px solid #f0eeeb; align-items: flex-start; }
.order_success_page .ros-oi-row:last-child { border-bottom: none; }
.order_success_page .ros-oi-qty {
    width: 26px; height: 26px; border-radius: 7px; background: var(--brand-light); color: var(--brand);
    font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.order_success_page .ros-oi-info { flex: 1; min-width: 0; text-align: left; }
.order_success_page .ros-oi-name { font-size: 13.5px; font-weight: 600; color: #222; line-height: 1.4; }
.order_success_page .ros-oi-sub { font-size: 11.5px; color: #aaa; margin-top: 3px; line-height: 1.5; }
.order_success_page .ros-oi-price { font-size: 13.5px; font-weight: 700; color: var(--brand); flex-shrink: 0; white-space: nowrap; }

.order_success_page .ros-totals { padding: 14px 20px; background: #fff; }
.order_success_page .ros-t-row { display: flex; justify-content: space-between; font-size: 13.5px; color: #666; margin-bottom: 10px; }
.order_success_page .ros-t-row.disc { color: #15803d; }
.order_success_page .ros-t-row span:last-child { font-weight: 600; color: #333; }
.order_success_page .ros-t-row.disc span:last-child { color: #15803d; }
.order_success_page .ros-t-divider { height: 1px; background: #f0eeeb; margin: 13px 0; }
.order_success_page .ros-t-row.grand { font-size: 18px; font-weight: 800; color: #111; margin-bottom: 0; }
.order_success_page .ros-t-row.grand span:last-child { color: var(--brand); }

/* Payment status panels */
.order_success_page .ros-status-panel {
    text-align: left; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px;
    display: flex; align-items: flex-start; gap: 13px;
}
.order_success_page .ros-status-panel.warn { background: #fff8e8; border: 1.5px solid #fde68a; }
.order_success_page .ros-status-panel.success { background: #f0fdf4; border: 1.5px solid #86efac; }
.order_success_page .ros-status-panel.danger { background: #fef2f2; border: 1.5px solid #fecaca; }
.order_success_page .ros-status-icon { font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.order_success_page .ros-status-panel.warn .ros-status-icon { color: #b45309; }
.order_success_page .ros-status-panel.success .ros-status-icon { color: #15803d; }
.order_success_page .ros-status-panel.danger .ros-status-icon { color: #b91c1c; }
.order_success_page .ros-status-panel-title { font-size: 13.5px; font-weight: 700; margin-bottom: 3px; }
.order_success_page .ros-status-panel.warn .ros-status-panel-title { color: #92400e; }
.order_success_page .ros-status-panel.success .ros-status-panel-title { color: #166534; }
.order_success_page .ros-status-panel.danger .ros-status-panel-title { color: #991b1b; }
.order_success_page .ros-status-panel-sub { font-size: 12.5px; line-height: 1.6; }
.order_success_page .ros-status-panel.warn .ros-status-panel-sub { color: #a16207; }
.order_success_page .ros-status-panel.success .ros-status-panel-sub { color: #15803d; }
.order_success_page .ros-status-panel.danger .ros-status-panel-sub { color: #b91c1c; }

/* Upload proof card */
.order_success_page .ros-upload-card {
    text-align: left; background: #fffbeb; border: 1.5px solid #fde68a; border-radius: var(--radius);
    padding: 22px; margin-bottom: 24px;
}
.order_success_page .ros-upload-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: #92400e; margin-bottom: 9px; display: flex; align-items: center; gap: 8px; }
.order_success_page .ros-upload-desc { font-size: 12.5px; color: #a16207; line-height: 1.7; margin-bottom: 18px; }
.order_success_page .ros-upload-desc strong { color: #78350f; }

.order_success_page .ros-field-wrap { margin-bottom: 14px; }
.order_success_page .ros-field-wrap label { font-size: 12px; font-weight: 700; color: #78350f; display: block; margin-bottom: 7px; }
.order_success_page .ros-field-wrap input[type="text"] {
    width: 100%; border: 1.5px solid #fde68a; border-radius: var(--radius-sm); padding: 10px 13px;
    font-family: 'DM Sans', sans-serif; font-size: 13px; color: #222; background: #fff; outline: none;
    transition: border-color .15s;
}
.order_success_page .ros-field-wrap input[type="text"]:focus { border-color: var(--brand); }

.order_success_page .ros-file-drop {
    border: 1.5px dashed #fbbf24; border-radius: var(--radius-sm); background: #fff;
    padding: 20px; text-align: center; cursor: pointer; transition: all .18s; position: relative;
}
.order_success_page .ros-file-drop:hover { border-color: var(--brand); background: var(--brand-light); }
.order_success_page .ros-file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.order_success_page .ros-file-drop i { font-size: 22px; color: #d97706; margin-bottom: 8px; display: block; }
.order_success_page .ros-file-drop-text { font-size: 12.5px; color: #92400e; font-weight: 600; }
.order_success_page .ros-file-drop-sub { font-size: 11px; color: #b45309; margin-top: 3px; }
.order_success_page .ros-file-name { font-size: 12px; color: #15803d; font-weight: 600; margin-top: 8px; display: none; }
.order_success_page .ros-file-name.show { display: block; }

.order_success_page .ros-upload-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
    background: var(--brand); color: #fff; border: none; border-radius: 13px; padding: 13px;
    font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer;
    transition: background .18s; margin-top: 16px;
}
.order_success_page .ros-upload-btn:hover { background: var(--brand-dark); }

/* CTA buttons */
.order_success_page .ros-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.order_success_page .ros-track-btn {
    display: flex; align-items: center; gap: 8px; background: var(--brand); color: #fff; border: none;
    border-radius: 24px; padding: 13px 26px; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: background .18s, box-shadow .18s;
    box-shadow: 0 4px 16px rgba(232, 67, 27, .3);
}
.order_success_page .ros-track-btn:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 6px 22px rgba(232, 67, 27, .4); }
.order_success_page .ros-more-btn {
    display: flex; align-items: center; gap: 8px; background: #fff; color: #555; border: 1.5px solid #e8e8e4;
    border-radius: 24px; padding: 13px 26px; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all .18s;
}
.order_success_page .ros-more-btn:hover { border-color: var(--brand); color: var(--brand); }

@media(max-width:560px) {
    .order_success_page .ros-success-page { padding: 24px 14px 80px; }
    .order_success_page .ros-success-card { padding: 32px 18px; }
    .order_success_page .ros-cta-row { flex-direction: column; }
    .order_success_page .ros-track-btn, .order_success_page .ros-more-btn { justify-content: center; }
}

/* ------------------------- success page css end here ------------------------------ */
/* -------------------------- Track Order pgae css start -------------------------------- */

/* Base Layout & Wrapper Container */
.track_order_wrapper {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    color: #1f2937;
    background-color: #f9fafb;
    min-height: 100vh;
}
.track_order_wrapper .max-w-3xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1rem;
}

/* Header Section */
.track_order_wrapper .flex-col {
    display: flex;
    flex-direction: column;
}
.track_order_wrapper .border-b {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
.track_order_wrapper .text-3xl {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #111827;
    margin: 0;
}
.track_order_wrapper .text-sm {
    font-size: 0.875rem;
}
.track_order_wrapper .text-gray-500 {
    color: #6b7280;
}
.track_order_wrapper .mt-1 {
    margin-top: 0.25rem;
}
.track_order_wrapper .font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.track_order_wrapper .font-semibold {
    font-weight: 600;
}
.track_order_wrapper .text-gray-700 {
    color: #374151;
}

/* Status Badge Top Right */
.track_order_wrapper .inline-flex {
    display: inline-flex;
    align-items: center;
}
.track_order_wrapper .rounded-full {
    border-radius: 9999px;
}
.track_order_wrapper .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.track_order_wrapper .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.track_order_wrapper .text-sm {
    font-size: 0.875rem;
}
.track_order_wrapper .font-bold {
    font-weight: 700;
}
.track_order_wrapper .uppercase {
    text-transform: uppercase;
}
.track_order_wrapper .tracking-wider {
    letter-spacing: 0.05em;
}
.track_order_wrapper .bg-orange-100 {
    background-color: #ffedd5;
}
.track_order_wrapper .text-orange-800 {
    color: #9a3412;
}

/* Layout Cards */
.track_order_wrapper .bg-white {
    background-color: #ffffff;
}
.track_order_wrapper .rounded-xl {
    border-radius: 0.75rem;
}
.track_order_wrapper .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.track_order_wrapper .border-gray-100 {
    border: 1px solid #f3f4f6;
}
.track_order_wrapper .p-6 {
    padding: 1.5rem;
}
.track_order_wrapper .mb-8 {
    margin-bottom: 2rem;
}

/* Progress Pipeline Pipeline Bar */
.track_order_wrapper .relative {
    position: relative;
}
.track_order_wrapper .justify-between {
    justify-content: space-between;
}
.track_order_wrapper .absolute {
    position: absolute;
}
.track_order_wrapper .left-0 {
    left: 0;
}
.track_order_wrapper .top-1 {
    top: 50%;
}
.track_order_wrapper .-translate-y-1 {
    transform: translateY(-50%);
}
.track_order_wrapper .flex {
    display: flex;
    flex-wrap: wrap;
}
.track_order_wrapper .items-center {
    align-items: center;
}
.track_order_wrapper .mr-5 {
    margin-right: 5px;
}
.track_order_wrapper .w-full {
    width: 100%;
}
.track_order_wrapper .h-1 {
    height: 0.25rem;
}
.track_order_wrapper .bg-gray-100 {
    background-color: #f3f4f6;
}
.track_order_wrapper .-z-10 {
    z-index: -10;
}
.track_order_wrapper .rounded {
    border-radius: 0.25rem;
}

/* Progress Step Nodes */
.track_order_wrapper .flex-1 {
    flex: 1 1 0%;
}
.track_order_wrapper .text-center {
    text-align: center;
}
.track_order_wrapper .z-10 {
    z-index: 10;
    min-width: 105px;
}
.track_order_wrapper .w-10 {
    width: 1.8rem;
}
.track_order_wrapper .h-10 {
    height: 1.8rem;
}
.track_order_wrapper .justify-center {
    justify-content: center;
}
.track_order_wrapper .transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.track_order_wrapper .duration-300 {
    transition-duration: 300ms;
}

/* Circle Step States */
.track_order_wrapper .bg-orange-600 {
    background-color: #ea580c;
}
.track_order_wrapper .text-white {
    color: #ffffff;
}
.track_order_wrapper .shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.track_order_wrapper .bg-gray-200 {
    background-color: #e5e7eb;
}
.track_order_wrapper .text-gray-400 {
    color: #9ca3af;
}
.track_order_wrapper .w-5 {
    width: 1.25rem;
}
.track_order_wrapper .h-5 {
    height: 1.25rem;
}
.track_order_wrapper .text-xs {
    font-size: 0.75rem;
}
.track_order_wrapper .mt-3 {
    margin-top: 0.75rem;
}
.track_order_wrapper .text-gray-900 {
    color: #111827;
}
.track_order_wrapper .bg-red-600 {
    background-color: #dc2626;
}
.track_order_wrapper .text-red-600 {
    color: #dc2626;
}

/* Grid System Columns */
.track_order_wrapper .grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}
@media (min-width: 640px) {
    .sm\:justify-between {
        justify-content: space-between;
    }
}
/* Activity Log History Timeline */
.track_order_wrapper .text-xl {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}
.track_order_wrapper .mb-6 {
    margin-bottom: 1.5rem;
}
.track_order_wrapper .border-l-2 {
    border-left: 2px solid #e5e7eb;
}
.track_order_wrapper .ml-4 {
    margin-left: 1rem;
}
.track_order_wrapper .space-y-8 > * + * {
    margin-top: 2rem;
}
.track_order_wrapper .pl-6 {
    padding-left: 1.5rem;
}

/* Log Timeline Nodes */
.track_order_wrapper .-left-\[9px\] {
    left: -9px;
}
.track_order_wrapper .top-1\.5 {
    top: 0.375rem;
}
.track_order_wrapper .w-4 {
    width: 1rem;
}
.track_order_wrapper .h-4 {
    height: 1rem;
}
.track_order_wrapper .border-4 {
    border-width: 4px;
}
.track_order_wrapper .border-white {
    border-color: #ffffff;
}
.track_order_wrapper .capitalize {
    text-transform: capitalize;
}
.track_order_wrapper .italic {
    font-style: italic;
}

/* Log History Note Snippet */
.track_order_wrapper .text-gray-500 {
    color: #6b7280;
}
.track_order_wrapper .bg-gray-50 {
    background-color: #f9fafb;
}
.track_order_wrapper .p-2\.5 {
    padding: 0.625rem;
}
.track_order_wrapper .rounded-lg {
    border-radius: 0.5rem;
}

/* Log Action CTA Group */
.track_order_wrapper .flex-wrap {
    flex-wrap: wrap;
}
.track_order_wrapper .gap-3 {
    gap: 0.75rem;
}
.track_order_wrapper .mt-5 {
    margin-top: 1.25rem;
}
.track_order_wrapper .hover\:bg-orange-700:hover {
    background-color: #c2410c;
}
.track_order_wrapper .px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.track_order_wrapper .py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.track_order_wrapper .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}
.track_order_wrapper .ml-2 {
    margin-left: 0.5rem;
}

/* Secondary Button Group Styling */
.track_order_wrapper .border-gray-300 {
    border: 1px solid #d1d5db;
}
.track_order_wrapper .hover\:border-gray-400:hover {
    border-color: #9ca3af;
}
.track_order_wrapper .hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

/* Right Side: Delivery Overview Meta Info Panel */
.track_order_wrapper .space-y-6 > * + * {
    margin-top: 1.5rem;
}
.track_order_wrapper .text-lg {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}
.track_order_wrapper .mb-4 {
    margin-bottom: 1rem;
}
.track_order_wrapper .space-y-3 > * + * {
    margin-top: 0.75rem;
}
.track_order_wrapper .block {
    display: block;
}
.track_order_wrapper .text-gray-400 {
    color: #9ca3af;
}
.track_order_wrapper .font-medium {
    font-weight: 500;
}
.track_order_wrapper .text-gray-800 {
    color: #1f2937;
}
.track_order_wrapper .leading-relaxed {
    line-height: 1.625;
}

/* Financial Summary Layout Styling */
.track_order_wrapper .space-y-2\.5 > * + * {
    margin-top: 0.625rem;
}
.track_order_wrapper .text-gray-600 {
    color: #4b5563;
}
.track_order_wrapper .text-green-600 {
    color: #16a34a;
}
.track_order_wrapper .pt-3 {
    padding-top: 0.75rem;
}
.track_order_wrapper .border-t {
    border-top: 1px solid #f3f4f6;
}
.track_order_wrapper .text-base {
    font-size: 1rem;
}
.track_order_wrapper .text-orange-600 {
    color: #ea580c;
}

/* Universal Button Cleanups */
.track_order_wrapper a {
    text-decoration: none;
}

/* Responsive Media Queries Configuration */
@media (min-width: 768px) {
    .track_order_wrapper .flex-col {
        flex-direction: row;
    }
    .track_order_wrapper .md\:items-center {
        align-items: center;
    }
    .track_order_wrapper .md\:justify-between {
        justify-content: space-between;
    }
    .track_order_wrapper .mt-4 {
        margin-top: 0;
    }
    .track_order_wrapper .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .track_order_wrapper .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* --------------------------- Track order page css end here ------------------------ */

/* ------------------------- Orders page css start from here ------------------------- */
.orders_list_page .ros-body { font-family: 'DM Sans', sans-serif; background: #f7f6f3; color: #1a1a1a; }
.orders_list_page .ros-page-head { max-width: 1600px; margin: 0 auto; padding: 28px 24px 0; }
.orders_list_page .ros-page-title { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: #111; letter-spacing: -.4px; display: flex; align-items: center; gap: 10px; }
.orders_list_page .ros-page-title i { color: var(--brand); }
.orders_list_page .ros-page-subtitle { font-size: 13px; color: #aaa; margin-top: 4px; }

.orders_list_page .ros-orders-page { max-width: 1600px; margin: 0 auto; padding: 24px 24px 80px; }

.orders_list_page .ros-orders-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

.orders_list_page .ros-order-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; border: 1px solid rgba(0, 0, 0, .04); }
.orders_list_page .ros-order-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.orders_list_page .ros-oc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.orders_list_page .ros-oc-number { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: #111; letter-spacing: -.2px; }
.orders_list_page .ros-oc-meta { font-size: 12px; color: #aaa; margin-top: 4px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.orders_list_page .ros-oc-meta i { font-size: 10px; color: #ccc; }

.orders_list_page .ros-status-badge {
    font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px;
    white-space: nowrap; text-transform: uppercase; letter-spacing: .4px; flex-shrink: 0;
}
.orders_list_page .ros-status-badge.pending { background: #fff8e8; color: #b45309; }
.orders_list_page .ros-status-badge.accepted { background: #eff6ff; color: #1d4ed8; }
.orders_list_page .ros-status-badge.preparing { background: var(--brand-light); color: var(--brand); }
.orders_list_page .ros-status-badge.ready { background: #f3f4f6; color: #4b5563; }
.orders_list_page .ros-status-badge.out_for_delivery { background: var(--brand-light); color: var(--brand); }
.orders_list_page .ros-status-badge.delivered { background: #f0fdf4; color: #15803d; }
.orders_list_page .ros-status-badge.cancelled { background: #fef2f2; color: #b91c1c; }

/* Items preview */
.orders_list_page .ros-oc-items { margin-bottom: 18px; flex: 1; }
.orders_list_page .ros-oc-item-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.orders_list_page .ros-oc-item-img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: #f0eeeb; }
.orders_list_page .ros-oc-item-no-img { width: 34px; height: 34px; border-radius: 8px; background: #f0eeeb; display: flex; align-items: center; justify-content: center; color: #d5d2cc; font-size: 13px; flex-shrink: 0; }
.orders_list_page .ros-oc-item-name { font-size: 13px; color: #444; }
.orders_list_page .ros-oc-item-name .qty { color: #bbb; margin-left: 4px; }
.orders_list_page .ros-oc-more { font-size: 12px; color: #bbb; margin-top: 2px; padding-left: 44px; }

/* Footer */
.orders_list_page .ros-oc-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid #f0eeeb; flex-wrap: wrap; }
.orders_list_page .ros-oc-total { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: var(--brand); }
.orders_list_page .ros-oc-actions { display: flex; gap: 8px; }

.orders_list_page .ros-btn-primary {
    display: flex; align-items: center; gap: 6px; background: var(--brand); color: #fff; border: none;
    border-radius: 20px; padding: 9px 18px; font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: background .18s; white-space: nowrap;
}
.orders_list_page .ros-btn-primary:hover { background: var(--brand-dark); color: #fff; }
.orders_list_page .ros-btn-outline {
    display: flex; align-items: center; gap: 6px; background: #fff; color: #666; border: 1.5px solid #e8e8e4;
    border-radius: 20px; padding: 9px 16px; font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all .18s; white-space: nowrap;
}
.orders_list_page .ros-btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* Empty state */
.orders_list_page .ros-empty { text-align: center; padding: 80px 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.orders_list_page .ros-empty-icon { width: 96px; height: 96px; background: var(--brand-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 38px; color: var(--brand); margin: 0 auto 22px; }
.orders_list_page .ros-empty-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #111; margin-bottom: 8px; }
.orders_list_page .ros-empty-sub { font-size: 14px; color: #aaa; margin-bottom: 26px; }
.orders_list_page .ros-browse-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--brand); color: #fff; border: none; border-radius: 24px; padding: 13px 26px; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: background .18s; box-shadow: 0 4px 16px rgba(232, 67, 27, .3); }
.orders_list_page .ros-browse-btn:hover { background: var(--brand-dark); color: #fff; }

@media(max-width:768px) {
    .orders_list_page .ros-orders-grid { grid-template-columns: 1fr; }
}
@media(max-width:560px) {
    .orders_list_page .ros-page-head { padding: 14px; }
    .orders_list_page .ros-orders-page { padding: 16px 14px 80px; }
    .orders_list_page .ros-order-card { padding: 18px; }
    .orders_list_page .ros-oc-footer { flex-direction: column; align-items: stretch; }
    .orders_list_page .ros-oc-actions { justify-content: stretch; }
    .orders_list_page .ros-oc-actions a { flex: 1; justify-content: center; }
}

/* ---------------------------- orders page css end here ----------------------- */
/* ------------------------------ Profile Page Css start here ---------------- */

.profile-page,
.profile-page *,
.profile-page *::before,
.profile-page *::after{
    box-sizing:border-box;
}

.profile-page{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --radius:16px;--radius-sm:10px;
    --shadow:0 2px 16px rgba(0,0,0,.06);--shadow-md:0 6px 28px rgba(0,0,0,.11);
    font-family:'DM Sans',sans-serif;
    background:#f7f6f3;
    color:#1a1a1a;
}

.profile-page .page-head{max-width:1100px;margin:0 auto;padding:28px 24px 0}
.profile-page .page-title{font-family:'Syne',sans-serif;font-size:26px;font-weight:800;color:#111;letter-spacing:-.4px;display:flex;align-items:center;gap:10px}
.profile-page .page-title i{color:var(--brand)}

.profile-page .page-body{max-width:1100px;margin:0 auto;padding:24px 24px 80px;display:grid;grid-template-columns:340px 1fr;gap:24px;align-items:start}

/* ── LEFT: profile card ── */
.profile-page .profile-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);padding:30px 24px;text-align:center;margin-bottom:20px}
.profile-page .profile-avatar{
    width:84px;height:84px;border-radius:50%;
    background:linear-gradient(135deg,var(--brand),#f5a623);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 16px;box-shadow:0 6px 18px rgba(232,67,27,.3);
}
.profile-page .profile-avatar span{font-family:'Syne',sans-serif;color:#fff;font-weight:800;font-size:32px}
.profile-page .profile-name{font-family:'Syne',sans-serif;font-size:18px;font-weight:800;color:#111;margin-bottom:4px}
.profile-page .profile-phone{font-size:13px;color:#aaa;margin-bottom:20px}

.profile-page .profile-stats{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid #f0eeeb;padding-top:18px}
.profile-page .profile-stat{padding:0 10px;position:relative}
.profile-page .profile-stat:first-child::after{content:'';position:absolute;right:0;top:4px;bottom:4px;width:1px;background:#f0eeeb}
.profile-page .profile-stat-value{font-family:'Syne',sans-serif;font-size:20px;font-weight:800;color:var(--brand);margin-bottom:3px}
.profile-page .profile-stat-label{font-size:11.5px;color:#aaa;font-weight:500}

/* ── Recent orders panel ── */
.profile-page .recent-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);padding:20px 22px}
.profile-page .recent-title{font-family:'Syne',sans-serif;font-size:14px;font-weight:700;color:#111;margin-bottom:14px}

.profile-page .recent-row{display:flex;align-items:center;justify-content:space-between;padding:11px 0;border-bottom:1px solid #f5f4f1;text-decoration:none;transition:opacity .15s}
.profile-page .recent-row:last-of-type{border-bottom:none}
.profile-page .recent-row:hover{opacity:.7}
.profile-page .recent-number{font-size:13px;font-weight:700;color:#222}
.profile-page .recent-date{font-size:11px;color:#bbb;margin-top:2px}
.profile-page .recent-right{text-align:right}
.profile-page .recent-amount{font-size:13px;font-weight:800;color:var(--brand);margin-bottom:4px}

.profile-page .status-badge{font-size:10px;font-weight:700;padding:3px 9px;border-radius:14px;text-transform:uppercase;letter-spacing:.4px}
.profile-page .status-badge.delivered{background:#f0fdf4;color:#15803d}
.profile-page .status-badge.cancelled{background:#fef2f2;color:#b91c1c}
.profile-page .status-badge.pending{background:#fff8e8;color:#b45309}
.profile-page .status-badge.default{background:var(--brand-light);color:var(--brand)}

.profile-page .view-all-btn{
    display:flex;align-items:center;justify-content:center;gap:7px;width:100%;
    background:#fff;color:#666;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    padding:11px;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;
    cursor:pointer;text-decoration:none;transition:all .18s;margin-top:14px;
}
.profile-page .view-all-btn:hover{border-color:var(--brand);color:var(--brand)}

.profile-page .no-orders{font-size:13px;color:#bbb;text-align:center;padding:20px 0}

/* ── RIGHT: tabbed edit panel ── */
.profile-page .edit-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.profile-page .tabs-row{display:flex;border-bottom:1px solid #f0eeeb;padding:0 8px}
.profile-page .tab-btn{
    display:flex;align-items:center;gap:7px;padding:18px 18px 15px;
    font-size:13.5px;font-weight:600;color:#999;background:none;border:none;
    cursor:pointer;position:relative;transition:color .15s;
}
.profile-page .tab-btn:hover{color:#555}
.profile-page .tab-btn.active{color:var(--brand)}
.profile-page .tab-btn.active::after{
    content:'';position:absolute;bottom:-1px;left:14px;right:14px;height:2.5px;
    background:var(--brand);border-radius:2px 2px 0 0;
}

.profile-page .tab-panel{display:none;padding:26px 26px 28px}
.profile-page .tab-panel.active{display:block}

.profile-page .alert-box{border-radius:var(--radius-sm);padding:13px 16px;font-size:13px;margin-bottom:20px;display:flex;align-items:flex-start;gap:10px}
.profile-page .alert-box.success{background:#f0fdf4;color:#15803d;border:1.5px solid #86efac}

.profile-page .field-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.profile-page .field-wrap{margin-bottom:16px}
.profile-page .field-wrap label{font-size:12px;font-weight:700;color:#555;display:block;margin-bottom:7px}
.profile-page .field-wrap label .req{color:var(--brand)}
.profile-page .field-wrap input{
    width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:11px 14px;
    font-family:'DM Sans',sans-serif;font-size:13.5px;color:#222;background:#fafaf8;outline:none;
    transition:border-color .15s;
}
.profile-page .field-wrap input:focus{border-color:var(--brand)}
.profile-page .field-wrap input.has-error{border-color:#ef4444}
.profile-page .field-error{font-size:11px;color:#ef4444;margin-top:5px}

.profile-page .submit-btn{
    display:flex;align-items:center;gap:8px;
    background:var(--brand);color:#fff;border:none;border-radius:var(--radius-sm);
    padding:12px 24px;font-family:'Syne',sans-serif;font-size:13.5px;font-weight:700;
    cursor:pointer;transition:background .18s;box-shadow:0 4px 14px rgba(232,67,27,.25);
}
.profile-page .submit-btn:hover{background:var(--brand-dark)}
.profile-page .submit-btn.warn{background:#d97706;box-shadow:0 4px 14px rgba(217,119,6,.25)}
.profile-page .submit-btn.warn:hover{background:#b45309}

/* ── Addresses tab (kept ready, disabled by default to match original) ── */
.profile-page .address-card{border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:16px;margin-bottom:12px;transition:border-color .15s}
.profile-page .address-card.is-default{border-color:var(--brand);background:var(--brand-light)}
.profile-page .address-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.profile-page .address-tags{display:flex;gap:6px;margin-bottom:7px}
.profile-page .address-tag{font-size:10px;font-weight:700;padding:3px 9px;border-radius:14px;background:var(--brand-light);color:var(--brand);text-transform:uppercase;letter-spacing:.4px}
.profile-page .address-tag.success{background:#f0fdf4;color:#15803d}
.profile-page .address-line{font-size:13.5px;font-weight:600;color:#222}
.profile-page .address-city{font-size:12px;color:#aaa;margin-top:2px}
.profile-page .address-gps{font-size:11.5px;color:#15803d;margin-top:6px;display:flex;align-items:center;gap:5px}
.profile-page .address-actions{display:flex;gap:6px;flex-shrink:0}
.profile-page .addr-btn{
    font-size:11.5px;font-weight:600;border-radius:8px;padding:7px 12px;cursor:pointer;
    border:1.5px solid #e8e8e4;background:#fff;color:#666;transition:all .15s;white-space:nowrap;
}
.profile-page .addr-btn:hover{border-color:var(--brand);color:var(--brand)}
.profile-page .addr-btn.danger:hover{border-color:#ef4444;color:#ef4444}

.profile-page .add-address-box{background:#fafaf8;border:1.5px dashed #e8e8e4;border-radius:var(--radius);padding:18px}
.profile-page .add-address-title{font-family:'Syne',sans-serif;font-size:13.5px;font-weight:700;color:#111;margin-bottom:14px;display:flex;align-items:center;gap:7px}
.profile-page .field-wrap select{
    width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:10px 13px;
    font-family:'DM Sans',sans-serif;font-size:13px;color:#333;background:#fff;outline:none;
    cursor:pointer;transition:border-color .15s;
}
.profile-page .field-wrap select:focus{border-color:var(--brand)}
.profile-page .location-btn{
    display:flex;align-items:center;gap:7px;background:#fff;color:#666;border:1.5px solid #e8e8e4;
    border-radius:var(--radius-sm);padding:9px 16px;font-size:12.5px;font-weight:600;cursor:pointer;
    transition:all .15s;
}
.profile-page .location-btn:hover{border-color:var(--brand);color:var(--brand)}
.profile-page .location-msg{font-size:12px;color:#aaa}
.profile-page .checkbox-row{display:flex;align-items:center;gap:8px}
.profile-page .checkbox-row input{accent-color:var(--brand);width:16px;height:16px;cursor:pointer}
.profile-page .checkbox-row label{font-size:12.5px;color:#555;cursor:pointer;margin:0}

@media(max-width:860px){
    .profile-page .page-body{grid-template-columns:1fr;gap:18px}
}
@media(max-width:560px){
    .profile-page .page-head{padding:14px}
    .profile-page .page-body{padding:16px 14px 80px}
    .profile-page .field-grid{grid-template-columns:1fr}
    .profile-page .tab-btn{padding:14px 12px 12px;font-size:12.5px}
    .profile-page .tab-panel{padding:20px 18px 22px}
}

/* ------------------------------- profile page end here ----------------------- */

/* --------------------------------- Review Page Css start here --------------- */

 .review-page,
.review-page *,
.review-page *::before,
.review-page *::after{
    box-sizing:border-box;
}

.review-page{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --radius:16px;--radius-sm:10px;
    --shadow:0 2px 16px rgba(0,0,0,.06);--shadow-md:0 6px 28px rgba(0,0,0,.11);
    font-family:'DM Sans',sans-serif;
    background:#f7f6f3;
    color:#1a1a1a;
}

.review-page .page-wrap{max-width:640px;margin:0 auto;padding:36px 24px 80px}

.review-page .alert-box{
    border-radius:var(--radius-sm);padding:13px 16px;font-size:13px;margin-bottom:20px;
    display:flex;align-items:flex-start;gap:10px;
}
.review-page .alert-box.success{background:#f0fdf4;color:#15803d;border:1.5px solid #86efac}

.review-page .form-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-md);padding:34px 30px}

.review-page .form-desc{font-size:13.5px;color:#999;line-height:1.7;margin-bottom:28px}

/* ── Question block ── */
.review-page .question-block{margin-bottom:30px}
.review-page .question-block:last-of-type{margin-bottom:0}
.review-page .question-label{
    font-size:14px;font-weight:700;color:#222;display:block;margin-bottom:13px;line-height:1.5;
}
.review-page .question-label .req{color:var(--brand);margin-left:2px}

/* ── Star rating ── */
.review-page .star-row{display:flex;gap:8px}
.review-page .star-label{cursor:pointer;display:inline-flex}
.review-page .star-input{display:none}
.review-page .star-icon{
    font-size:30px;color:#ddd;transition:color .12s,transform .12s;
}
.review-page .star-label:hover .star-icon{transform:scale(1.08)}

/* ── Yes / No ── */
.review-page .yesno-row{display:flex;gap:12px}
.review-page .yesno-label{
    flex:1;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    padding:14px;text-align:center;cursor:pointer;transition:all .18s;background:#fff;
}
.review-page .yesno-label:hover{border-color:var(--brand);background:var(--brand-light)}
.review-page .yesno-label.selected{border-color:var(--brand);background:var(--brand-light)}
.review-page .yesno-input{display:none}
.review-page .yesno-text{font-size:14px;font-weight:700;color:#444}
.review-page .yesno-label.selected .yesno-text{color:var(--brand)}

/* ── Multiple choice ── */
.review-page .mc-list{display:flex;flex-direction:column;gap:9px}
.review-page .mc-option{
    display:flex;align-items:center;gap:11px;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    padding:12px 15px;cursor:pointer;transition:all .15s;background:#fff;
}
.review-page .mc-option:hover,
.review-page .mc-option.selected{border-color:var(--brand);background:var(--brand-light)}
.review-page .mc-option input{accent-color:var(--brand);width:17px;height:17px;flex-shrink:0;cursor:pointer}
.review-page .mc-option-text{font-size:13.5px;color:#333;font-weight:500}
.review-page .mc-option.selected .mc-option-text{color:var(--brand);font-weight:600}

/* ── Text answer ── */
.review-page .text-answer{
    width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);padding:13px 15px;
    font-family:'DM Sans',sans-serif;font-size:13.5px;color:#222;background:#fafaf8;outline:none;
    resize:none;line-height:1.7;transition:border-color .15s;
}
.review-page .text-answer:focus{border-color:var(--brand)}
.review-page .text-answer::placeholder{color:#ccc}

.review-page .field-error{font-size:11.5px;color:#ef4444;margin-top:8px}

/* ── Submit button ── */
.review-page .submit-btn{
    display:flex;align-items:center;justify-content:center;gap:9px;width:100%;
    background:var(--brand);color:#fff;border:none;border-radius:13px;padding:16px;
    font-family:'Syne',sans-serif;font-size:15px;font-weight:700;cursor:pointer;
    transition:background .2s,box-shadow .2s;box-shadow:0 4px 16px rgba(232,67,27,.3);
    margin-top:8px;
}
.review-page .submit-btn:hover{background:var(--brand-dark);box-shadow:0 6px 22px rgba(232,67,27,.4)}

@media(max-width:560px){
    .review-page .page-wrap{padding:24px 14px 80px}
    .review-page .form-card{padding:26px 20px}
    .review-page .star-icon{font-size:26px}
    .review-page .yesno-row{gap:8px}
}

/* ----------------------------- Review page css end here --------------------- */

/* ----------------------------- Login page css start here --------------------- */

.login-page,
.login-page *,
.login-page *::before,
.login-page *::after{box-sizing:border-box}

.login-page{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --radius:16px;--radius-sm:10px;
    --shadow:0 2px 16px rgba(0,0,0,.06);
    font-family:'DM Sans',sans-serif;
}

.login-page .auth-heading{font-family:'Syne',sans-serif;font-size:24px;font-weight:800;color:#111;letter-spacing:-.4px;margin-bottom:5px}
.login-page .auth-sub{font-size:13.5px;color:#aaa;margin-bottom:30px}

.login-page .alert-box{border-radius:var(--radius-sm);padding:13px 16px;font-size:13px;margin-bottom:20px;display:flex;align-items:flex-start;gap:10px}
.login-page .alert-box.success{background:#f0fdf4;color:#15803d;border:1.5px solid #86efac}
.login-page .alert-box.danger{background:#fef2f2;color:#b91c1c;border:1.5px solid #fecaca}
.login-page .alert-box ul{margin:0;padding-left:16px}

.login-page .field-wrap{margin-bottom:18px}
.login-page .field-wrap label{font-size:12px;font-weight:700;color:#555;display:block;margin-bottom:7px;letter-spacing:.2px}

.login-page .input-icon-wrap{position:relative}
.login-page .input-icon-wrap i{
    position:absolute;left:14px;top:50%;transform:translateY(-50%);
    color:#ccc;font-size:14px;pointer-events:none;transition:color .15s;
}
.login-page .input-icon-wrap input{padding-left:40px}
.login-page .input-icon-wrap:focus-within i{color:var(--brand)}

.login-page .toggle-pw{
    position:absolute;right:14px;top:50%;transform:translateY(-50%);
    color:#ccc;font-size:14px;cursor:pointer;background:none;border:none;
    transition:color .15s;
}
.login-page .toggle-pw:hover{color:var(--brand)}

.login-page .field-wrap input[type="text"],
.login-page .field-wrap input[type="password"],
.login-page .field-wrap input[type="email"],
.login-page .field-wrap input[type="number"]{
    width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    padding:12px 35px;font-family:'DM Sans',sans-serif;font-size:13.5px;
    color:#222;background:#fafaf8;outline:none;transition:border-color .15s;
}
button.toggle-pw i {
    position: relative !important;
    left: 0px !important;
    top: 8px !important;
}
.login-page .field-wrap input:focus{border-color:var(--brand)}
.login-page .security-question-group{display:flex;align-items:stretch;width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);background:#fafaf8;overflow:hidden;transition:border-color .15s,box-shadow .15s}
.login-page .security-question-group:focus-within{border-color:var(--brand);box-shadow:0 0 0 3px rgba(232,67,27,.08)}
.login-page .security-question-addon{display:flex;align-items:center;gap:8px;padding:0 14px;background:#fff;color:#555;border-right:1.5px solid #e8e8e4;font-size:13px;font-weight:800;white-space:nowrap}
.login-page .security-question-addon i{color:var(--brand);font-size:13px}
.login-page .security-question-group input{border:none!important;border-radius:0!important;background:transparent!important;padding:12px 14px!important;min-width:0}
.login-page .security-question-group input:focus{border:none!important}

.login-page .remember-row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:22px}
.login-page .remember-label{display:flex;align-items:center;gap:8px;cursor:pointer;font-size:13px;color:#666}
.login-page .remember-label input[type="checkbox"]{accent-color:var(--brand);width:15px;height:15px;cursor:pointer}
.login-page .forgot-link{font-size:13px;color:var(--brand);text-decoration:none;font-weight:600;transition:color .15s}
.login-page .forgot-link:hover{color:var(--brand-dark)}

.login-page .submit-btn{
    display:flex;align-items:center;justify-content:center;gap:9px;width:100%;
    background:var(--brand);color:#fff;border:none;border-radius:13px;padding:14px;
    font-family:'Syne',sans-serif;font-size:14.5px;font-weight:700;cursor:pointer;
    transition:background .18s,box-shadow .18s;box-shadow:0 4px 16px rgba(232,67,27,.3);
}
.login-page .submit-btn:hover{background:var(--brand-dark);box-shadow:0 6px 22px rgba(232,67,27,.4)}

.login-page .auth-divider{display:flex;align-items:center;gap:12px;margin:22px 0}
.login-page .auth-divider span{font-size:12px;color:#ccc;white-space:nowrap}
.login-page .auth-divider-line{flex:1;height:1px;background:#f0eeeb}

.login-page .auth-footer-links{text-align:center;margin-top:20px}
.login-page .auth-footer-links p{font-size:13.5px;color:#999;margin-bottom:10px}
.login-page .auth-footer-links a.cta{color:var(--brand);font-weight:700;text-decoration:none}
.login-page .auth-footer-links a.cta:hover{color:var(--brand-dark)}
.login-page .auth-footer-links a.guest{font-size:12.5px;color:#bbb;text-decoration:none;display:flex;align-items:center;justify-content:center;gap:5px;transition:color .15s}
.login-page .auth-footer-links a.guest:hover{color:#888}
.login-page,.register-page,.forgot-page,.reset-page {
    max-width: 600px;
    margin: auto;
    margin-top: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
}

@media (max-width:425px){
    .login-page,.register-page,.forgot-page,.reset-page {
        padding: 20px !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
    .login-page .security-question-group{flex-direction:column}
    .login-page .security-question-addon{min-height:42px;border-right:none;border-bottom:1.5px solid #e8e8e4;justify-content:center}
    .login-page .security-question-group input{text-align:center}
}

/* -------------------------- login page css end here ---------------------------- */
/* -------------------------- Register page css end here ---------------------------- */

 .register-page,
.register-page *,
.register-page *::before,
.register-page *::after{box-sizing:border-box}

.register-page{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --radius:16px;--radius-sm:10px;
    font-family:'DM Sans',sans-serif;
}

.register-page .auth-heading{font-family:'Syne',sans-serif;font-size:24px;font-weight:800;color:#111;letter-spacing:-.4px;margin-bottom:5px}
.register-page .auth-sub{font-size:13.5px;color:#aaa;margin-bottom:28px}

.register-page .alert-box{border-radius:var(--radius-sm);padding:13px 16px;font-size:13px;margin-bottom:20px;display:flex;align-items:flex-start;gap:10px}
.register-page .alert-box.danger{background:#fef2f2;color:#b91c1c;border:1.5px solid #fecaca}
.register-page .alert-box ul{margin:0;padding-left:16px}

.register-page .field-grid{display:grid;grid-template-columns:1fr 1fr;gap:13px}

.register-page .field-wrap{margin-bottom:16px}
.register-page .field-wrap label{font-size:12px;font-weight:700;color:#555;display:block;margin-bottom:7px;letter-spacing:.2px}
.register-page .field-wrap label .opt{color:#ccc;font-weight:400}
.register-page .field-wrap label .req{color:var(--brand)}

.register-page .input-icon-wrap{position:relative}
.register-page .input-icon-wrap i.icon{
    position:absolute;left:14px;top:50%;transform:translateY(-50%);
    color:#ccc;font-size:14px;pointer-events:none;transition:color .15s;
}
.register-page .input-icon-wrap input{padding-left:40px}
.register-page .input-icon-wrap:focus-within i.icon{color:var(--brand)}
.register-page .toggle-pw{
    position:absolute;right:14px;top:50%;transform:translateY(-50%);
    color:#ccc;font-size:14px;cursor:pointer;background:none;border:none;transition:color .15s;
}
.register-page .toggle-pw:hover{color:var(--brand)}

.register-page .field-wrap input{
    width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    padding:12px 35px;font-family:'DM Sans',sans-serif;font-size:13.5px;
    color:#222;background:#fafaf8;outline:none;transition:border-color .15s;
}
.register-page .field-wrap input:focus{border-color:var(--brand)}

/* Password strength meter */
.register-page .pw-strength{margin-top:8px}
.register-page .pw-strength-bar{display:flex;gap:4px;margin-bottom:4px}
.register-page .pw-bar{flex:1;height:3px;border-radius:2px;background:#f0eeeb;transition:background .25s}
.register-page .pw-bar.weak{background:#ef4444}
.register-page .pw-bar.fair{background:#f97316}
.register-page .pw-bar.good{background:#22c55e}
.register-page .pw-strength-label{font-size:11px;color:#bbb}

.register-page .submit-btn{
    display:flex;align-items:center;justify-content:center;gap:9px;width:100%;
    background:var(--brand);color:#fff;border:none;border-radius:13px;padding:14px;
    font-family:'Syne',sans-serif;font-size:14.5px;font-weight:700;cursor:pointer;
    transition:background .18s,box-shadow .18s;box-shadow:0 4px 16px rgba(232,67,27,.3);
    margin-top:6px;
}
.register-page .submit-btn:hover{background:var(--brand-dark);box-shadow:0 6px 22px rgba(232,67,27,.4)}

.register-page .auth-footer-links{text-align:center;margin-top:20px}
.register-page .auth-footer-links p{font-size:13.5px;color:#999;margin-bottom:10px}
.register-page .auth-footer-links a.cta{color:var(--brand);font-weight:700;text-decoration:none}
.register-page .auth-footer-links a.cta:hover{color:var(--brand-dark)}
.register-page .auth-footer-links a.guest{font-size:12.5px;color:#bbb;text-decoration:none;display:flex;align-items:center;justify-content:center;gap:5px;transition:color .15s}
.register-page .auth-footer-links a.guest:hover{color:#888}

@media(max-width:480px){
    .register-page .field-grid{grid-template-columns:1fr}
}

.register-page  button.toggle-pw i {
    position: relative !important;
    left: 0px !important;
    top: 0px !important;
}

/* -------------------------- Register page css end here ---------------------------- */

/* -------------------------- Forgotpassword page css end here ---------------------------- */
.forgot-page,
.forgot-page *,
.forgot-page *::before,
.forgot-page *::after{box-sizing:border-box}

.forgot-page{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --radius:16px;--radius-sm:10px;
    font-family:'DM Sans',sans-serif;
}

.forgot-page .auth-heading{font-family:'Syne',sans-serif;font-size:24px;font-weight:800;color:#111;letter-spacing:-.4px;margin-bottom:5px}
.forgot-page .auth-sub{font-size:13.5px;color:#aaa;margin-bottom:28px;line-height:1.6}

.forgot-page .alert-box{border-radius:var(--radius-sm);padding:13px 16px;font-size:13px;margin-bottom:20px;display:flex;align-items:flex-start;gap:10px}
.forgot-page .alert-box.success{background:#f0fdf4;color:#15803d;border:1.5px solid #86efac}
.forgot-page .alert-box.danger{background:#fef2f2;color:#b91c1c;border:1.5px solid #fecaca}
.forgot-page .alert-box ul{margin:0;padding-left:16px}

/* Step indicator */
.forgot-page .step-row{display:flex;align-items:center;gap:8px;margin-bottom:28px}
.forgot-page .step-dot{
    width:28px;height:28px;border-radius:50%;display:flex;align-items:center;
    justify-content:center;font-size:11px;font-weight:700;flex-shrink:0;
}
.forgot-page .step-dot.done{background:var(--brand);color:#fff}
.forgot-page .step-dot.active{background:var(--brand-light);color:var(--brand);border:2px solid var(--brand)}
.forgot-page .step-dot.idle{background:#f0eeeb;color:#ccc}
.forgot-page .step-line{flex:1;height:1.5px;background:#f0eeeb}
.forgot-page .step-line.done{background:var(--brand)}
.forgot-page .step-label{font-size:11px;color:#aaa;margin-top:4px;text-align:center}

.forgot-page .field-wrap{margin-bottom:18px}
.forgot-page .field-wrap label{font-size:12px;font-weight:700;color:#555;display:block;margin-bottom:7px;letter-spacing:.2px}

.forgot-page .input-icon-wrap{position:relative}
.forgot-page .input-icon-wrap i{
    position:absolute;left:14px;top:50%;transform:translateY(-50%);
    color:#ccc;font-size:14px;pointer-events:none;transition:color .15s;
}
.forgot-page .input-icon-wrap input{padding-left:40px}
.forgot-page .input-icon-wrap:focus-within i{color:var(--brand)}

.forgot-page .field-wrap input{
    width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    padding:12px 35px;font-family:'DM Sans',sans-serif;font-size:13.5px;
    color:#222;background:#fafaf8;outline:none;transition:border-color .15s;
}
.forgot-page .field-wrap input:focus{border-color:var(--brand)}

.forgot-page .submit-btn{
    display:flex;align-items:center;justify-content:center;gap:9px;width:100%;
    background:var(--brand);color:#fff;border:none;border-radius:13px;padding:14px;
    font-family:'Syne',sans-serif;font-size:14.5px;font-weight:700;cursor:pointer;
    transition:background .18s,box-shadow .18s;box-shadow:0 4px 16px rgba(232,67,27,.3);
}
.forgot-page .submit-btn:hover{background:var(--brand-dark);box-shadow:0 6px 22px rgba(232,67,27,.4)}
.forgot-page .submit-btn:disabled{background:#ddd;box-shadow:none;cursor:not-allowed}

.forgot-page .info-box{
    background:#eff6ff;border:1.5px solid #bfdbfe;border-radius:var(--radius-sm);
    padding:13px 15px;font-size:12.5px;color:#1e40af;margin-bottom:22px;
    display:flex;align-items:flex-start;gap:10px;line-height:1.6;
}
.forgot-page .info-box i{margin-top:1px;flex-shrink:0}

.forgot-page .auth-back-link{
    display:flex;align-items:center;justify-content:center;gap:7px;
    font-size:13px;color:#bbb;text-decoration:none;margin-top:20px;
    transition:color .15s;
}
.forgot-page .auth-back-link:hover{color:var(--brand)}
/* -------------------------- Forgotpassword page css end here ---------------------------- */
/* -------------------------- resetpassword page css end here ---------------------------- */
.reset-page  button.toggle-pw i {
    position: relative !important;
    left: 0px !important;
    top: 0px !important;
}
.reset-page,
.reset-page *,
.reset-page *::before,
.reset-page *::after{box-sizing:border-box}

.reset-page{
    --brand:#e8431b;--brand-dark:#c73a16;--brand-light:#fff3ef;
    --radius:16px;--radius-sm:10px;
    font-family:'DM Sans',sans-serif;
}

.reset-page .auth-heading{font-family:'Syne',sans-serif;font-size:24px;font-weight:800;color:#111;letter-spacing:-.4px;margin-bottom:5px}
.reset-page .auth-sub{font-size:13.5px;color:#aaa;margin-bottom:28px;line-height:1.6}

.reset-page .alert-box{border-radius:var(--radius-sm);padding:13px 16px;font-size:13px;margin-bottom:20px;display:flex;align-items:flex-start;gap:10px}
.reset-page .alert-box.success{background:#f0fdf4;color:#15803d;border:1.5px solid #86efac}
.reset-page .alert-box.danger{background:#fef2f2;color:#b91c1c;border:1.5px solid #fecaca}
.reset-page .alert-box ul{margin:0;padding-left:16px}

/* ── Step indicator (step 2 active) ── */
.reset-page .step-row{display:flex;align-items:center;gap:8px;margin-bottom:28px}
.reset-page .step-dot{
    width:28px;height:28px;border-radius:50%;display:flex;align-items:center;
    justify-content:center;font-size:11px;font-weight:700;flex-shrink:0;
}
.reset-page .step-dot.done{background:var(--brand);color:#fff}
.reset-page .step-dot.active{background:var(--brand-light);color:var(--brand);border:2px solid var(--brand)}
.reset-page .step-dot.idle{background:#f0eeeb;color:#ccc}
.reset-page .step-line{flex:1;height:1.5px;background:#f0eeeb}
.reset-page .step-line.done{background:var(--brand)}

/* ── OTP boxes ── */
.reset-page .otp-group{display:flex;gap:10px;justify-content:center;margin-bottom:22px}
.reset-page .otp-box{
    width:52px;height:58px;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    text-align:center;font-family:'Syne',sans-serif;font-size:22px;font-weight:800;color:#111;
    background:#fafaf8;outline:none;transition:border-color .15s,box-shadow .15s;
    caret-color:var(--brand);
}
.reset-page .otp-box:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(232,67,27,.1)}
.reset-page .otp-box.filled{border-color:var(--brand);background:var(--brand-light)}
.reset-page .otp-hidden{display:none}

/* ── Resend row ── */
.reset-page .resend-row{text-align:center;margin-bottom:24px}
.reset-page .resend-text{font-size:13px;color:#aaa}
.reset-page .resend-btn{
    background:none;border:none;color:var(--brand);font-size:13px;font-weight:700;
    cursor:pointer;padding:0;transition:color .15s;
}
.reset-page .resend-btn:hover{color:var(--brand-dark)}
.reset-page .resend-btn:disabled{color:#ccc;cursor:not-allowed}
.reset-page .resend-timer{font-size:13px;font-weight:700;color:var(--brand)}

/* ── Fields ── */
.reset-page .field-wrap{margin-bottom:18px}
.reset-page .field-wrap label{font-size:12px;font-weight:700;color:#555;display:block;margin-bottom:7px;letter-spacing:.2px}

.reset-page .input-icon-wrap{position:relative}
.reset-page .input-icon-wrap i.icon{
    position:absolute;left:14px;top:50%;transform:translateY(-50%);
    color:#ccc;font-size:14px;pointer-events:none;transition:color .15s;
}
.reset-page .input-icon-wrap input{padding-left:40px}
.reset-page .input-icon-wrap:focus-within i.icon{color:var(--brand)}
.reset-page .toggle-pw{
    position:absolute;right:14px;top:50%;transform:translateY(-50%);
    color:#ccc;font-size:14px;cursor:pointer;background:none;border:none;transition:color .15s;
}
.reset-page .toggle-pw:hover{color:var(--brand)}

.reset-page .field-wrap input[type="password"]{
    width:100%;border:1.5px solid #e8e8e4;border-radius:var(--radius-sm);
    padding:12px 40px;font-family:'DM Sans',sans-serif;font-size:13.5px;
    color:#222;background:#fafaf8;outline:none;transition:border-color .15s;
}
.reset-page .field-wrap input[type="password"]:focus{border-color:var(--brand)}

/* Password match indicator */
.reset-page .pw-match{font-size:11.5px;margin-top:6px;display:none;align-items:center;gap:5px}
.reset-page .pw-match.show{display:flex}
.reset-page .pw-match.ok{color:#15803d}
.reset-page .pw-match.err{color:#ef4444}

/* Password strength */
.reset-page .pw-strength{margin-top:8px;display:none}
.reset-page .pw-strength.show{display:block}
.reset-page .pw-strength-bar{display:flex;gap:4px;margin-bottom:4px}
.reset-page .pw-bar{flex:1;height:3px;border-radius:2px;background:#f0eeeb;transition:background .25s}
.reset-page .pw-bar.weak{background:#ef4444}
.reset-page .pw-bar.fair{background:#f97316}
.reset-page .pw-bar.good{background:#22c55e}
.reset-page .pw-strength-label{font-size:11px;color:#bbb}

/* ── Submit ── */
.reset-page .submit-btn{
    display:flex;align-items:center;justify-content:center;gap:9px;width:100%;
    background:var(--brand);color:#fff;border:none;border-radius:13px;padding:14px;
    font-family:'Syne',sans-serif;font-size:14.5px;font-weight:700;cursor:pointer;
    transition:background .18s,box-shadow .18s;box-shadow:0 4px 16px rgba(232,67,27,.3);
    margin-top:4px;
}
.reset-page .submit-btn:hover{background:var(--brand-dark);box-shadow:0 6px 22px rgba(232,67,27,.4)}
.reset-page .submit-btn:disabled{background:#ddd;box-shadow:none;cursor:not-allowed}

.reset-page .auth-back-link{
    display:flex;align-items:center;justify-content:center;gap:7px;
    font-size:13px;color:#bbb;text-decoration:none;margin-top:20px;transition:color .15s;
}
.reset-page .auth-back-link:hover{color:var(--brand)}

/* -------------------------- resetpassword page css end here ---------------------------- */

/* ----------------------------- Deals ---------------------------------------- */

.deals-page-wrapper .deals-scroll {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 16px;  
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: unset;
}
@media (min-width: 768px) {
    .deals-page-wrapper .deals-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .deals-page-wrapper .deals-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .deals-page-wrapper .deals-scroll {
        grid-template-columns: repeat(4, 1fr);
    }
}
.deals-page-wrapper .deal-card {
    width: 100%; 
}

@media (max-width: 480px) {
    .deals-page-wrapper  .qty-val {
        max-width: 50px;
        width: 50px;
    }
}

/* ----------------------- End Deals -------------------------------------- */
/* ---------------------- Deal page css start -----------------------------*/
.deal-page-cstm .deal-hero {
    position: relative; height: 320px; overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, var(--brand));
}
.deal-page-cstm .deal-hero img { width:100%;height:100%;object-fit:cover;opacity:.55;position:absolute;inset:0; }
.deal-page-cstm .deal-hero-overlay {
    position:absolute;inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.75) 0%,transparent 50%);
    display:flex;align-items:flex-end;padding:28px 28px;
}
.deal-page-cstm .deal-hero-text { color:#fff; text-align: left;}
.deal-page-cstm .deal-hero-badge {
    display:inline-block;background:var(--brand);color:#fff;
    font-size:11px;font-weight:700;padding:4px 12px;border-radius:8px;
    text-transform:uppercase;letter-spacing:.5px;margin-bottom:10px;
}
.deal-page-cstm .deal-hero-name { font-size:30px;font-weight:800;margin-bottom:8px;line-height:1.2; }
.deal-page-cstm .deal-hero-meta { display:flex;gap:16px;flex-wrap:wrap; }
.deal-page-cstm .deal-hero-chip { color:rgba(255,255,255,.75);font-size:13px;display:flex;align-items:center;gap:5px; }

/* Main */
.deal-page-cstm .main { max-width:1000px;margin:0 auto;padding:28px 16px 80px; }
.deal-page-cstm .layout { display:flex;gap:24px;align-items:flex-start; }
.deal-page-cstm .left-col { flex:1;min-width:0; }
.deal-page-cstm .right-col { width:320px;flex-shrink:0;position:sticky;top:calc(var(--nav-h)+16px); }

/* Deal info card */
.deal-page-cstm .info-card { background:#fff;border-radius:16px;padding:22px;box-shadow:0 2px 10px rgba(0,0,0,.07);margin-bottom:16px; }
.deal-page-cstm .info-card h3 { font-size:16px;font-weight:700;color:#111;margin-bottom:14px;display:flex;align-items:center;gap:8px; }
.deal-page-cstm .info-card h3 i { color:var(--brand); }
.deal-page-cstm .deal-desc-text { font-size:14px;color:#666;line-height:1.7; }

/* Products in deal */
.deal-page-cstm .deal-product-item {
    display:flex;align-items:center;gap:14px;
    padding:12px 0;border-bottom:1px solid #f5f5f5;
}
.deal-page-cstm .deal-product-item:last-child { border-bottom:none; }
.deal-page-cstm .dpi-img { width:60px;height:60px;border-radius:10px;object-fit:cover;flex-shrink:0;background:#f0f0f0; }
.deal-page-cstm .dpi-no-img { width:60px;height:60px;border-radius:10px;background:#f0f0f0;display:flex;align-items:center;justify-content:center;color:#ccc;font-size:22px;flex-shrink:0; }
.deal-page-cstm .dpi-info { flex:1;min-width:0; }
.deal-page-cstm .dpi-name { font-size:14px;font-weight:600;color:#222;margin-bottom:3px; }
.deal-page-cstm .dpi-sub  { font-size:12px;color:#aaa; }
.deal-page-cstm .dpi-qty  { background:var(--brand-lt);color:var(--brand);font-size:13px;font-weight:700;padding:4px 10px;border-radius:8px;flex-shrink:0; }

/* Pricing card */
.deal-page-cstm .price-card { background:#fff;border-radius:16px;padding:22px;box-shadow:0 2px 10px rgba(0,0,0,.07); }
.deal-page-cstm .price-row { display:flex;align-items:center;justify-content:space-between;margin-bottom:14px; }
.deal-page-cstm .price-main { font-size:32px;font-weight:800;color:var(--brand); }
.deal-page-cstm .price-old-wrap { text-align:right; }
.deal-page-cstm .price-old { font-size:16px;color:#ccc;text-decoration:line-through; }
.deal-page-cstm .price-save {
    display:inline-block;background:#d1fae5;color:#065f46;
    font-size:12px;font-weight:700;padding:3px 10px;border-radius:8px;margin-top:4px;
}

/* Validity */
.deal-page-cstm .validity-row { display:flex;align-items:center;gap:8px;margin-bottom:16px;font-size:13px;color:#888; }
.deal-page-cstm .validity-row i { color:var(--brand); }
.deal-page-cstm .validity-row strong { color:#333; }

/* Timer */
.deal-page-cstm .deal-timer-wrap {
    background:var(--brand-lt);border:1.5px solid var(--brand);
    border-radius:12px;padding:14px;margin-bottom:16px;text-align:center;
}
.deal-page-cstm .deal-timer-label { font-size:12px;color:#888;margin-bottom:6px; }
.deal-page-cstm .deal-timer-counts { display:flex;justify-content:center;gap:12px; }
.deal-page-cstm .tc { text-align:center; }
.deal-page-cstm .tc-num { font-size:24px;font-weight:800;color:var(--brand);font-variant-numeric:tabular-nums; }
.deal-page-cstm .tc-label { font-size:10px;color:#aaa;text-transform:uppercase;letter-spacing:.5px; }
.deal-page-cstm .tc-sep { font-size:22px;font-weight:800;color:var(--brand);line-height:1.4; }

/* Qty & Add */
.deal-page-cstm .qty-row { display:flex;align-items:center;gap:10px;margin-bottom:12px; }
.deal-page-cstm .qty-wrap-lg { display:flex;align-items:center;border:1.5px solid #e5e5e5;border-radius:10px;overflow:hidden; }
.deal-page-cstm .ql-btn { width:40px;height:44px;border:none;background:#f5f5f5;font-size:18px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#444;transition:background .15s; }
.deal-page-cstm .ql-btn:hover { background:var(--brand);color:#fff; }
.deal-page-cstm .ql-val { width:44px;text-align:center;font-size:16px;font-weight:700;color:#222; }

.deal-page-cstm .add-deal-btn {
    width:100%;background:var(--brand);color:#fff;border:none;
    border-radius:12px;padding:15px;font-size:16px;font-weight:700;
    cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;
    transition:background .2s;
}
.deal-page-cstm .add-deal-btn:hover { background:var(--brand-dk); }
.deal-page-cstm .add-deal-btn.busy { opacity:.7;pointer-events:none; }

/* In-cart state */
.deal-page-cstm .ic-deal-row {
    display:none;align-items:center;justify-content:space-between;
    background:var(--brand-lt);border:2px solid var(--brand);
    border-radius:12px;padding:8px 16px;
}
.deal-page-cstm .ic-deal-row.on { display:flex; }
.deal-page-cstm .ic-deal-btn { width:36px;height:36px;border:none;border-radius:8px;background:var(--brand);color:#fff;font-size:18px;font-weight:800;cursor:pointer;display:flex;align-items:center;justify-content:center; }
.deal-page-cstm .ic-deal-btn:hover { background:var(--brand-dk); }
.deal-page-cstm .ic-deal-qty  { font-size:18px;font-weight:800;color:var(--brand); }
.deal-page-cstm .ic-deal-price{ font-size:14px;font-weight:700;color:var(--brand); }

/* Back link */
.deal-page-cstm .back-link { display:inline-flex;align-items:center;gap:6px;color:#888;font-size:13px;text-decoration:none;margin-bottom:20px; }
.deal-page-cstm .back-link:hover { color:var(--brand); }

/* Cart drawer styles (same as other pages) */
.deal-page-cstm .d-overlay { display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:3000; }
.deal-page-cstm .d-overlay.open { display:block; }
.deal-page-cstm .c-drawer { position:fixed;top:0;right:-420px;width:400px;max-width:100vw;height:100%;background:#fff;z-index:3001;display:flex;flex-direction:column;transition:right .3s cubic-bezier(.4,0,.2,1);box-shadow:-4px 0 30px rgba(0,0,0,.14); }
.deal-page-cstm .c-drawer.open { right:0; }
.deal-page-cstm .dr-head { display:flex;align-items:center;justify-content:space-between;padding:17px 20px;border-bottom:1px solid #f0f0f0;flex-shrink:0; }
.deal-page-cstm .dr-title { font-size:18px;font-weight:800;color:#111;display:flex;align-items:center;gap:10px; }
.deal-page-cstm .dr-count { font-size:13px;color:#aaa; }
.deal-page-cstm .dr-close { width:32px;height:32px;border:none;background:#f5f5f5;border-radius:50%;cursor:pointer;font-size:15px;display:flex;align-items:center;justify-content:center;color:#555; }
.deal-page-cstm .dr-close:hover { background:#fee2e2;color:var(--brand); }
.deal-page-cstm .dr-items { flex:1;overflow-y:auto;padding:12px 20px; }
.deal-page-cstm .dr-empty { display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;color:#ccc;text-align:center;padding:40px; }
.deal-page-cstm .dr-empty i { font-size:50px;margin-bottom:14px; }
.deal-page-cstm .dr-empty p { font-size:15px;color:#aaa;margin-bottom:5px; }
.deal-page-cstm .d-item { display:flex;gap:11px;align-items:flex-start;padding:13px 0;border-bottom:1px solid #f5f5f5; }
.deal-page-cstm .d-item:last-child { border-bottom:none; }
.deal-page-cstm .d-img { width:58px;height:58px;border-radius:10px;object-fit:cover;flex-shrink:0;background:#f0f0f0; }
.deal-page-cstm .d-no-img { width:58px;height:58px;border-radius:10px;background:#f0f0f0;display:flex;align-items:center;justify-content:center;color:#ccc;font-size:20px;flex-shrink:0; }
.deal-page-cstm .d-info { flex:1;min-width:0; }
.deal-page-cstm .d-name { font-size:14px;font-weight:600;color:#222;margin-bottom:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.deal-page-cstm .d-sub  { font-size:12px;color:#aaa;margin-bottom:5px; }
.deal-page-cstm .d-pr    { font-size:14px;font-weight:700;color:var(--brand);margin-bottom:7px; }
.deal-page-cstm .d-qty-row { display:flex;align-items:center;gap:5px; }
.deal-page-cstm .dq-btn { width:25px;height:25px;border:1.5px solid #e5e5e5;border-radius:6px;background:#f8f8f8;font-size:14px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#444;transition:all .15s; }
.deal-page-cstm .dq-btn:hover { background:var(--brand);color:#fff;border-color:var(--brand); }
.deal-page-cstm .dq-num { min-width:26px;text-align:center;font-size:14px;font-weight:700; }
.deal-page-cstm .d-rm { background:none;border:none;color:#ccc;cursor:pointer;font-size:14px;padding:2px; }
.deal-page-cstm .d-rm:hover { color:var(--brand); }
.deal-page-cstm .dr-coupon { padding:11px 20px;border-top:1px solid #f0f0f0;flex-shrink:0; }
.deal-page-cstm .cp-row { display:flex;gap:7px; }
.deal-page-cstm .cp-inp { flex:1;border:1.5px solid #e5e5e5;border-radius:8px;padding:8px 11px;font-size:13px;outline:none;text-transform:uppercase; }
.deal-page-cstm .cp-inp:focus { border-color:var(--brand); }
.deal-page-cstm .cp-btn { background:#111;color:#fff;border:none;border-radius:8px;padding:8px 15px;font-size:13px;font-weight:600;cursor:pointer; }
.deal-page-cstm .cp-btn:hover { background:var(--brand); }
.deal-page-cstm .cp-applied { display:flex;align-items:center;justify-content:space-between;background:#f0fdf4;border:1.5px solid #86efac;border-radius:8px;padding:9px 13px;font-size:13px; }
.deal-page-cstm .cp-code { font-weight:700;color:#15803d; }
.deal-page-cstm .cp-rm-btn { background:none;border:none;color:#15803d;font-weight:700;cursor:pointer; }
.deal-page-cstm .cp-msg { font-size:12px;margin-top:5px;display:none; }
.deal-page-cstm .cp-msg.on { display:block; }
.deal-page-cstm .cp-msg.ok { color:#15803d; }
.deal-page-cstm .cp-msg.er { color:#ef4444; }
.deal-page-cstm .dr-totals { padding:13px 20px;border-top:1px solid #f0f0f0;flex-shrink:0;background:#fafafa; }
.deal-page-cstm .t-row { display:flex;justify-content:space-between;font-size:14px;color:#555;margin-bottom:5px; }
.deal-page-cstm .t-row.disc { color:#15803d; }
.deal-page-cstm .t-row.grand { font-size:18px;font-weight:800;color:#111;margin-top:8px;padding-top:10px;border-top:2px solid #111;margin-bottom:0; }
.deal-page-cstm .dr-footer { padding:15px 20px;border-top:1px solid #f0f0f0;flex-shrink:0; }
.deal-page-cstm .go-chk { display:block;width:100%;background:var(--brand);color:#fff;border:none;border-radius:12px;padding:15px;font-size:16px;font-weight:700;cursor:pointer;text-align:center;text-decoration:none; }
.deal-page-cstm .go-chk:hover { background:var(--brand-dk);color:#fff; }
.deal-page-cstm .go-chk.off { background:#ddd;cursor:not-allowed;pointer-events:none; }
.deal-page-cstm .go-cart { display:block;text-align:center;margin-top:9px;font-size:13px;color:#aaa;text-decoration:none; }
.deal-page-cstm .go-cart:hover { color:var(--brand); }

.deal-page-cstm #toast { position:fixed;bottom:26px;left:50%;transform:translateX(-50%);background:#111;color:#fff;padding:10px 22px;border-radius:20px;font-size:14px;z-index:9999;opacity:0;pointer-events:none;transition:opacity .25s; }
.deal-page-cstm #toast.on { opacity:1; }

@media (max-width:767px) {
    .deal-page-cstm .layout { flex-direction:column; }
    .deal-page-cstm .right-col { width:100%;position:static; }
    .deal-page-cstm .deal-hero { height:220px; }
    .deal-page-cstm .deal-hero-name { font-size:22px; }
    .deal-page-cstm .left-col {
        width: 100%;
    }
}
/* -------------------- Deal page css end ---------------------------------- */
