/* =========================================================
   UniqueBD Fresh Stylesheet
   Consolidated responsive layout, full-width header/footer,
   product cards, search, cart quantity controls and checkout.
   ========================================================= */
:root{
    --navy:#001f3f;
    --navy-2:#00335f;
    --navy-3:#062b4e;
    --orange:#ff6b00;
    --orange-2:#ff8a1f;
    --cream:#fffaf4;
    --soft:#f5f8fb;
    --line:#e3e9ef;
    --text:#132238;
    --muted:#6d7a88;
    --white:#fff;
    --shadow:0 10px 35px rgba(0,31,63,.08);
    --radius:16px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:"Nunito Sans","Hind Siliguri",Arial,sans-serif;color:var(--text);background:#fff;line-height:1.55}
body,button,input,textarea,select{font-family:inherit}
a{text-decoration:none;color:inherit}
button{font:inherit}.wrap{width:min(1260px,94%);margin-inline:auto}


/* =========================================================
   HEADER / TOPBAR
   ========================================================= */

.topbar{
    background:#fff;
    color:var(--navy);
    border-bottom:1px solid var(--line);
}

.topbar-inner{
    min-height:72px;
    display:flex;
    align-items:center;
    gap:24px;
}

.brand{
    width:145px;
    flex:0 0 145px;
    display:flex;
    align-items:center;
}

.brand img{
    width:100%;
    height:58px;
    object-fit:contain;
    object-position:left center;
    display:block;
}

/* Search stays in the white topbar */
.topbar .search-form{
    flex:1;
    max-width:650px;
    margin:0 auto;
}

/* Topbar links: Track Order / Wishlist / Cart */
.top-actions{
    display:flex;
    align-items:center;
    gap:22px;
    flex:0 0 auto;
    margin-left:auto;
}

.top-actions a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:var(--navy);
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    transition:color .2s ease;
}

.top-actions a i{
    font-size:16px;
    color:var(--navy);
    transition:color .2s ease,transform .2s ease;
}

.top-actions a:hover,
.top-actions a:hover i{
    color:var(--orange);
}

.top-actions a:hover i{
    transform:translateY(-1px);
}

.top-actions .count{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:18px;
    height:18px;
    padding:0 5px;
    margin-left:-3px;
    border-radius:20px;
    background:var(--orange);
    color:#fff;
    font-size:10px;
    font-weight:900;
    line-height:1;
}

/* =========================================================
   DARK NAVIGATION BAR
   ========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:var(--navy);
    color:#fff;
    box-shadow:0 3px 18px rgba(0,31,63,.14);
}

.header-inner{
    min-height:54px;
    display:flex;
    align-items:center;
    position:relative;
}

.main-menu{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:nowrap;
    overflow-x:auto;
    white-space:nowrap;
    scrollbar-width:none;
}

.main-menu::-webkit-scrollbar{
    display:none;
}

.main-menu a{
    flex:0 0 auto;
}

.main-menu>a,
.category-toggle{
    border:0;
    background:transparent;
    color:#fff;
    font-size:12px;
    font-weight:800;
    padding:10px 11px;
    border-radius:8px;
    cursor:pointer;
    white-space:nowrap;
    transition:color .2s ease,background .2s ease;
}

.main-menu>a:hover,
.main-menu>a.active,
.category-toggle:hover{
    color:var(--orange);
    background:rgba(255,255,255,.08);
}

.category-menu{
    position:relative;
}

.category-toggle span{
    font-size:14px;
    margin-left:3px;
}

.category-dropdown{
    position:absolute;
    left:0;
    top:calc(100% + 7px);
    min-width:215px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    box-shadow:var(--shadow);
    padding:7px;
    display:none;
}

.category-menu:hover .category-dropdown,
.category-menu:focus-within .category-dropdown{
    display:block;
}

.category-dropdown a{
    display:block;
    padding:9px 11px;
    border-radius:7px;
    font-size:12px;
    font-weight:700;
    color:#45576a;
}

.category-dropdown a:hover{
    background:#fff5ec;
    color:var(--orange);
}

.mobile-menu-btn{
    display:none;
    border:0;
    background:transparent;
    color:#fff;
    font-size:25px;
    width:40px;
    height:40px;
    padding:0;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

/* =========================================================
   CATEGORY CAROUSEL
   ========================================================= */

.cat-carousel{
    position:relative;
    display:flex;
    align-items:center;
    gap:5px;
}

.cat-carousel .cat-track{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    flex:1;
    min-width:0;
    padding:3px 0 5px;
    -ms-overflow-style:none;
    scrollbar-width:none;
}

.cat-carousel .cat-track::-webkit-scrollbar{
    display:none;
}

.cat-carousel .cat-track .cat{
    flex: 0 0 calc(25% - 12px);
    scroll-snap-align:start;
}

.cat-nav{
    flex:0 0 auto;
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid var(--line);
    background:#fff;
    color:var(--navy);
    font-size:22px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 2px;
    transition:.2s;
}

.cat-nav:hover{
    background:var(--orange);
    color:#fff;
    border-color:var(--orange);
}

.cat-nav:disabled{
    opacity:.4;
    cursor:not-allowed;
}

/* =========================
   SEARCH
========================= */

.search-form {
    position: relative;
    z-index: 9999;

    display: flex;
    align-items: center;

    width: 100%;
    max-width: 500px;
    height: 46px;

    background: #f6f8fa;
    border: 1px solid #d9e1e8;
    border-radius: 8px;

    overflow: visible;
}

.search-icon {
    width: 42px;
    flex: 0 0 42px;

    text-align: center;

    font-size: 23px;
    color: #001f3f;

    pointer-events: none;
}

.search-input {
    position: relative;
    z-index: 10000;

    width: 100%;
    height: 44px;

    flex: 1;

    border: none;
    outline: none;

    background: transparent;

    padding: 0 10px;

    font-size: 14px;
    color: #222;

    pointer-events: auto;
    user-select: text;
    -webkit-user-select: text;

    cursor: text;
}

.search-input:focus {
    outline: none;
}

.search-button {
    height: 100%;

    border: none;
    outline: none;

    padding: 0 18px;

    background: #ff6b00;
    color: #fff;

    font-weight: 600;

    cursor: pointer;

    border-radius: 0 8px 8px 0;
}

.search-button:hover {
    background: #e85d00;
}


/* =========================
   SEARCH RESULTS
========================= */

.search-results {
    position: absolute;

    top: calc(100% + 5px);
    left: 0;
    right: 0;

    z-index: 99999;

    background: #fff;

    border: 1px solid #ddd;
    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    overflow: hidden;

    display: none;
}

.search-result {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px;

    text-decoration: none;

    color: #222;

    border-bottom: 1px solid #eee;
}

.search-result:hover {
    background: #f7f7f7;
}

.search-result img {
    width: 45px;
    height: 45px;

    object-fit: cover;

    border-radius: 5px;
}

.search-result-info {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.search-result-info b {
    font-size: 13px;
}

.search-result-info span {
    color: #ff6b00;
    font-size: 13px;
    font-weight: 600;
}

.search-empty {
    padding: 15px;

    text-align: center;

    color: #777;

    font-size: 14px;
}


/* =========================================================
   HERO / HOMEPAGE SLIDER
   Single authoritative hero block.
   ========================================================= */
.hero{
    display:grid;
    grid-template-columns:minmax(0,2.45fr) minmax(260px,.85fr);
    gap:16px;
    padding-top:18px;
    align-items:stretch;
}
.hero-main,.offer{
    position:relative;
    min-width:0;
    min-height:420px;
    overflow:hidden;
    border-radius:0px;
    background:var(--navy);
    box-shadow:var(--shadow);
}
.hero-slider{position:relative;isolation:isolate}
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .65s ease,visibility .65s ease;
}
.hero-slide.active{opacity:1;visibility:visible;pointer-events:auto;z-index:2}
.hero-slide img,.offer>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.hero-slide .shade,.hero-main>.shade{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,25,52,.88),rgba(0,25,52,.34),rgba(0,25,52,.05));
    pointer-events:none;
}
.hero-copy{position:absolute;left:42px;right:40px;bottom:40px;z-index:5;max-width:620px;color:#fff}
.hero-copy small,.offer-copy small,.ordercopy>small,.heading small{font-size:10px;letter-spacing:1.8px;font-weight:900;color:var(--orange)}
.hero-copy small{color:#ffd0aa}
.hero-copy h1{font-size:42px;line-height:1.05;margin:8px 0 10px;font-weight:900}
.hero-copy p{font-size:13px;max-width:620px;margin:0 0 17px;color:#eaf1f6}
.hero-arrow{
    position:absolute;
    top:50%;
    z-index:20;
    width:42px;
    height:42px;
    padding:0;
    border:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:translateY(-50%);
    background:rgba(255,255,255,.92);
    color:var(--navy);
    font-size:30px;
    line-height:1;
    cursor:pointer;
    opacity:0;
    transition:opacity .2s ease,background .2s ease,color .2s ease;
}
.hero-prev{left:15px}
.hero-next{right:15px}
.hero-slider:hover .hero-arrow{opacity:1}
.hero-arrow:hover{background:var(--orange);color:#fff}
.hero-dots{position:absolute;left:50%;bottom:15px;z-index:20;display:flex;align-items:center;gap:7px;transform:translateX(-50%)}
.hero-dot{width:8px;height:8px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.62);cursor:pointer;transition:width .2s ease,background .2s ease}
.hero-dot.active{width:24px;border-radius:20px;background:var(--orange)}
.offer{display:block;height:100%}
.offer .shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,25,52,.02),rgba(0,25,52,.88))}
.offer-copy{position:absolute;left:22px;right:20px;bottom:22px;z-index:5;color:#fff}
.offer-copy small{color:#ffc28f}
.offer-copy strong{display:block;font-size:29px;line-height:1.05;margin:7px 0 14px;font-weight:900}
.offer-copy span{display:inline-block;background:var(--orange);color:#fff;padding:8px 12px;border-radius:8px;font-size:11px;font-weight:900}
.btn{display:inline-flex;border:0;cursor:pointer;align-items:center;justify-content:center;border-radius:9px;font-weight:800;font-size:12px;padding:10px 15px;transition:.2s}
.btn:hover{transform:translateY(-1px)}
.btn.primary{background:var(--orange);color:#fff}
.btn.primary:hover{background:#e95f00}
.btn.light{background:#fff;color:var(--navy)}

/* sections */
.section{padding:58px 0}.pale{background:#f7fafc;max-width:none}.pale>.wrap{width:min(1260px,94%)}
.heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:23px}.heading h2{font-size:28px;line-height:1.2;margin:4px 0 0;color:var(--navy);font-weight:900}.heading>span{font-size:11px;color:var(--muted)}
.filters{display:flex;gap:6px;flex-wrap:wrap;justify-content:flex-end}.filter{background:#fff;border:1px solid var(--line);border-radius:20px;padding:7px 11px;font-size:10px;font-weight:800;cursor:pointer}.filter.active,.filter:hover{background:var(--orange);color:#fff;border-color:var(--orange)}
.cats{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}.cat{background:#fff;border:1px solid var(--line);border-radius:15px;padding:22px;text-align:center;transition:.2s}.cat:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:#ffd1ae}

.icon{width:60px;height:60px;margin:0 auto 10px;border-radius:17px;display:grid;place-items:center;
font-size:31px;background:#fff5eb;color:var(--orange);border:1px solid #ffe0c8}
.icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:inherit;
    display:block;
}
.cat b{display:block;font-size:14px}.cat span{font-size:10px;color:var(--orange);font-weight:800}

/* product cards */
.products{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.card{background:#fff;border:1px solid var(--line);border-radius:15px;overflow:hidden;transition:.22s;box-shadow:0 3px 12px rgba(0,31,63,.03)}.card:hover{transform:translateY(-4px);box-shadow:0 14px 35px rgba(0,31,63,.11);border-color:#ffd5b6}.pic{height:230px;position:relative;background:#f5f7f9}.pic img{width:100%;height:100%;object-fit:cover}.badge{position:absolute;top:11px;left:11px;background:var(--orange);color:#fff;border-radius:6px;padding:5px 8px;font-size:9px;font-weight:900}.info{padding:14px}.catname{font-size:9px;color:var(--orange);font-weight:900;text-transform:uppercase;letter-spacing:.6px}.info h3{font-size:14px;margin:4px 0 7px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--navy)}.prices{display:flex;gap:7px;align-items:center;margin-bottom:10px}.old{text-decoration:line-through;color:#9aa5ae;font-size:10px}.price{color:var(--orange);font-weight:900;font-size:18px}.card-actions{display:flex;gap:7px;align-items:center;margin-top:10px}.card-actions form:first-child{flex:1}.card-actions .primary{width:100%;margin-top:0}.wish-btn,.icon-btn{border:1px solid #dfe6ec;background:#fff;border-radius:8px;width:40px;height:40px;cursor:pointer;font-size:18px;color:#8895a1}.wish-btn.active,.wish-btn:hover{color:var(--orange);border-color:#ffc79f;background:#fff6ef}.icon-btn.danger{color:#d44937}

/* order section */
.order{background:linear-gradient(120deg,var(--navy),var(--navy-2));color:#fff;padding:70px 0}.ordergrid{display:grid;grid-template-columns:1fr 1fr;gap:65px}.ordercopy{padding-top:20px}.ordercopy>small{color:#ffbd8b}.ordercopy h2{font-size:38px;line-height:1.1;margin:9px 0 14px}.ordercopy p{color:#cbd9e5;font-size:13px}.ordercopy ul{padding:0;list-style:none;color:#e6eef4;font-size:12px;display:grid;gap:8px;margin-top:23px}
.order form{background:#fff;color:var(--text);padding:25px;border-radius:17px}form h3{margin:0 0 14px;font-size:20px;color:var(--navy)}label{display:block;font-size:10px;font-weight:800;margin:9px 0 4px}input,textarea,select{width:100%;border:1px solid #dce4eb;border-radius:8px;padding:9px;font-size:12px;outline:none;background:#fff}input:focus,textarea:focus,select:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(255,107,0,.08)}.opts{display:grid;grid-template-columns:1fr 1fr;gap:6px}.opt{border:1px solid var(--line);border-radius:8px;padding:8px;font-size:10px;cursor:pointer}.opt.selected{border-color:var(--orange);background:#fff7ef}.opt input{width:auto}.twocol{display:grid;grid-template-columns:1fr 1fr;gap:10px}.total{border:1px solid var(--line);padding:9px;border-radius:8px;color:var(--orange);font-weight:900}.primary{width:100%;margin-top:15px}.note{text-align:center;font-size:9px;color:#8b948f}.form-errors{background:#fff0ef;border:1px solid #ffd1cd;color:#a02f22;border-radius:8px;padding:10px;font-size:11px;margin-bottom:10px}.form-errors ul{margin:0;padding-left:16px}.selected-product{display:flex;align-items:center;gap:10px;border:1px solid var(--line);border-radius:8px;padding:8px;margin-bottom:4px}.selected-product img{width:48px;height:48px;object-fit:cover;border-radius:6px}.selected-product b{display:block;font-size:12px}.selected-product span{font-size:11px;color:var(--orange);font-weight:800}
.delivery-options{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:5px}.delivery-option{position:relative;display:flex!important;align-items:center;gap:8px;border:1px solid var(--line);border-radius:8px;padding:10px!important;margin:0!important;cursor:pointer;font-size:11px!important}.delivery-option input{position:absolute;opacity:0;width:1px}.checkmark{width:18px;height:18px;border:1px solid #b9c5cf;border-radius:4px;display:grid;place-items:center;font-size:12px;color:transparent;flex:none}.delivery-option.selected{border-color:var(--orange);background:#fff7ef}.delivery-option.selected .checkmark{background:var(--orange);border-color:var(--orange);color:#fff}.delivery-option b{color:var(--orange)}

/* =========================================================
   SHOP / CART / CHECKOUT
   ========================================================= */

.shop-page{
    min-height:55vh;
}

.empty-state{
    text-align:center;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:60px 20px;
    box-shadow:0 4px 20px rgba(0,31,63,.04);
}

.empty-icon{
    font-size:45px;
    color:var(--orange);
}

.empty-state h3{
    margin:8px 0;
    color:var(--navy);
}

.empty-state p{
    color:var(--muted);
    font-size:12px;
    margin-bottom:20px;
}


/* ================================
   CART MAIN LAYOUT
================================ */

.cart-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(540px,620px);
    gap:28px;
    align-items:start;
}

.cart-list{
    padding:0;
    background:transparent;
}


/* ================================
   CART ITEM
================================ */

.cart-item{
    background:#fff;
    border:1px solid var(--line);
    border-radius:13px;
    padding:12px;
    display:grid;
    grid-template-columns:65px minmax(150px,1fr) 117px 90px 34px;
    align-items:center;
    gap:12px;
    margin-bottom:9px;
}

.cart-item img{
    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:9px;
}

.cart-item-info{
    min-width:0;
}

.cart-item-info b{
    display:block;
    font-size:13px;
    color:var(--navy);
}

.cart-item-info span{
    font-size:12px;
    color:var(--orange);
    font-weight:900;
}


/* ================================
   CART QUANTITY
================================ */

.cart-quantity{
    display:inline-flex;
    align-items:center;
    width:117px;
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    flex-shrink:0;
}

.cart-qty-btn{
    width:36px;
    height:38px;
    flex:0 0 36px;
    border:0;
    background:#f5f5f5;
    color:var(--navy);
    font-size:20px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    transition:background .2s ease,color .2s ease;
}

.cart-qty-btn:hover{
    background:#e9e9e9;
    color:var(--orange);
}

.cart-qty-btn:disabled{
    opacity:.5;
    cursor:not-allowed;
}

.cart-quantity .cart-qty{
    width:45px;
    min-width:45px;
    height:38px;
    padding:0;
    border:0;
    border-left:1px solid #ddd;
    border-right:1px solid #ddd;
    border-radius:0;
    text-align:center;
    font-weight:700;
    outline:none;
    background:#fff;
    box-shadow:none;
}

.cart-quantity .cart-qty:focus{
    border-color:#ddd;
    box-shadow:none;
}

.cart-qty::-webkit-inner-spin-button,
.cart-qty::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.cart-qty{
    -moz-appearance:textfield;
}


/* ================================
   CHECKOUT CARD
================================ */

.checkout-card{
    width:100%;
    max-width:620px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:22px;
    position:sticky;
    top:100px;
    box-shadow:var(--shadow);
}

.checkout-card h3{
    margin-top:0;
    color:var(--navy);
}

.summary-row{
    display:flex;
    justify-content:space-between;
    gap:10px;
    font-size:12px;
    margin:9px 0;
}

.summary-row b{
    color:var(--orange);
}

.checkout-card hr{
    border:0;
    border-top:1px solid var(--line);
    margin:15px 0;
}

.checkout-form{
    padding:0;
}

.checkout-form .primary{
    margin-top:12px;
}


/* ================================
   CART SUGGESTED PRODUCTS
================================ */

.checkout-suggestions{
    margin:18px 0 20px;
    padding:14px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fafbfc;
}

.checkout-suggestions-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:10px;
    margin-bottom:12px;
}

.checkout-suggestions-head small{
    display:block;
    font-size:10px;
    font-weight:900;
    letter-spacing:.08em;
    color:var(--orange);
    margin-bottom:2px;
}

.checkout-suggestions-head b{
    display:block;
    font-size:16px;
    color:var(--navy);
}

.checkout-suggestions-head span{
    font-size:10px;
    color:var(--muted);
    text-align:right;
}


/* 8 products = 2 products per row */
.compact-suggestion-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}

.compact-suggestion{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    padding:9px;
    border:1px solid var(--line);
    border-radius:11px;
    background:#fff;
    cursor:pointer;
    transition:border-color .15s ease,box-shadow .15s ease;
}

.compact-suggestion:hover{
    border-color:#d6dde4;
    box-shadow:0 4px 14px rgba(0,31,63,.05);
}

.compact-suggestion.selected{
    border-color:var(--orange);
    box-shadow:0 0 0 2px rgba(255,107,0,.08);
}

.compact-suggestion-check{
    position:absolute;
    top:7px;
    left:7px;
    width:18px;
    height:18px;
    z-index:3;
    accent-color:var(--orange);
}

.compact-suggestion-image{
    display:block;
    width:100%;
    height:105px;
    margin-bottom:7px;
    overflow:hidden;
    border-radius:9px;
    background:#f6f7f8;
}

.compact-suggestion-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:6px;
}

.compact-suggestion-body{
    width:100%;
    min-width:0;
}

.compact-suggestion-top{
    display:block;
}

.compact-suggestion-name{
    display:-webkit-box;
    min-height:29px;
    overflow:hidden;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    color:var(--navy);
    font-size:11px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:4px;
}

.compact-suggestion-price{
    display:block;
    margin-bottom:7px;
    color:var(--orange);
    font-size:13px;
    font-weight:900;
}

.compact-suggestion-fields{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:5px;
}

.compact-suggestion-fields select,
.compact-suggestion-fields input[type=number]{
    width:100%;
    min-width:0;
    height:32px;
    margin:0;
    padding:4px 5px;
    border-radius:7px;
    font-size:9px;
}

.compact-suggestion-fields .qty-only{
    grid-column:1 / -1;
}

.compact-suggestion-fields.no-variant{
    grid-template-columns:1fr;
}

.compact-suggestion-fields.no-variant .qty-only{
    grid-column:1;
}

.compact-add-btn{
    width:100%;
    margin-top:12px;
    padding:11px 12px;
    font-size:12px;
}

.compact-suggestion-note{
    margin:8px 0 0;
    color:var(--muted);
    font-size:10px;
    text-align:center;
}


/* ================================
   CART RESPONSIVE
================================ */

@media(max-width:1100px){

    .cart-layout{
        grid-template-columns:minmax(0,1fr) minmax(470px,540px);
        gap:20px;
    }

    .checkout-card{
        max-width:540px;
    }
}

@media(max-width:900px){

    .cart-layout{
        grid-template-columns:1fr;
    }

    .checkout-card{
        position:static;
        max-width:none;
    }
}

@media(max-width:768px){

    .cart-item{
        grid-template-columns:55px 1fr 30px;
        gap:10px;
        align-items:center;
    }

    .cart-item img{
        width:55px;
        height:55px;
        grid-column:1;
        grid-row:1;
    }

    .cart-item-info{
        grid-column:2;
        grid-row:1;
        min-width:0;
    }

    .cart-item .icon-btn{
        grid-column:3;
        grid-row:1;
    }

    .cart-quantity{
        grid-column:2;
        grid-row:2;
    }

    .cart-item>strong{
        grid-column:2;
        grid-row:3;
        font-size:14px;
        color:var(--orange);
    }
}

@media(max-width:480px){

    .checkout-card{
        padding:14px;
    }

    .checkout-suggestions{
        padding:9px;
    }

    .compact-suggestion-list{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:7px;
    }

    .compact-suggestion{
        padding:6px;
    }

    .compact-suggestion-image{
        height:82px;
    }

    .compact-suggestion-name{
        min-height:26px;
        font-size:10px;
    }

    .compact-suggestion-price{
        font-size:11px;
    }

    .compact-suggestion-fields{
        grid-template-columns:1fr;
    }

    .compact-suggestion-fields .qty-only{
        grid-column:1;
    }

    .compact-suggestion-fields select,
    .compact-suggestion-fields input[type=number]{
        height:30px;
        font-size:9px;
    }

    .checkout-suggestions-head span{
        display:none;
    }
}

/* track order */
.track-hero{background:linear-gradient(120deg,var(--navy),var(--navy-2));color:#fff;padding:58px 0}.track-wrap{display:grid;grid-template-columns:1.1fr .8fr;gap:50px;align-items:center}.track-copy small{font-size:10px;letter-spacing:1.5px;color:#ffbd8b;font-weight:900}.track-copy h1{font-size:44px;line-height:1.1;margin:9px 0}.track-copy p{color:#d7e4ee;font-size:13px}.track-form{padding:24px}.track-result{padding-top:45px}.track-result-head{display:flex;justify-content:space-between;align-items:center}.track-result-head h2{margin:4px 0;color:var(--navy)}.status{padding:7px 13px;border-radius:20px;background:#fff4e9;color:var(--orange);font-size:11px;font-weight:900;text-transform:capitalize}.status.status-cancelled{background:#fdeaea;color:#a02f22}.status-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin:28px 0}.status-step{background:#fff;border:1px solid var(--line);padding:13px;border-radius:10px;color:#9ba6b0}.status-step span{display:block;font-size:22px}.status-step b{font-size:11px}.status-step.done{border-color:#ffd0aa;color:var(--orange);background:#fff8f1}.cancelled-note{background:#fdeaea;color:#a02f22;padding:11px;border-radius:9px;font-size:12px;margin-bottom:15px}.track-order-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:18px}.track-order-grid>div,.order-summary{background:#fff;border:1px solid var(--line);border-radius:15px;padding:20px}.track-order-grid h3{margin-top:0;color:var(--navy)}.track-item{display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px solid var(--line);font-size:12px}.total-row{font-size:15px;margin-top:14px}.order-summary p{font-size:11px;color:var(--muted);margin-top:20px}

/* small product recommendation */
.mini{display:grid;grid-template-columns:repeat(4,1fr);gap:13px}.mini .mcard{background:#fff;border:1px solid var(--line);border-radius:12px;overflow:hidden}.mcard img{height:155px;width:100%;object-fit:cover}.mcard div{padding:10px}.mcard b{font-size:12px;color:var(--navy)}.mcard .price{font-size:15px}
.hero-actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center}.hero-actions form{background:transparent;padding:0}.hero-actions .btn{display:inline-block;border:0;cursor:pointer}.wishlist-remove{position:absolute;right:10px;top:10px;padding:0;background:transparent}.wishlist-remove button{width:35px;height:35px;border:0;border-radius:50%;background:#fff;box-shadow:0 2px 10px #0001;color:var(--orange);cursor:pointer;font-size:16px}.pagination{margin-top:24px;display:flex;justify-content:center;gap:6px}.pagination nav{display:flex;gap:4px}

/* why / footer */
.why{background:#f7fafc;padding:60px 0}.center{display:block;text-align:center}.benefits{display:grid;grid-template-columns:repeat(4,1fr);gap:13px}.benefits>div{background:#fff;border:1px solid var(--line);border-radius:14px;padding:23px;text-align:center;font-size:25px}.benefits b{display:block;font-size:14px;margin:7px;color:var(--navy)}.benefits p{font-size:10px;color:var(--muted)}
footer{background:var(--navy);color:#aebdca;padding-top:45px}.foot{display:grid;grid-template-columns:1.5fr 1fr 1.1fr 1.2fr;gap:28px;padding-bottom:35px}.foot>div>b{display:block;color:#fff;font-size:12px;margin-bottom:10px}.foot p,.foot a{font-size:10px;margin:5px 0;display:block}.foot a:hover{color:#fff}.footer-brand{display:block;width:145px;background:#fff;border-radius:9px;padding:5px}.footer-brand img{width:100%;height:50px;object-fit:contain}.copyright{text-align:center;border-top:1px solid rgba(255,255,255,.12);padding:14px;font-size:9px;color:#94a8b8}
#toast{position:fixed;right:18px;bottom:18px;background:var(--navy);color:#fff;padding:12px 15px;border-radius:9px;font-size:11px;opacity:0;transform:translateY(20px);transition:.25s;z-index:300;box-shadow:0 10px 30px rgba(0,0,0,.2)}#toast.show{opacity:1;transform:none}


/* Product card links */
.product-card-link{display:block;color:inherit}.product-name-link{color:inherit;text-decoration:none}.product-name-link:hover{color:var(--orange)}


/* =========================================================
   FULL WIDTH HEADER / TOPBAR / FOOTER
   ========================================================= */
.full-width-container{width:100%;max-width:none;margin:0;padding-left:40px;padding-right:40px}

/* =========================================================
   RESPONSIVE — KEEP AT END OF FILE
   ========================================================= */
@media (min-width:1440px){.full-width-container{padding-left:60px;padding-right:60px}}

@media (max-width:1050px){
    .topbar-inner{gap:15px}
    .brand{width:125px;flex-basis:125px}
    .top-actions{gap:12px}
    .top-actions a{font-size:13px}
    .topbar .search-form{max-width:500px}
    .main-menu{gap:2px}
    .main-menu>a,.category-toggle{padding:9px 8px}
}

@media (max-width:991px){.full-width-container{padding-left:25px;padding-right:25px}}

@media (max-width:900px){
    .mobile-menu-btn{display:flex;margin-left:auto}
    .main-menu{display:none;position:absolute;top:54px;left:0;right:0;margin-left:0;padding:8px;flex-direction:column;align-items:stretch;gap:2px;background:var(--navy);border:1px solid rgba(255,255,255,.12);border-top:0;border-radius:0 0 12px 12px;box-shadow:0 12px 25px rgba(0,0,0,.18)}
    .main-menu.open{display:flex}
    .main-menu>a,.category-toggle{width:100%;text-align:left;padding:11px 12px}
    .category-menu{width:100%}
    .category-dropdown{position:static;min-width:0;display:block;box-shadow:none;border:0;border-radius:8px;padding:3px 0 3px 10px;background:rgba(255,255,255,.05)}
    .category-dropdown a{color:#eaf2f8;padding:9px 10px}
    .category-dropdown a:hover{background:rgba(255,255,255,.08);color:var(--orange)}
    .cats,.products{grid-template-columns:repeat(2,1fr)}
    .cat-carousel .cat-track .cat{flex:0 0 calc(50% - 8px)}
    .hero{grid-template-columns:1fr}
    .hero-main,.offer{min-height:380px}
    .offer{width:100%;justify-self:stretch}
    .hero-arrow{opacity:1}
    .ordergrid{grid-template-columns:1fr;gap:22px}
    .mini{grid-template-columns:repeat(2,1fr)}
    .benefits{grid-template-columns:repeat(2,1fr)}
    .foot{grid-template-columns:1fr 1fr}
    .cart-layout,.track-wrap,.track-order-grid{grid-template-columns:1fr}
    .checkout-card{position:static}
    .track-copy h1{font-size:36px}
    .cart-item{grid-template-columns:55px minmax(120px,1fr) 117px 75px 30px;gap:8px}
    .cart-item img{width:55px;height:55px}
}

@media (max-width:768px){
    .topbar-inner{min-height:auto;padding-top:12px;padding-bottom:12px;display:grid;grid-template-columns:1fr auto;gap:12px}
    .brand{width:120px;flex-basis:120px}
    .brand img{height:50px}
    .topbar .search-form{grid-column:1/-1;grid-row:2;width:100%;max-width:none;margin:0}
    .top-actions{gap:10px;justify-content:flex-end}
    .top-actions a{font-size:12px}
    .top-actions a:first-child{display:none}
    .site-header,.header-inner{min-height:52px}
    .main-menu{top:52px}
    .hero-main,.offer{min-height:340px}
    .hero-copy{left:22px;right:22px;bottom:35px}
    .hero-copy h1{font-size:32px}
    .hero-copy p{font-size:11px}
    .hero-arrow{width:36px;height:36px;font-size:25px}
    .hero-prev{left:8px}
    .hero-next{right:8px}
    .section{padding:48px 0}
    .heading{display:block}
    .heading h2{font-size:24px;margin-bottom:14px}
    .filters{justify-content:flex-start}
    .cat{padding:16px 8px}
    .icon{width:52px;height:52px;font-size:27px}
    .cat b{font-size:12px}
    .products{gap:9px}
    .pic{height:175px}
    .info{padding:9px}
    .info h3{font-size:12px}
    .price{font-size:16px}
    .opts,.twocol{grid-template-columns:1fr}
    .delivery-options{grid-template-columns:1fr 1fr}
    .mini{gap:9px}
    .mcard img{height:125px}
    .benefits{gap:9px}
    .foot{grid-template-columns:1fr}
    .track-hero{padding:40px 0}
    .track-form{padding:18px}
    .status-steps{grid-template-columns:repeat(2,1fr)}
    .card-actions .btn.primary{font-size:10px;padding:9px 8px}
    .cart-item{grid-template-columns:55px 1fr 30px;gap:10px;align-items:center}
    .cart-item img{width:55px;height:55px;grid-column:1;grid-row:1}
    .cart-item-info{grid-column:2;grid-row:1;min-width:0}
    .cart-item .icon-btn{grid-column:3;grid-row:1}
    .cart-quantity{grid-column:2;grid-row:2}
    .cart-item>strong{grid-column:2;grid-row:3;font-size:14px;color:var(--orange)}
}

@media (max-width:640px){
    .full-width-container{padding-left:15px;padding-right:15px}
    .search-button{padding:0 12px}
    .hero-copy h1{font-size:30px}
    .cat-carousel .cat-track .cat{flex:0 0 calc(50% - 8px)}
    .cat-nav{width:31px;height:31px;font-size:20px}
    .hero-actions{gap:6px}
}

@media (max-width:480px){
    .hero-main,.offer{min-height:300px}
    .hero-copy{bottom:30px}
    .hero-copy h1{font-size:26px}
    .hero-copy p{display:none}
}

@media (max-width:420px){
    .top-actions{gap:7px}
    .top-actions a{font-size:11px}
    .brand{width:105px;flex-basis:105px}
    .pic{height:155px}
    .products{grid-template-columns:repeat(2,minmax(0,1fr))}
    .cat-carousel .cat-track .cat{flex:0 0 100%}
}

/* =========================================================
   CUSTOMER AUTH / TOPBAR ACCOUNT
   ========================================================= */
.top-logout-form{margin:0;padding:0;display:flex}
.top-logout-btn,.top-user-name{border:0;background:transparent;color:inherit;font:inherit;display:flex;align-items:center;gap:6px;white-space:nowrap}
.top-logout-btn{cursor:pointer;padding:0}
.top-logout-btn:hover,.auth-top-link:hover{color:var(--orange)}
.top-user-name{font-size:13px;font-weight:700;max-width:150px}
.top-user-name span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.register-link{color:var(--orange)!important}

.customer-auth{display:flex;justify-content:center;padding-top:55px;padding-bottom:65px}
.auth-card{width:min(100%,500px);padding:30px;background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow)}
.auth-heading{text-align:center;margin-bottom:24px}
.auth-icon{width:54px;height:54px;border-radius:50%;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;background:#fff4eb;color:var(--orange);font-size:22px}
.auth-heading small{display:block;color:var(--orange);font-size:10px;letter-spacing:1.8px;font-weight:900}
.auth-heading h1{margin:6px 0 5px;color:var(--navy);font-size:29px;line-height:1.15}
.auth-heading p{margin:0;color:var(--muted);font-size:13px}
.auth-form label{display:block;margin:14px 0 6px;color:var(--navy);font-size:13px;font-weight:800}
.auth-form input[type="text"],.auth-form input[type="email"],.auth-form input[type="password"]{width:100%;height:46px;padding:0 13px;border:1px solid var(--line);border-radius:9px;background:#fff;color:var(--navy);font:inherit;box-sizing:border-box;outline:none}
.auth-form input:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(230,122,35,.10)}
.auth-check{display:flex!important;align-items:center;gap:8px!important;font-weight:600!important;color:var(--muted)!important;cursor:pointer}
.auth-check input{width:auto;margin:0}
.auth-submit{width:100%;margin-top:18px;justify-content:center;gap:7px}
.auth-switch{text-align:center;margin-top:20px;padding-top:18px;border-top:1px solid var(--line);font-size:13px;color:var(--muted)}
.auth-switch a{color:var(--orange);font-weight:900}
.auth-errors{margin-bottom:16px;padding:11px 13px;border:1px solid #fecaca;border-radius:9px;background:#fef2f2;color:#991b1b;font-size:13px}
.auth-errors ul{margin:0;padding-left:18px}

@media (max-width:768px){
    .top-user-name span{display:none}
    .top-logout-btn span{display:none}
    .auth-top-link span{display:none}
    .customer-auth{padding-top:35px;padding-bottom:45px}
    .auth-card{padding:22px}
    .auth-heading h1{font-size:25px}
}

/* =========================================================
   JUMP TO TOP BUTTON
   ========================================================= */
.jump-to-top{
    position:fixed;
    right:22px;
    bottom:24px;
    width:46px;
    height:46px;
    border:0;
    border-radius:50%;
    background:var(--orange);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    cursor:pointer;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}

.jump-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.jump-to-top:hover{
    background:var(--navy);
}

.jump-to-top:focus-visible{
    outline:3px solid rgba(230,122,35,.28);
    outline-offset:3px;
}

@media (max-width:768px){
    .jump-to-top{
        right:14px;
        bottom:16px;
        width:42px;
        height:42px;
        font-size:15px;
    }
}


/* =========================================================
   CUSTOMER ACCOUNT / DASHBOARD
   ========================================================= */
.account-top-link{color:inherit;text-decoration:none}
.account-page{padding-top:46px;padding-bottom:65px}
.account-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:24px}
.account-page-head small,.account-panel-head small,.account-welcome small,.account-delivery-panel small,.account-order-summary small{display:block;color:var(--orange);font-size:10px;font-weight:900;letter-spacing:.12em}
.account-page-head h1{margin:4px 0 0;color:var(--navy);font-size:30px;line-height:1.1}
.account-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:24px;align-items:start}
.account-sidebar{background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:var(--shadow);position:sticky;top:95px}
.account-user-box{display:flex;align-items:center;gap:11px;padding:18px;border-bottom:1px solid var(--line);background:#fafbfc}
.account-avatar{flex:0 0 46px;width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--navy);color:#fff;font-weight:900;font-size:19px}
.account-user-box>div:last-child{min-width:0}.account-user-box small{display:block;color:var(--orange);font-size:9px;font-weight:900;letter-spacing:.1em}.account-user-box b,.account-user-box span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.account-user-box b{color:var(--navy);font-size:14px}.account-user-box span{color:var(--muted);font-size:11px}
.account-nav{padding:8px}.account-nav a{display:flex;align-items:center;gap:10px;padding:11px 12px;border-radius:9px;color:var(--navy);font-size:13px;font-weight:800}.account-nav a i{width:18px;text-align:center;color:var(--muted)}.account-nav a:hover,.account-nav a.active{background:#fff4eb;color:var(--orange)}.account-nav a.active i,.account-nav a:hover i{color:var(--orange)}
.account-logout-form{padding:8px;border-top:1px solid var(--line)}.account-logout-form button{width:100%;border:0;background:#fff;color:#b42318;padding:11px 12px;border-radius:9px;text-align:left;font:inherit;font-weight:800;cursor:pointer}.account-logout-form button:hover{background:#fff1f0}
.account-content{min-width:0;display:grid;gap:20px}.account-welcome{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:24px 26px;border-radius:17px;background:var(--navy);color:#fff;overflow:hidden}.account-welcome h2{margin:4px 0 5px;font-size:25px}.account-welcome p{margin:0;color:#d9e3ea;font-size:13px}.account-welcome>i{font-size:58px;opacity:.16}
.account-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.account-stat{display:flex;align-items:center;gap:11px;padding:17px;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:0 4px 16px rgba(15,35,50,.04)}.account-stat>i{width:40px;height:40px;border-radius:11px;background:#fff4eb;color:var(--orange);display:flex;align-items:center;justify-content:center}.account-stat b,.account-stat small{display:block}.account-stat b{font-size:21px;color:var(--navy);line-height:1}.account-stat small{margin-top:4px;color:var(--muted);font-size:10px;font-weight:800}
.account-panel{background:#fff;border:1px solid var(--line);border-radius:16px;padding:20px;box-shadow:0 4px 16px rgba(15,35,50,.04)}.account-panel-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:14px}.account-panel-head h3{margin:3px 0 0;color:var(--navy);font-size:19px}.account-panel-head>a,.account-panel-head>span{font-size:11px;font-weight:800;color:var(--orange)}
.account-order-list{display:grid;gap:8px}.account-order-row{display:grid;grid-template-columns:minmax(170px,1.25fr) minmax(120px,.8fr) 100px 18px;gap:12px;align-items:center;padding:13px 14px;border:1px solid var(--line);border-radius:11px;color:var(--navy);transition:.15s ease}.account-order-row:hover{border-color:#f2b17d;background:#fffaf6}.account-order-row div b,.account-order-row div span{display:block}.account-order-row div:first-child b{font-size:13px}.account-order-row div:first-child span,.account-order-row div:nth-child(2) span{font-size:10px;color:var(--muted);margin-top:3px}.account-order-row div:nth-child(2){text-align:right}.account-order-row div:nth-child(2) b{font-size:13px;color:var(--orange);margin-top:2px}.account-order-row>i{font-size:10px;color:#9aa5ad}
.order-status{display:inline-flex;align-items:center;justify-content:center;padding:5px 9px;border-radius:999px;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.03em;background:#f1f3f5;color:#5f6b74}.status-pending{background:#fff7e6;color:#b26a00}.status-confirmed{background:#eaf4ff;color:#1769aa}.status-shipped{background:#eeeaff;color:#5940b3}.status-delivered{background:#eaf8ee;color:#198754}.status-cancelled{background:#fff0f0;color:#c62828}
.account-empty{text-align:center;padding:35px 18px}.account-empty>i{font-size:34px;color:#c4ccd2}.account-empty h3{margin:10px 0 4px;color:var(--navy)}.account-empty p{margin:0 0 15px;color:var(--muted);font-size:12px}
.account-order-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.account-order-summary>div{padding:16px;background:#fff;border:1px solid var(--line);border-radius:13px}.account-order-summary b{display:block;margin-top:4px;color:var(--navy);font-size:13px}
.account-items{display:grid}.account-item{display:grid;grid-template-columns:60px minmax(0,1fr) auto;gap:12px;align-items:center;padding:12px 0;border-bottom:1px solid var(--line)}.account-item:last-child{border-bottom:0}.account-item img,.account-item-placeholder{width:60px;height:60px;border-radius:9px;background:#f6f7f8;object-fit:contain}.account-item-placeholder{display:flex;align-items:center;justify-content:center;color:#aab3ba}.account-item b,.account-item span{display:block}.account-item b{color:var(--navy);font-size:13px}.account-item span{color:var(--muted);font-size:11px;margin-top:3px}.account-item strong{color:var(--orange);font-size:13px}.account-totals{width:min(100%,360px);margin:16px 0 0 auto;border-top:1px solid var(--line);padding-top:10px}.account-totals>div{display:flex;justify-content:space-between;gap:20px;padding:5px 0;font-size:12px}.account-totals .grand{font-size:15px;color:var(--navy);border-top:1px solid var(--line);margin-top:5px;padding-top:10px}.account-totals .grand b{color:var(--orange)}
.account-delivery-panel{display:grid;grid-template-columns:1fr 220px;gap:20px}.account-delivery-panel h3{margin:4px 0;color:var(--navy);font-size:16px}.account-delivery-panel p{margin:3px 0;color:var(--muted);font-size:12px}.account-delivery-panel b{display:block;margin-top:5px;color:var(--navy);font-size:13px}
.account-profile-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}.account-form label{display:block;margin:12px 0 5px;color:var(--navy);font-size:12px;font-weight:800}.account-form input,.account-form textarea{width:100%;border:1px solid var(--line);border-radius:9px;background:#fff;padding:10px 12px;color:var(--navy);font:inherit;box-sizing:border-box;outline:none}.account-form input{height:44px}.account-form textarea{resize:vertical}.account-form input:focus,.account-form textarea:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(230,122,35,.10)}.account-form .btn{margin-top:16px}
.account-pagination{margin-top:18px;overflow:auto}.account-pagination nav>div:first-child{display:none}.account-pagination nav>div:last-child{display:flex;align-items:center;justify-content:space-between;gap:10px}.account-pagination nav span,.account-pagination nav a{font-size:11px}
@media(max-width:1000px){.account-layout{grid-template-columns:220px minmax(0,1fr)}.account-stats{grid-template-columns:repeat(2,1fr)}.account-profile-grid{grid-template-columns:1fr}}
@media(max-width:768px){.account-page{padding-top:32px}.account-page-head{align-items:flex-start}.account-page-head h1{font-size:25px}.account-layout{grid-template-columns:1fr}.account-sidebar{position:static}.account-user-box{display:none}.account-nav{display:grid;grid-template-columns:repeat(3,1fr);gap:5px}.account-nav a{justify-content:center;padding:10px 7px;font-size:10px}.account-nav a i{width:auto}.account-logout-form{display:none}.account-order-row{grid-template-columns:1fr auto;gap:8px}.account-order-row div:nth-child(2){text-align:left}.account-order-row .order-status{grid-column:1}.account-order-row>i{grid-column:2;grid-row:1/3}.account-order-summary{grid-template-columns:1fr}.account-delivery-panel{grid-template-columns:1fr}.account-welcome{padding:20px}.account-welcome h2{font-size:21px}}
@media(max-width:480px){.account-page-head>.btn{display:none}.account-stats{grid-template-columns:1fr 1fr}.account-stat{padding:13px}.account-stat>i{width:34px;height:34px}.account-nav{grid-template-columns:repeat(2,1fr)}.account-panel{padding:15px}}
