/* ==========================================================================
   GLOBAL VARIABLES & BASICS
   ========================================================================== */
:root {
    --blue: #E0471B;
    --blue-hover: #c83b14;
    --dark: #1c1c1c;
    --muted: #8a8a8a;
    --line: #eee;
    --ink: #1c1c1c;
}

html, body {
    width: 100% !important;
    height: auto;
}

body {
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    color: #222;
    font-size: 14px;
    background: #f5f0eb;
    background-image:
        radial-gradient(ellipse 900px 600px at 10% 10%, rgba(255, 220, 180, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 700px 500px at 90% 0%, rgba(255, 160, 120, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 800px 500px at 50% 100%, rgba(255, 200, 150, 0.2) 0%, transparent 70%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: #1c1c1c;
    color: rgba(255, 255, 255, .75);
    font-size: 12.5px;
    padding: 7px 0;
    align-items: center;
}

.top-bar-left {
    font-size: 12.5px;
}

.top-bar-left strong {
    color: #fff;
}

.top-bar-right a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 12.5px;
    transition: color .15s;
}

.top-bar-right a:hover {
    color: #fff;
}

.top-bar-right .divider {
    color: rgba(255, 255, 255, .3);
    font-size: 11px;
}

.topline {
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #5aa0ff);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   HERO LAYOUT (Sidebar + Slider)
   ========================================================================== */
.hero-layout {
    align-items: stretch;
}

.hero-cat-sidebar {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow-y: auto;
    height: 440px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.hero-cat-sidebar::-webkit-scrollbar,
.hero-cat-sidebar-inner::-webkit-scrollbar {
    width: 4px;
}

.hero-cat-sidebar::-webkit-scrollbar-thumb,
.hero-cat-sidebar-inner::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.hero-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.hero-cat-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.hero-cat-list li a:hover,
.hero-cat-item:hover > a {
    background: #fff5f2;
    color: #ff5521;
}

.hero-cat-list li a:hover .cat-arrow,
.hero-cat-item:hover > a .cat-arrow {
    color: #ff5521;
}

.hero-cat-icon {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-cat-icon-bi {
    font-size: 15px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    color: #666;
}

.cat-arrow {
    font-size: 13px;
    color: #999;
    transition: color .15s;
}

.hero-cat-list li.view-all-cats a {
    color: #ff5521;
    font-weight: 600;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.hero-cat-list li.view-all-cats a:hover {
    background: #fff5f2;
}

.hero-carousel-col {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* ==========================================================================
   HEADER LOGO & BRAND
   ========================================================================== */
.header-logo-link {
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.header-logo-icon {
    width: 44px;
    height: 44px;
    background: #ff5521;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.header-brand-text {
    line-height: 1.2;
}

.header-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #ff5521;
    letter-spacing: .5px;
}

.header-brand-sub {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

/* Cart Header Pill */
.cart-header-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    color: #222;
    text-decoration: none;
    transition: border-color .15s;
}

.cart-header-pill:hover {
    border-color: #ff5521;
    color: #222;
}

.cart-icon-wrap {
    font-size: 22px;
    color: #333;
}

.cart-icon-wrap .badge-num {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #ff5521;
    color: #fff;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-header-label {
    display: block;
    font-size: 11px;
    color: #888;
    line-height: 1;
}

.cart-header-total {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.cart-chevron {
    font-size: 11px;
    color: #aaa;
}

/* Header Login/Register buttons */
.header-login-btn {
    border: 1.5px solid #ddd;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    transition: border-color .15s;
}

.header-login-btn:hover {
    border-color: #ff5521;
    color: #ff5521;
}

.header-register-btn {
    background: #ff5521;
    border: 1.5px solid #ff5521;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background .15s;
}

.header-register-btn:hover {
    background: #e0471b;
    border-color: #e0471b;
    color: #fff;
}

/* ==========================================================================
   HERO SLIDE — Custom Split Layout (text left, image right)
   ========================================================================== */
.hero-carousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.hero-slide-custom {
    height: 480px;
    overflow: hidden;
}

.hero-slider-img {
    height: 480px;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 6%;
    z-index: 5;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
}

.hero-slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 40px;
    gap: 20px;
}

.hero-slide-text {
    flex: 1;
    min-width: 0;
    animation: heroFadeIn .5s ease both;
}

.hero-slide-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ff5521;
    margin-bottom: 10px;
}

.hero-slide-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-slide-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn.hero-slide-btn {
    background: #0d6efd;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, transform .15s;
}

.btn.hero-slide-btn:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
    color: #fff;
}

.hero-slide-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.hero-slide-product-img {
    max-height: 430px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel controls - white circle style like image */
.hero-ctrl {
    width: 32px !important;
    height: 32px !important;
    background: #ff5521 !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: background .15s, box-shadow .15s;
}

.hero-ctrl:hover {
    background: #e0471b !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.carousel-control-prev.hero-ctrl {
    left: 15px !important;
}

.carousel-control-next.hero-ctrl {
    right: 15px !important;
}

.hero-ctrl i {
    font-size: 14px;
    color: #fff;
}

.hero-ctrl .carousel-control-prev-icon,
.hero-ctrl .carousel-control-next-icon {
    display: none;
}

/* Indicator dots */
.hero-indicators {
    bottom: 10px !important;
    gap: 5px;
}

.hero-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #0d6efd !important;
    border: none !important;
    opacity: 1 !important;
    transition: background .2s, width .2s;
}

.hero-indicators button.active {
    background: #0d6efd !important;
    width: 22px !important;
    border-radius: 4px !important;
}

/* Hot Deals Nav Button */
.hot-deals-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ff5521;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 0 18px;
    height: 46px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}

.hot-deals-btn:hover {
    background: #e0471b;
    color: #fff !important;
}

.hot-deals-btn i {
    font-size: 14px;
    animation: flamePulse 1.5s ease infinite;
}

@keyframes flamePulse {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.2);
    }
}


/* ==========================================================================
   HEADER ROW & NAVIGATION
   ========================================================================== */
.header-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.logo-box {
    width: 38px;
    height: 38px;
    background: #ff5521;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.brand-text b {
    font-size: 15px;
}

.brand-text small {
    letter-spacing: 1px;
}

.search-input {
    max-width: 560px;
    margin: 0 auto;
}

.search-input .form-control {
    border-radius: 0;
    border: 1.5px solid #e0e0e0;
    border-right: none;
    border-left: none;
    padding: 10px 16px;
    font-size: 13.5px;
}

.search-input .form-control:focus {
    box-shadow: none;
    border-color: #e0e0e0;
}

.search-cat-select {
    border: 1.5px solid #e0e0e0;
    border-right: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    background: #f8f8f8;
    font-size: 12.5px;
    font-weight: 500;
    color: #333;
    padding: 0 10px;
    height: 100%;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
}

.search-cat-select:focus {
    outline: none;
    box-shadow: none;
}

.search-input .btn {
    border-radius: 0 6px 6px 0;
    background: #ff5521;
    color: #fff;
    padding: 0 20px;
    border: 1.5px solid #ff5521;
    font-size: 16px;
}

.search-input .btn:hover {
    background: #e0471b;
    border-color: #e0471b;
}

.search-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    flex-grow: 1;
    max-width: 600px;
}

.search-input-wrap .form-control {
    border: none !important;
    border-radius: 0;
    padding: 10px 14px;
    font-size: 13.5px;
    flex: 1;
}

.search-input-wrap .btn {
    border-radius: 0 4px 4px 0;
    background: #ff5521;
    color: #fff;
    padding: 0 20px;
    border: none;
    font-size: 16px;
    flex-shrink: 0;
}

.search-input-wrap .btn:hover {
    background: #e0471b;
}

.search-input-wrap .search-cat-select {
    border: none;
    border-right: 1px solid #e0e0e0;
    border-radius: 0;
    background: #f5f5f5;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    padding: 0 8px 0 10px;
    cursor: pointer;
    outline: none;
    min-width: 110px;
    max-width: 140px;
}

.icon-btn {
    position: relative;
    font-size: 19px;
    color: #444;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.icon-btn:hover {
    background: #fef2ee;
    color: #ff5521;
}

.icon-btn .badge-num {
    position: absolute;
    top: 1px;
    right: 1px;
    background: #ff5521;
    color: #fff;
    font-size: 9.5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    border-radius: 24px;
    border: 1.5px solid var(--line);
}

.user-chip:hover {
    border-color: var(--blue);
}

.user-chip img {
    width: 28px;
    height: 28px;
    object-fit: cover;
}

.user-chip .name {
    font-size: 13px;
    font-weight: 600;
}

.user-chip .role {
    font-size: 10.5px;
    color: var(--muted);
    display: block;
    margin-top: -2px;
}

.navbar2 {
    border-bottom: none;
    background: #111826;
    position: relative;
    z-index: 50;
    padding: 0;
}

.navbar2 .inner {
    display: flex;
    align-items: center;
}

.cat-trigger {
    background: #ff5521;
    color: #fff;
    border: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    height: 46px;
}

.cat-trigger:hover {
    background: #e0471b;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    padding: 14px 18px;
    color: rgba(255, 255, 255, .85);
    position: relative;
    line-height: 46px;
    display: block;
    padding-top: 0;
    padding-bottom: 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: #ff5521;
}

.nav-links .dropdown-toggle::after {
    vertical-align: 2px;
}

.cart-pill {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f8ff;
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 20px;
}

/* Mega dropdown for categories */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 640px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
    border-radius: 0 0 10px 10px;
    padding: 18px;
    display: none;
}

.cat-dd:hover .mega-panel,
.mega-panel:hover {
    display: block;
}

.cat-dd {
    position: relative;
}

.mega-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    margin-bottom: 8px;
}

.mega-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    font-size: 13px;
    border-radius: 6px;
}

.mega-list a:hover {
    background: #f4f8ff;
    color: var(--blue);
}

.mega-list i {
    font-size: 16px;
    width: 20px;
    color: var(--blue);
}

.mega-feat {
    background: linear-gradient(135deg, #eaf1ff, #f7fbff);
    border-radius: 10px;
    padding: 16px;
    height: 100%;
}

.mega-feat img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mega-feat h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.mega-feat p {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 8px;
}

.mega-feat .btn {
    font-size: 11.5px;
    background: var(--blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
}

/* Simple dropdown for "Categories" nav link (alt style) */
.simple-dd {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    border-radius: 8px;
    padding: 8px;
    display: none;
}

.nav-links li:hover .simple-dd {
    display: block;
}

.simple-dd a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 6px;
}

.simple-dd a:hover {
    background: #f4f8ff;
    color: var(--blue);
}

.demo-note {
    max-width: 1260px;
    margin: 26px auto;
    padding: 0 15px;
    color: #888;
    font-size: 13px;
}

/* Mobile drawers and responsive classes */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    width: 290px;
    height: 100vh;
    background: #fff;
    z-index: 10060;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.drawer-left {
    left: 0;
    transform: translateX(-100%);
}

.drawer-right {
    right: 0;
    transform: translateX(100%);
}

.mobile-drawer.show {
    transform: translateX(0);
}

.drawer-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.drawer-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
}

.drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    transition: background 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: #f4f8ff;
    color: var(--blue);
}

.dropdown-toggle.no-arrow::after {
    display: none !important;
}


/* ==========================================================================
   APP PAGES & HERO GRID STYLES
   ========================================================================== */
.hero-sec {
    background: #f3f3f3;
    padding: 16px 0;
}

/* Hero Overlay Caption */
.carousel-item {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.carousel-item img.hero-slider-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-overlay-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 55%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 5;
}

.hero-overlay-inner {
    max-width: 480px;
    animation: heroFadeIn .6s ease both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-motto {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffd166;
    margin-bottom: 6px;
}

.hero-tagline {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 0;
    line-height: 1.5;
}

.hero-auth-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn.hero-btn-login {
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .6);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transition: background .2s, border-color .2s;
}

.btn.hero-btn-login:hover {
    background: rgba(255, 255, 255, .28);
    border-color: #fff;
    color: #fff;
}

.btn.hero-btn-register {
    background: #ff5521;
    border: 1.5px solid #ff5521;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 8px;
    transition: background .2s, transform .15s;
}

.btn.hero-btn-register:hover {
    background: #e0471b;
    transform: translateY(-1px);
    color: #fff;
}

.btn.hero-btn-shop {
    background: #fff;
    border: none;
    color: #111;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 8px;
    transition: background .2s, transform .15s;
}

.btn.hero-btn-shop:hover {
    background: #ffd166;
    transform: translateY(-1px);
}


.brand-banner {
    position: relative;
    height: 260px;
    border-radius: 6px;
    overflow: hidden;
    background: #ccc;
}

.brand-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-banner .cap {
    position: absolute;
    top: 24px;
    left: 24px;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.season-banner {
    height: 260px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;

    color: #fff;
}

.season-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}


.season-banner .cap {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hotcat-panel {
    background: #d8d8d8;
    border-radius: 10px;
    padding: 18px;
    min-height: 290px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.hotcat-panel h6 {
    font-weight: 700;
    font-size: 13px;
}

.hotcat-item {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.hotcat-item:hover {
    transform: translateY(-3px) scale(1.03);
    opacity: 0.9;
}

.hotcat-item img {
    width: 100%;
    height: 95px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #f7f7f7;
}

.hotcat-item .name {
    font-size: 10.5px;
    text-align: center;
    color: #555;
    line-height: 1.3;
    min-height: 2.6em;
}

.featured-strip {
    background: #fff;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.fs-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fs-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    background: #f2f2f2;
}

.fs-item .t {
    font-size: 12px;
    font-weight: 600;
}

.fs-item .p {
    font-size: 12px;
    font-weight: 700;
}

.fs-item .p .old {
    text-decoration: line-through;
    color: #bbb;
    font-weight: 400;
    font-size: 11px;
}

.trending-box {
    /* border: 2px solid var(--blue); */
    background: #d8d8d8;
    border-radius: 6px;
    padding: 16px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.trending-box h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.trending-box p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.tcat-item {
    text-align: center;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
    display: block;
}

.tcat-item:hover {
    transform: translateY(-3px) scale(1.04);
    opacity: 0.95;
}

.tcat-item img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 4px;
}

.tcat-item .name {
    font-size: 11.5px;
}

.panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 13px;
}

.panel-title .arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestselling-panel {
    background: #eceee6;
    border-radius: 6px;
}

.todaydeal-panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

.mini-prod {
    background: #ffeee9 !important;
    border: 1px solid #ffd6ca !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    /* padding: 12px !important; */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    text-align: left !important;
    position: relative !important;
    height: 100% !important;
}

.mini-prod:hover {
    /* transform: translateY(-4px) !important; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
    border-color: #d1d9e0 !important;
}

.mini-img-wrap {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px 10px 0 0 !important;
}

.mini-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 0 !important;
    transition: transform 0.3s ease !important;
}

.mini-prod:hover .mini-img-wrap img {
    transform: scale(1.03) !important;
}

.mini-prod .t {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 40px !important;
}

.mini-prod .code {
    font-size: 11px !important;
    color: #777777 !important;
    margin-bottom: 4px !important;
}

.mini-prod .p {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0c4c54 !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.mini-prod .p .old {
    text-decoration: line-through !important;
    color: #999999 !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    margin-left: 4px !important;
}

.promo3 {
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
    background: #f5f5f5;
}

.promo3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newarrival-banner {
    background: #d8d8d8;
    border-radius: 6px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
}

.newarrival-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.newarrival-banner .cap {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    writing-mode: vertical-rl;
    position: absolute;
    left: 20px;
    top: 20px;
}

.newarrival-list-panel {
    background: #d8d8d8;
    border-radius: 6px;
}

.newarrival-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 8px;
}

.newarrival-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.newarrival-item .t {
    font-size: 11.5px;
    font-weight: 600;
}

.newarrival-item .bid {
    font-size: 10.5px;
    color: var(--muted);
}

.btn-bid {
    background: #c9a45c;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 3px;
    border: none;
}


/* ==========================================================================
   CUSTOM BUTTONS (ADD TO CART & BUY NOW)
   ========================================================================== */
.btn-custom-cart {
    background-color: #fff !important;
    border: 1.5px solid #1a73e8 !important;
    color: #1a73e8 !important;
    transition: all 0.2s ease-in-out !important;
}

.btn-custom-cart:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #fff !important;
}

.btn-custom-buy {
    background-color: #1a73e8 !important;
    border: 1.5px solid #1a73e8 !important;
    color: #fff !important;
    transition: all 0.2s ease-in-out !important;
}

.btn-custom-buy:hover {
    background-color: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
}


/* ==========================================================================
   CLASSIFIEDS, PREORDERS & OTHER SECTIONS
   ========================================================================== */
.classified-sec {
    background: #f5f5f5;
    padding: 26px 0;
}

.classified-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    position: relative;
}

.classified-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    margin-bottom: 6px;
}

.classified-card .p {
    font-weight: 700;
    font-size: 12.5px;
}

.badge-used {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #dfeaff;
    color: #1a73e8;
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 3px;
}

.badge-new {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 3px;
}

.preorder-panel {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 14px;
}

.discounted-controls .arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
}

.discounted-slider-wrapper {
    overflow: hidden;
}

.discounted-slider {
    display: flex;
    gap: 15px;
    transition: transform .4s ease;
    padding-bottom: 4px;
}

.discounted-product-card {
    min-width: calc(50% - 7.5px);
    flex: 0 0 calc(50% - 7.5px);
}


.preorder-hero {
    background: #111;
    color: #fff;
    border-radius: 6px;
    height: 100%;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.preorder-hero .badge-limit {
    background: #ff5521;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 3px;
}

.rating i {
    font-size: 11px;
    color: #f2b01e;
}

.shops-banner {
    background: linear-gradient(120deg, #eef3fb, #dbe7fb);
    border-radius: 6px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 26px 0;
}

.shops-banner h3 {
    font-weight: 800;
    color: #1c2b4a;
}

.shops-banner img {
    height: 120px;
    border-radius: 6px;
    object-fit: cover;
}

.prod-card {
    background: #ffeee9 !important;
    border: 1px solid #ffd6ca !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    text-align: left !important;
    position: relative !important;
}

.prod-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
    border-color: #d1d9e0 !important;
}

.prod-img-wrap {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px 10px 0 0 !important;
}

.prod-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 0 !important;
    transition: transform 0.3s ease !important;
}

.prod-card:hover .prod-img-wrap img {
    transform: scale(1.03) !important;
}

.prod-img-wrap .badge-new-arrival {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background-color: #ff8c00 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    z-index: 5 !important;
    letter-spacing: 0.5px !important;
}

.prod-img-wrap .wishlist-heart {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    color: #0c4c54 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    cursor: pointer !important;
    z-index: 5 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.prod-img-wrap .wishlist-heart:hover {
    background: #ffffff !important;
    transform: scale(1.1) !important;
}

.prod-info {
    padding: 16px 16px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex-grow: 1 !important;
}

.prod-card .t {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    /* margin-bottom: 4px !important; */
    min-height: auto !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 40px !important;
}


.prod-card .code {
    font-size: 12px !important;
    color: #777777 !important;
    margin-bottom: 6px !important;
}

.prod-card .p {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0c4c54 !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.prod-card .p .old {
    text-decoration: line-through !important;
    color: #999999 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    margin-left: 4px !important;
}

/* Star Rating */
.prod-stars {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    margin-bottom: 6px !important;
    font-size: 13px !important;
}

.prod-stars .star-filled {
    color: #f5a623 !important;
}

.prod-stars .star-empty {
    color: #000000 !important;
}

.prod-review-count {
    font-size: 11px !important;
    color: #888 !important;
    margin-left: 3px !important;
}

/* Stock Badge */
.prod-stock-badge {
    margin-bottom: 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.stock-in {
    color: #0077e7 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.stock-out {
    color: #c0392b !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}


.btn-buy-now {
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
}

.disc-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 3px;
    color: #fff;
}

.about-sec {
    background: #fafafa;
    padding: 30px 0;
    color: #999;
    font-size: 12px;
    line-height: 1.7;
}

.about-sec h6 {
    color: #666;
    font-weight: 700;
    margin-top: 14px;
}

.footlinks {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footlinks .row {
    align-items: center;
}

.footlinks .item {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f7f7f7;
    min-height: 46px;
}

    footer.main-footer {
        padding: 28px 0 15px;
    }

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer.main-footer {
    background: #111;
    color: #aaa;
    padding: 40px 0 15px;
}

footer.main-footer .wrap {
    max-width: 1180px;
}

footer.main-footer a {
    color: #aaa;
}

footer.main-footer a:hover {
    color: #fff;
}

footer.main-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 13px;
    text-transform: uppercase;
}

.social-ic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2a2a2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 6px;
}


/* ==========================================================================
   CUSTOM CARTS TOASTS & CHECKOUT MODAL
   ========================================================================== */
.custom-cart-toast {
    position: fixed;
    bottom: 24px;
    right: -350px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    width: 320px;
    border-left: 4px solid #1a73e8;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.custom-cart-toast.show {
    right: 24px;
}

.custom-cart-toast img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #eee;
}

.custom-cart-toast .toast-content h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #1a73e8;
}

.custom-cart-toast .toast-content p {
    margin: 2px 0 0 0;
    font-size: 11.5px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 210px;
}

.badge-bounce {
    animation: badge-bounce 0.4s ease;
}

@keyframes badge-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }
}

.checkout-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-modal-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.checkout-modal-backdrop.show .checkout-modal {
    transform: translateY(0);
}

.checkout-header {
    background: #f8f9fa;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h5 {
    margin: 0;
    font-weight: 700;
    color: #1c1c1c;
}

.checkout-body {
    padding: 20px;
}

.checkout-footer {
    padding: 14px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #f8f9fa;
}


/* ==========================================================================
   CUSTOMER DASHBOARD SIDENAV
   ========================================================================== */
.sidebar {
    width: 240px;
    background: #111;
    color: #fff;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px 0;
}

.sidebar .brand {
    font-size: 18px;
    font-weight: 800;
    padding: 0 20px 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 16px;
}

.sidebar a {
    display: block;
    padding: 10px 20px;
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
}

.sidebar a:hover,
.sidebar a.active {
    color: #fff;
    background: #222;
    text-decoration: none;
}

.sidebar a i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.main {
    margin-left: 240px;
    padding: 30px;
    position: relative;
}

/* ==========================================================================
   CUSTOMER DASHBOARD SPECIFIC
   ========================================================================== */
.stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.stat-card h2 {
    font-weight: 800;
    margin: 0;
}

.stat-card p {
    color: #888;
    margin: 0;
    font-size: 13px;
}

.user-chip-dashboard {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    border-radius: 24px;
    border: 1.5px solid #eee;
    text-decoration: none;
    color: inherit;
    float: right;
}

.user-chip-dashboard:hover {
    border-color: #1a73e8;
}

.user-chip-dashboard img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.user-chip-dashboard .name {
    font-size: 13px;
    font-weight: 600;
}

.user-chip-dashboard .role {
    font-size: 10.5px;
    color: #888;
    display: block;
    margin-top: -2px;
}

/* Custom Global Button Styling Override (Make all buttons orange background, white text & slight zoom on hover) */
button:not(.btn-close):not(.icon-btn):not(.navbar-toggler):not(.variant-btn):not(.btn-buy-now):not(.btn-bid),
.btn:not(.btn-close):not(.icon-btn):not(.navbar-toggler):not(.variant-btn):not(.btn-buy-now):not(.btn-bid),
input[type="button"],
input[type="submit"] {
    background-color: #ff5521 !important;
    border-color: #ff5521 !important;
    color: #fff !important;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out !important;
}

button:not(.btn-close):not(.icon-btn):not(.navbar-toggler):not(.variant-btn):not(.btn-buy-now):not(.btn-bid):hover,
.btn:not(.btn-close):not(.icon-btn):not(.navbar-toggler):not(.variant-btn):not(.btn-buy-now):not(.btn-bid):hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: #e0471b !important;
    border-color: #e0471b !important;
    color: #fff !important;
    transform: scale(1.03) !important;
}


/* Product Card Action Buttons */
.btn-add-to-cart,
.btn-buy-now {
    background-color: #E0471B !important;
    color: #fff !important;
    border: none !important;
    transition: all 0.2s ease;
}

.btn-add-to-cart:hover,
.btn-buy-now:hover {
    background-color: #1f2937 !important;
    color: #fff !important;
}

.btn-bid {
    background-color: #E0471B !important;
    color: #fff !important;
    border: none !important;
    transition: all 0.2s ease;
}

.btn-bid:hover {
    background-color: #1f2937 !important;
    color: #fff !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 0 0;
    font-size: 13.5px;
    margin-top: 40px;
}

.footer-col {
    padding-right: 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #E0471B;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.footer-links li {
    color: #9ca3af;
    line-height: 1.5;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #E0471B;
    padding-left: 4px;
}

.footer-desc {
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-newsletter {
    max-width: 300px;
    width: 100%;
}

.footer-input {
    background: #1f2937 !important;
    border: 1px solid #374151 !important;
    color: #e5e7eb !important;
    border-radius: 6px;
    min-width: 0 !important;
}

.footer-input::placeholder {
    color: #6b7280 !important;
}

.footer-input:focus {
    border-color: #E0471B !important;
    box-shadow: 0 0 0 2px rgba(224, 71, 27, 0.15) !important;
    outline: none;
}

.footer-subscribe-btn {
    background: #E0471B !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    white-space: nowrap;
    font-weight: 600 !important;
    padding: 6px 16px !important;
    transition: background 0.2s ease !important;
    transform: none !important;
}

.footer-subscribe-btn:hover {
    background: #c43c16 !important;
    transform: none !important;
}

.footer-divider {
    border-color: #1f2937 !important;
    margin-bottom: 0;
}

.footer-bottom {
    padding: 18px 0;
    font-size: 12.5px;
}

.footer-copy {
    color: #6b7280;
}

.social-ic {
    color: #6b7280;
    font-size: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-ic:hover {
    background: #E0471B;
    color: #fff;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(224, 71, 27, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(224, 71, 27, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(224, 71, 27, 0);
    }
}

/* ==========================================================================
   RELATED PRODUCTS SECTION
   ========================================================================== */
.related-products-section {
    background: linear-gradient(135deg, #edefff 0%, #e2e7f5 50%, #ffe6de 100%);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.related-section-bar {
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #ff5521, #ff8c6e);
    border-radius: 4px;
    flex-shrink: 0;
}

.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 85, 33, 0.15);
}

.related-card-img-wrap {
    position: relative;
    background: #f8f8f8;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

.related-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.related-card:hover .related-card-img {
    transform: scale(1.05);
}

.related-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.related-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5521;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.related-card-body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.related-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.related-card-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.related-card-price {
    font-size: 15px;
    font-weight: 700;
    color: #ff5521;
}

.related-card-original {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

/* Premium Visual Design Enhancements */

/* Search bar focus glow */
.search-input-wrap {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.search-input-wrap:focus-within {
    border-color: #ff5521 !important;
    box-shadow: 0 0 0 3px rgba(255, 85, 33, 0.18) !important;
}

/* Product cards premium styling and hover lift */
.slider-card, .mini-prod, .related-card {
    border: 1px solid #f1f5f9 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.slider-card:hover, .mini-prod:hover, .related-card:hover {
    transform: translateY(-8px) !important;
    border-color: #ffd6ca !important;
    box-shadow: 0 20px 35px rgba(255, 85, 33, 0.08) !important;
}

/* Shopping Cart Dropdown Items */
.dropdown-cart-item {
    transition: background 0.25s ease !important;
    padding: 8px !important;
    border-radius: 8px !important;
}
.dropdown-cart-item:hover {
    background: #fff8f6 !important;
}

/* Header & Menu transitions */
.nav-links a {
    transition: color 0.25s ease, background-color 0.25s ease !important;
}
.nav-links a::after {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.nav-links a:hover::after {
    left: 10px !important;
    right: 10px !important;
}

/* Header navigation background */
.top-announcement-bar {
    background: #0f172a !important; /* Premium Deep Slate */
    font-weight: 500;
}
.main-header {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
}

/* Category sidebar modern card style */
.hero-cat-sidebar {
    border-radius: 16px !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}
.hero-cat-list li a {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #f8fafc !important;
    transition: background 0.25s ease, color 0.25s ease !important;
}
.hero-cat-list li a:hover {
    background: #fff8f6 !important;
}

/* Hero Carousel rounded layout */
.hero-carousel {
    border-radius: 16px !important;
}


/* Global button border radius */
.btn, button:not(.btn-close):not(.icon-btn) {
    border-radius: 8px !important;
}

/* ==========================================================================
   GLASSMORPHISM & AURORA PREMIUM DESIGN
   ========================================================================== */

/* Sticky glassy header */
.main-header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.5) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 24px rgba(224, 71, 27, 0.06), 0 1.5px 0 rgba(255,255,255,0.7) !important;
}

/* Navigation bar glass */
.header-row {
    background: transparent !important;
}

/* Hero section: subtle glass tint */
.hero-sec {
    background: transparent !important;
}

/* Product / Slider Cards: frosted glass */
.slider-card, .mini-prod, .related-card {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06) !important;
}
.slider-card:hover, .mini-prod:hover, .related-card:hover {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(255, 133, 90, 0.35) !important;
    box-shadow: 0 18px 36px rgba(255, 85, 33, 0.10) !important;
    transform: translateY(-8px) !important;
}

/* Classified cards glass */
.classified-card {
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
}

/* Category Dropdown: frosted glass */
.category-dropdown-menu {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1) !important;
}

/* Cart dropdown glass */
.cart-dropdown-menu {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* Search results dropdown */
.search-results-dropdown {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
}

/* Section panels: semi-transparent */
.bestselling-panel, .hotcat-panel, .newarrival-list-panel, .newarrival-banner {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
    border-radius: 14px !important;
}

/* Product card featured strip */
.featured-strip {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.75) !important;
}

/* Footer stays solid for readability */
.main-footer {
    background: #111827 !important;
    backdrop-filter: none !important;
}

/* Hero carousel glass overlay */
.hero-carousel {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15) !important;
}

/* Mobile drawer: glass */
.mobile-drawer {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

