:root {
    --primary: #6c63ff;
    --primary-dark: #5548ff;
    --secondary: #ff6584;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #111827;
    --gray: #6b7280;
    --light: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f7;
    color: var(--dark);
    font-family:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    font-size: 13px;
     padding-top: 0; 
     margin-top: 0px; 
}
 /* FULL WIDTH CONTAINER */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}
/* OPTIONAL: extra wide container for sections that need full-bleed */
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}




 /* NO BORDER RADIUS */
    *, button, .checkout-card, input, select, textarea, .payment-option {
        border-radius: 2px !important;
    }

img {
    max-width: 100%;
}




/* FORMS */
.form-control,
.form-select,
textarea {
    border-radius: 1px;
    border: 1px solid var(--border);
    padding: 14px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    box-shadow: 0 0 0 4px rgba(108,99,255,0.15);
    border-color: var(--primary);
}

/* TABLES */
.table {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
}

.table thead {
    background: var(--primary);
    color: white;
}

.table th,
.table td {
    padding: 16px;
    vertical-align: middle;
}

/* ALERTS */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
}

/* SHOP BANNER */
.shop-banner {
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.shop-logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    margin-top: -70px;
    background: white;
    box-shadow: var(--shadow);
}

/* DASHBOARD */
.dashboard-card {
    border-radius: 1px;
    padding: 30px;
    color: white;
    box-shadow: var(--shadow);
}

.dashboard-card h2 {
    font-size: 38px;
    font-weight: 800;
}

.dashboard-card p {
    margin-bottom: 0;
    opacity: 0.9;
}

.dashboard-primary {
    background: linear-gradient(135deg, #6c63ff, #4f46e5);
}

.dashboard-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.dashboard-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.dashboard-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* CATEGORY BOX */
.category-box {
    background: white;
    border-radius: 1px;
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-box:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* CART */
.cart-summary {
    background: white;
    border-radius: 2px;
    padding: 25px;
    box-shadow: var(--shadow);
}

/* CHECKOUT */
.checkout-box {
    background: white;
    border-radius: 2px;
    padding: 35px;
    box-shadow: var(--shadow);
}

/* FOOTER */
footer {
    background: var(--dark);
    color: white;
    margin-top: 80px;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* BADGES */
.badge {
    border-radius: 30px;
    padding: 8px 14px;
}

/* SECTIONS */
.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .hero {
        padding: 50px 25px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .dashboard-card h2 {
        font-size: 28px;
    }
}

/* AUTH PAGES */

.auth-card {
    border: none;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-control-lg {
    border-radius: 1px;
    padding: 15px 18px;
    font-size: 15px;
}

.form-label {
    color: #111827;
    margin-bottom: 10px;
}

.shadow-lg {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08) !important;
}

.btn-lg {
    padding: 14px 20px;
    border-radius: 1px;
    font-weight: 700;
}

.text-muted {
    color: #6b7280 !important;
}


/*HOME PAGE CSS*/
.newsletter-box {
    background: linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );

    color: white;

    padding: 60px;

    border-radius: 3px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.newsletter-box h2,
.newsletter-box p {
    color: white;
}

.category-box {
    cursor: pointer;
}

.product-card img {
    transition: 0.4s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card {
    overflow: hidden;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';

    width: 60%;

    height: 4px;

    background: var(--primary);

    position: absolute;

    left: 0;

    bottom: -10px;

    border-radius: 2px;
}


/*PRODUCT VIEW*/
.product-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.product-thumb {
    cursor: pointer;
    height: 100px;
    object-fit: cover;
    transition: 0.3s;
}

.product-thumb:hover {
    transform: scale(1.05);
}

.product-buy-box {
    background: white;
    padding: 35px;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: sticky;
    top: 30px;
}

.product-price-big {
    font-size: 36px;
    font-weight: 800;
    color: #4f46e5;
}

.review-box {
    background: white;
    padding: 25px;
    border-radius: 2px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

/*CART + CHECKOUT CSS*/
.cart-item-box {
    background: white;
    padding: 25px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.cart-summary-box {
    background: white;
    padding: 35px;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: sticky;
    top: 30px;
}

.checkout-box {
    background: white;
    padding: 35px;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.payment-card {
    background: #f3f4f6;
    padding: 18px;
    border-radius: 1px;
    border: 2px solid #4f46e5;
    font-weight: 700;
    text-align: center;
}

.remove-cart {
    border-radius: 1px;
}

/* SHOP FRONT CSS*/

.shop-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0px;
}

.shop-profile-card {
    background: white;
    margin-top: -70px;
    margin-left: 40px;
    margin-right: 40px;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
}

.shop-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
}

.shop-meta {
    display: flex;
    gap: 20px;
    color: #6b7280;
    margin-top: 10px;
}



.product-img {
    height: 180px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .product-card {
        font-size: 12px;
    }

    .product-card .card-title {
        font-size: 13px;
        line-height: 1.2;
        height: 32px;
        overflow: hidden;
    }

    .product-card .btn {
        font-size: 11px;
        padding: 5px;
    }

    .product-img {
        height: 120px;
    }
}



/*
|--------------------------------------------------------------------------
| Premium Floating Cart (Right Middle Hover Slide)
|--------------------------------------------------------------------------
*/
.floating-cart-btn {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: width 0.35s ease;
    padding: 0 18px;
    white-space: nowrap;
}

.floating-cart-btn:hover {
    width: 170px;
    color: #fff;
}

.floating-cart-icon {
    position: relative;
    min-width: 24px;
    font-size: 20px;
    flex-shrink: 0;
}

.floating-cart-text {
    margin-left: 15px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cart-btn:hover .floating-cart-text {
    opacity: 1;
    transform: translateX(0);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 22px;
    height: 22px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .floating-cart-btn {
        width: 50px;
        height: 50px;
        right: 10px;
    }

    .floating-cart-btn:hover {
        width: 135px;
    }

    .floating-cart-text {
        font-size: 12px;
    }
}
/*
|--------------------------------------------------------------------------
| Premium Floating Cart (Right Middle Hover Slide)
|--------------------------------------------------------------------------
*/
.floating-cart-btn {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: width 0.35s ease;
    padding: 0 18px;
    white-space: nowrap;
}

.floating-cart-btn:hover {
    width: 170px;
    color: #fff;
}

.floating-cart-icon {
    position: relative;
    min-width: 24px;
    font-size: 20px;
    flex-shrink: 0;
}

.floating-cart-text {
    margin-left: 15px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cart-btn:hover .floating-cart-text {
    opacity: 1;
    transform: translateX(0);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 22px;
    height: 22px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .floating-cart-btn {
        width: 50px;
        height: 50px;
        right: 10px;
    }

    .floating-cart-btn:hover {
        width: 135px;
    }

    .floating-cart-text {
        font-size: 12px;
    }
}




/* =========================================
   PREMIUM COMPACT MARKETPLACE UI
========================================= */

/* BODY */

body {

    font-size: 14px;

    background: #f5f5f7;
}

/* NAVBAR */

.navbar {

    padding: 10px 0 !important;
}

.navbar-brand {

    font-size: 22px !important;
}

/* BUTTONS */

.btn {

    font-size: 13px;

    padding: 8px 14px;

    border-radius: 10px;
}

/* CARDS */

.card {

    border-radius: 16px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.04);
}

.card-body {

    padding: 14px !important;
}

/* PRODUCT CARD */

.product-card {

    border-radius: 1px;

    overflow: hidden;

    transition: all 0.25s ease;
}

.product-card:hover {

    transform: translateY(-3px);
}

/* PRODUCT IMAGE */

.product-card img,
.product-img {

    height: 170px !important;

    object-fit: cover;

    border-radius: 0;
}

/* PRODUCT TITLE */

.product-card .product-title,
.product-card .card-title {

    font-size: 13px !important;

    font-weight: 600;

    line-height: 1.4;

    height: 36px;

    overflow: hidden;

    margin-bottom: 8px;
}

/* PRODUCT PRICE */

.product-price {

    font-size: 16px !important;

    font-weight: 700;

    color: #4f46e5;
}

/* OLD PRICE */

.product-old-price {

    font-size: 12px;

    margin-left: 6px;
}

/* PRODUCT BUTTONS */

.product-card .btn {

    font-size: 12px;

    padding: 7px 10px;

    border-radius: 1px;
}

/* SECTION TITLES */

.section-title {

    font-size: 24px !important;

    margin-bottom: 20px;
}

/* CATEGORY BOX */

.category-box {

    padding: 18px 12px;

    border-radius: 1px;
}

.category-box h5 {

    font-size: 14px;
}

/* HERO */

.hero-slide {

    min-height: 430px !important;
}

.slide-content {

    padding: 24px !important;

    max-width: 420px;
}

.slide-content h2 {

    font-size: 40px !important;

    margin-bottom: 14px;
}

.slide-content p {

    font-size: 14px !important;

    line-height: 1.7;
}

/* CTA */

.cta-btn {

    padding: 12px 20px !important;

    font-size: 13px;
}

/* FORMS */

.form-control,
.form-select {

    font-size: 13px;

    padding: 10px 12px;

    border-radius: 1px;
}

/* TABLES */

.table th,
.table td {

    padding: 12px;

    font-size: 13px;
}

/* FOOTER */

footer {

    font-size: 13px;
}

/* SHOP CARD */

.shop-profile-card {

    padding: 20px;

    border-radius: 1px;
}

.shop-logo {

    width: 90px !important;

    height: 90px !important;
}

/* DASHBOARD */

.dashboard-card {

    padding: 20px;
}

.dashboard-card h2 {

    font-size: 28px;
}

/* NEWSLETTER */

.newsletter-box {

    padding: 40px !important;

    border-radius: 24px;
}

.newsletter-box h2 {

    font-size: 28px;
}

/* MOBILE */

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .product-card img,
    .product-img {

        height: 130px !important;
    }

    .product-card .card-title {

        font-size: 12px !important;

        height: 32px;
    }

    .product-price {

        font-size: 14px !important;
    }

    .slide-content h2 {

        font-size: 28px !important;
    }

    .hero-slide {

        min-height: 340px !important;

        padding: 20px !important;
    }

    .section-title {

        font-size: 20px !important;
    }
}














/* =========================================
   TOP BAR
========================================= */
.premium-topbar {
    background: linear-gradient(90deg, #0f172a, #111827);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.premium-topbar a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.premium-topbar a:hover {
    color: #ffffff;
}

/* =========================================
   PREMIUM NAVBAR
========================================= */
.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
    background:  #333333;; /* rgba(15, 23, 42, 0.82); */
    border-bottom: 1px solid orange;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 18px 0;
    transition: all 0.3s ease;
}

/* =========================================
   BRAND
========================================= */
.lw-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
}

.lw-brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    padding: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.lw-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.lw-brand-name {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

.lw-brand-slogan {
    margin-top: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* =========================================
   NAVIGATION
========================================= */
.premium-nav-links {
    gap: 8px;
}

.premium-nav-links .nav-link {
    color: rgba(255,255,255,0.78) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 14px;
    transition: all 0.25s ease;
    font-size: 15px;
}

.premium-nav-links .nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* =========================================
   BUTTONS
========================================= */
.premium-btn {
    border-radius: 14px !important;
    padding: 10px 18px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* =========================================
   ICON BUTTONS
========================================= */
.premium-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.premium-icon-btn:hover {
    background: rgba(255,255,255,0.12) !important;
    transform: translateY(-2px);
}

/* =========================================
   MOBILE NAVBAR FIX
========================================= */
@media (max-width: 991px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .premium-navbar {
        padding: 14px 0;
        overflow: visible !important;
    }

    .lw-brand-logo {
        width: 48px;
        height: 48px;
    }

    .lw-brand-name {
        font-size: 24px;
    }

    .premium-nav-links {
        margin-top: 20px;
    }

    .navbar-collapse {
        background: rgba(15,23,42,0.98);
        backdrop-filter: blur(20px);
        padding: 16px;
        margin-top: 12px;
        overflow: visible !important;
        position: relative;
        z-index: 9999;
    }

    .premium-nav-links .nav-link {
        width: 100%;
        border-radius: 0 !important;
        padding: 12px 14px !important;
    }

    .premium-search-wrapper {
        width: 100%;
        margin: 14px 0;
    }

    .navbar-collapse .d-flex {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 14px;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .navbar-collapse .d-flex::-webkit-scrollbar {
        display: none;
    }

    .account-btn {
        width: auto !important;
        min-width: auto;
        height: 44px;
        padding: 0 14px !important;
        border-radius: 0 !important;
        white-space: nowrap;
    }

    .account-dropdown .dropdown-menu {
        position: absolute !important;
        top: 100%;
        right: 0;
        left: auto !important;
        min-width: 220px;
        width: max-content;
        margin-top: 10px;
        border-radius: 0 !important;
        overflow: hidden;
        z-index: 99999;
        transform: none !important;
    }

    .premium-icon-btn {
        width: 44px;
        height: 44px;
        border-radius: 0 !important;
        flex-shrink: 0;
    }

    .search-suggestions {
        width: 100%;
        z-index: 999999;
    }
}

/* =========================================
   ACCOUNT DROPDOWN
========================================= */
.account-dropdown {
    position: relative;
    z-index: 300;
}

.account-btn {
    height: 44px;
    padding: 0 14px !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
}

.account-dropdown .dropdown-menu {
    min-width: 220px;
    border-radius: 0 !important;
    border: none;
    overflow: hidden;
    margin-top: 10px;
    z-index: 600 !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.account-dropdown .dropdown-item {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

/* =========================================
   SEARCH STYLES
========================================= */
.premium-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 25px;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.premium-search-form {
    position: relative;
    z-index: 9999;
}

.premium-search-input {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 20px;
    padding: 0 74px 0 24px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.premium-search-input:focus {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}

.premium-search-input::placeholder {
    color: rgba(255,255,255,0.55);
}

.premium-search-btn {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-search-btn:hover {
    transform: scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
    animation: fadeSearch 0.25s ease;
}

@keyframes fadeSearch {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid #f3f4f6;
}

.search-item:hover {
    background: #f9fafb;
}

.search-item img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 14px;
    background: #f5f5f7;
}

.search-item-info {
    flex: 1;
}

.search-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.search-item-price {
    font-size: 14px;
    color: #f97316;
    font-weight: 700;
}

.search-item-arrow {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.25s ease;
}

.search-item:hover .search-item-arrow {
    background: #111827;
    color: #ffffff;
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .premium-search-wrapper {
        margin: 20px 0;
        max-width: 100%;
    }
    .premium-search-input {
        height: 54px;
    }
    .search-suggestions {
        top: 68px;
    }
}

/* Additional page styles */
.menu-items a i { font-size: 0.9rem; color: #1d1d1f; }
.dropdown-content { display: none; position: absolute; background: white; min-width: 220px; border: 1px solid #e8e8ed; top: 100%; left: 0; z-index: 100; box-shadow: 0 8px 20px rgba(0,0,0,0.04); }
.dropdown-content a { padding: 0.6rem 1rem; display: block; border-bottom: 1px solid #f0f0f2; color: #1d1d1f; text-decoration: none; font-size: 0.8rem; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: #f5f5f7; }
.dropdown-content.show { display: block; }
.burger { display: none; font-size: 1.4rem; cursor: pointer; }

.hero-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; background: #f5f5f7; cursor: grab; scrollbar-width: thin; scrollbar-color: #ff6b00 #e8e8ed; }
.hero-slider::-webkit-scrollbar { height: 5px; }
.hero-slider::-webkit-scrollbar-track { background: #e8e8ed; }
.hero-slider::-webkit-scrollbar-thumb { background: #ff6b00; }
.hero-slide { flex: 0 0 100%; scroll-snap-align: start; height: 55vh; min-height: 350px; background-size: cover; background-position: center; display: flex; align-items: center; padding: 0 8%; }
.slide-content { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); padding: 1.5rem 2rem; max-width: 450px; border: 1px solid rgba(0,0,0,0.05); }
.slide-content h2 { font-size: 1.8rem; font-weight: 600; color: #1d1d1f; }
.slide-content p { font-size: 0.85rem; color: #6e6e73; margin: 0.5rem 0; }
.cta-btn { background: #0071e3; border: none; padding: 0.5rem 1.2rem; font-weight: 500; font-size: 0.8rem; color: white; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; margin-top: 0.8rem; cursor: pointer; }

.product-slider { display: flex; overflow-x: auto; gap: 1rem; padding: 0.5rem 0; flex: 1; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.product-slider::-webkit-scrollbar { display: none; }
.section-title { font-size: 1.4rem; font-weight: 600; margin: 1.8rem 0 1rem; border-left: 3px solid #0071e3; padding-left: 12px; }
.category-slider { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.product-link { flex: 0 0 180px; text-decoration: none; color: inherit; }
.product-card { background: white; border: 1px solid #e8e8ed; transition: all 0.2s; overflow: hidden; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); border-color: #d2d2d7; }
.product-img-wrapper { aspect-ratio: 1 / 1; background: #f5f5f7; position: relative; }
.product-img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); color: white; font-weight: 600; font-size: 0.75rem; padding: 4px 10px; }
.product-title { font-size: 0.8rem; font-weight: 500; padding: 0.7rem 0.6rem 0.6rem; color: #1d1d1f; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.slide-arrow { background: white; border: 1px solid #e8e8ed; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.wishlist-heart-btn { background: white; border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); color: #ff3b30; transition: all 0.2s ease; }
.wishlist-heart-btn:hover { transform: scale(1.05); background: #fff0f0; }
.wishlist-heart-btn.active { background: #ff3b30; color: white; }
.wishlist-heart-btn:disabled { opacity: 0.8; cursor: default; transform: none; }
.view-all-link { font-size: 0.75rem; color: #0071e3; text-decoration: none; font-weight: 500; }
.view-all-link:hover { text-decoration: underline; }

.footer { background: #f5f5f7; color: #6e6e73; padding: 2rem 1rem 1.2rem; margin-top: 2rem; border-top: 1px solid #e8e8ed; }
.footer-container { max-width: 1280px; margin: 0 auto; }
.footer-menu { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #e8e8ed; margin-bottom: 1.5rem; }
.footer-col { flex: 1; min-width: 140px; }
.footer-col h4 { color: #1d1d1f; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col a { display: block; color: #6e6e73; text-decoration: none; font-size: 0.7rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: #0071e3; }
.footer-bottom-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.footer-brand { flex: 1; }
.footer-logo { font-size: 1rem; font-weight: 600; color: #1d1d1f; margin-bottom: 0.2rem; }
.footer-brand p { font-size: 0.65rem; opacity: 0.7; }
.footer-payment { flex: 1; text-align: center; }
.footer-payment span { font-size: 0.65rem; margin-right: 0.5rem; }
.payment-icons i { font-size: 1rem; margin: 0 5px; color: #6e6e73; }
.footer-social { flex: 1; text-align: right; }
.footer-social a { color: #6e6e73; font-size: 1rem; margin-left: 1rem; display: inline-block; }
.footer-social a:hover { color: #0071e3; }
.footer-copyright { text-align: center; padding-top: 1.5rem; margin-top: 1rem; border-top: 1px solid #e8e8ed; font-size: 0.6rem; color: #86868b; }

@media (max-width: 768px) {
    .product-slider { scrollbar-width: thin; scrollbar-color: #ff6b00 #e8e8ed; }
    .product-slider::-webkit-scrollbar { display: block; height: 4px; }
    .product-slider::-webkit-scrollbar-track { background: #e8e8ed; }
    .product-slider::-webkit-scrollbar-thumb { background: #ff6b00; }
    .slide-arrow { display: none; }
    .product-link { flex: 0 0 140px; }
    .footer-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .footer-bottom-row { flex-direction: column; text-align: center; }
    .footer-payment { text-align: center; }
    .footer-social { text-align: center; margin-top: 0.5rem; }
    .footer-social a { margin: 0 0.6rem; }
    .hero-slide { height: 45vh; }
}

@media (max-width: 820px) {
    .nav-top { flex-wrap: wrap; gap: 0.4rem; padding: 0.3rem 1rem; }
    .search-bar { order: 3; width: 100%; max-width: none; margin: 0.2rem 0 0; }
    .menu-items { display: none; }
    .burger { display: block; }
}