* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #ff5e1d;
    --primary-dark: #e94d0d;
    --blue: #2563eb;
    --blue-light: #eff6ff;
    --green: #16a34a;
    --green-light: #f0fdf4;
    --purple: #7c3aed;
    --purple-light: #f5f3ff;
    --pink: #db2777;
    --pink-light: #fdf2f8;
    --yellow: #f59e0b;
    --yellow-light: #fffbeb;
    --cyan: #0891b2;
    --cyan-light: #ecfeff;
    --dark: #111827;
    --dark-2: #1f2937;
    --text: #374151;
    --muted: #6b7280;
    --border: #e5e7eb;
    --light: #f8fafc;
    --white: #ffffff;
}
html { scroll-behavior: smooth; }
body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 75%, #fffaf7 100%);
    line-height: 1.5;
}
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
button, input { font-family: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container { width: min(1350px, calc(100% - 40px)); margin: auto; }

header {
    position: sticky; top: 0; z-index: 9999;
    background: #ffffff; border-bottom: 1px solid #eeeeee;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.topbar {
    height: 36px; background: linear-gradient(90deg, #111827, #1e293b);
    color: #ffffff; font-size: 12px;
}
.topbar-inner { height: 36px; display: flex; align-items: center; justify-content: space-between; }
.delivery-message { display: flex; align-items: center; gap: 7px; }
.delivery-message span { color: #f9fafb; }
.top-links { display: flex; align-items: center; gap: 28px; }
.top-links a { transition: .2s ease; }
.top-links a:hover { color: #ffb08c; }

.header-main { min-height: 82px; display: flex; align-items: center; gap: 28px; background: #ffffff; }

.logo { font-size: 30px; font-weight: 800; letter-spacing: -1.5px; white-space: nowrap; color: var(--dark); }
.logo span { color: var(--primary); }

.mobile-menu {
    display: none; width: 42px; height: 42px;
    border: 1px solid var(--border); background: #ffffff;
    border-radius: 8px; font-size: 21px; align-items: center; justify-content: center;
}
.mobile-menu:hover { color: var(--primary); border-color: var(--primary); }

.category-button {
    height: 44px; border: 1px solid var(--border); background: #ffffff;
    border-radius: 7px; padding: 0 16px; display: flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 600; white-space: nowrap; transition: .2s ease;
}
.category-button:hover { border-color: var(--primary); background: #fff7f3; color: var(--primary); }

.category-dropdown { position: relative; }
.category-menu {
    display: none; position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
    background: #ffffff; border: 1px solid var(--border); border-radius: 7px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10); padding: 6px 0; z-index: 200;
}
.category-dropdown.open .category-menu { display: block; }
.category-menu-item {
    display: block; padding: 9px 16px; font-size: 13px; font-weight: 500;
    color: var(--text); text-decoration: none; transition: .15s ease;
}
.category-menu-item:hover { background: #fff7f3; color: var(--primary); }

.search { flex: 1; max-width: 650px; display: flex; }
.search input {
    width: 100%; height: 44px; border: 1px solid var(--border); border-right: none;
    border-radius: 7px 0 0 7px; padding: 0 16px; font-size: 13px; outline: none;
}
.search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,94,29,.08); }
.search button {
    height: 44px; border: none; background: linear-gradient(135deg, #ff6a28, #ff4d0a);
    color: #ffffff; padding: 0 25px; border-radius: 0 7px 7px 0; font-size: 13px; font-weight: 700; transition: .2s ease;
}
.search button:hover { background: linear-gradient(135deg, #ff4d0a, #df3e00); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.action {
    position: relative; display: flex; align-items: center; gap: 7px; font-size: 13px;
    font-weight: 600; white-space: nowrap; cursor: pointer; transition: .2s ease;
}
.action:hover { color: var(--primary); }
.action-icon { font-size: 22px; line-height: 1; }
.badge {
    position: absolute; top: -9px; left: 14px; min-width: 18px; height: 18px; padding: 0 5px;
    border-radius: 20px; background: var(--primary); color: white; font-size: 9px;
    display: flex; align-items: center; justify-content: center; font-weight: 800; border: 2px solid white;
}

.nav { height: 48px; background: #ffffff; border-top: 1px solid #f2f2f2; }
.nav-inner { height: 48px; display: flex; align-items: center; gap: 36px; }
.nav-link {
    height: 48px; display: flex; align-items: center; position: relative;
    font-size: 13px; font-weight: 600; color: #374151; transition: .2s ease;
}
.nav-link::after {
    content: ""; position: absolute; height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff8a5c);
    left: 0; right: 0; bottom: 0; transform: scaleX(0); border-radius: 4px 4px 0 0; transition: .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.hero {
    margin-top: 12px; height: 375px; border-radius: 18px; overflow: hidden; position: relative;
    background: radial-gradient(circle at 80% 30%, rgba(255,255,255,.75), transparent 35%),
                linear-gradient(120deg, #fff0e8, #ffe4d3 48%, #e9ddff);
    border: 1px solid #f3e3dc;
}
.hero::before {
    content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%;
    background: rgba(255,94,29,.10); top: -100px; right: 220px;
}
.hero::after {
    content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%;
    background: rgba(124,58,237,.08); bottom: -80px; right: 60px;
}
.hero-content { position: relative; z-index: 5; width: 52%; height: 100%; padding: 58px 0 0 70px; }
.hero-label {
    display: inline-flex; align-items: center; background: linear-gradient(135deg, #ff6a28, #ff4b0b);
    color: white; padding: 6px 13px; border-radius: 30px; font-size: 10px; font-weight: 800;
    margin-bottom: 19px; box-shadow: 0 5px 15px rgba(255,94,29,.2);
}
.hero h1 { max-width: 520px; font-size: 40px; line-height: 1.13; letter-spacing: -1.5px; color: #17202b; margin-bottom: 15px; }
.hero p { max-width: 390px; color: #4b5563; font-size: 14px; line-height: 1.7; margin-bottom: 25px; }
.hero-button {
    display: inline-flex; align-items: center; gap: 12px; height: 46px; padding: 0 21px; border: none;
    border-radius: 7px; background: linear-gradient(135deg, #ff6a28, #ff4d0a); color: white;
    font-size: 13px; font-weight: 800; box-shadow: 0 8px 20px rgba(255,94,29,.2); transition: .25s ease;
}
.hero-button:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255,94,29,.3); }

.hero-image { position: absolute; z-index: 2; right: 35px; bottom: 0; width: 49%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-image img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 20px; }
.hero-product {
    width: 440px; height: 275px; border-radius: 20px; display: flex; align-items: center;
    justify-content: center; font-size: 135px;
    background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.28));
    border: 1px solid rgba(255,255,255,.65); box-shadow: 0 30px 60px rgba(76,50,30,.10); transition: .4s ease;
}

.hero-arrow {
    position: absolute; z-index: 10; top: 50%; transform: translateY(-50%); width: 39px; height: 39px;
    border: none; border-radius: 50%; background: #ffffff; box-shadow: 0 5px 20px rgba(0,0,0,.09);
    font-size: 25px; display: flex; align-items: center; justify-content: center; transition: .2s ease;
}
.hero-arrow:hover { background: var(--primary); color: #ffffff; transform: translateY(-50%) scale(1.05); }
.hero-arrow.left { left: 18px; }
.hero-arrow.right { right: 18px; }

.slider-dots {
    position: absolute; z-index: 10; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px;
}
.slider-dots span { width: 8px; height: 8px; background: #c8c8c8; border-radius: 20px; transition: .25s ease; cursor: pointer; }
.slider-dots span.active { width: 23px; background: var(--primary); }

.features {
    margin-top: 11px; border: 1px solid var(--border); border-radius: 12px;
    display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: white;
}
.feature { min-height: 78px; padding: 14px 28px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--border); transition: .2s ease; }
.feature:last-child { border-right: none; }
.feature:hover { background: #fffaf7; }
.feature-icon {
    width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 22px; background: #fff1eb; color: var(--primary);
}
.feature:nth-child(2) .feature-icon { background: var(--blue-light); color: var(--blue); }
.feature:nth-child(3) .feature-icon { background: var(--green-light); color: var(--green); }
.feature:nth-child(4) .feature-icon { background: var(--purple-light); color: var(--purple); }
.feature strong { display: block; color: #111827; font-size: 12px; margin-bottom: 3px; }
.feature span { color: var(--muted); font-size: 11px; }

.section { padding-top: 40px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 21px; }
.section-title { font-size: 21px; font-weight: 800; letter-spacing: -.4px; color: #111827; }
.view-all { color: var(--primary); font-size: 12px; font-weight: 700; }
.view-all:hover { text-decoration: underline; }

.categories { display: grid; grid-template-columns: repeat(8, 1fr); gap: 20px; }
.category { text-align: center; cursor: pointer; }
.category-image {
    width: 88px; height: 88px; margin: auto; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 37px; transition: .25s ease; border: 3px solid transparent;
}
.category:nth-child(1) .category-image { background: #eaf2ff; border-color: #d8e7ff; }
.category:nth-child(2) .category-image { background: #fff0f6; border-color: #ffd9e9; }
.category:nth-child(3) .category-image { background: #fff7df; border-color: #ffedb8; }
.category:nth-child(4) .category-image { background: #f4edff; border-color: #e7d9ff; }
.category:nth-child(5) .category-image { background: #e9fbf8; border-color: #cef4ed; }
.category:nth-child(6) .category-image { background: #edf6ff; border-color: #d8ebff; }
.category:nth-child(7) .category-image { background: #fff0e9; border-color: #ffdbca; }
.category:nth-child(8) .category-image { background: #fff1f7; border-color: #ffdced; }
.category:hover .category-image { transform: translateY(-6px) scale(1.04); box-shadow: 0 12px 25px rgba(0,0,0,.08); }
.category-name { margin-top: 10px; color: #374151; font-size: 12px; font-weight: 600; }

.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 19px; }
.product-card {
    position: relative; overflow: hidden; background: #ffffff;
    border: 1px solid var(--border); border-radius: 11px; transition: .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,.08); border-color: #ffd7c5; }
.product-image { height: 205px; display: flex; align-items: center; justify-content: center; font-size: 82px; position: relative; }
.product-card:nth-child(1) .product-image { background: linear-gradient(135deg, #edf4ff, #e3ecff); }
.product-card:nth-child(2) .product-image { background: linear-gradient(135deg, #fff0f7, #ffe5f0); }
.product-card:nth-child(3) .product-image { background: linear-gradient(135deg, #f4edff, #e9ddff); }
.product-card:nth-child(4) .product-image { background: linear-gradient(135deg, #eafbf7, #d9f6ef); }
.product-card:nth-child(5) .product-image { background: linear-gradient(135deg, #fff7e8, #ffedca); }
.discount {
    position: absolute; left: 10px; top: 10px; padding: 5px 8px; border-radius: 5px;
    background: linear-gradient(135deg, #ff6a28, #ff4b0b); color: white; font-size: 10px; font-weight: 800; z-index: 2;
}
.wishlist-btn {
    position: absolute; right: 10px; top: 10px; width: 33px; height: 33px; border: none;
    border-radius: 50%; background: white; box-shadow: 0 3px 10px rgba(0,0,0,.08); font-size: 17px; transition: .2s ease; z-index: 2;
}
.wishlist-btn:hover { color: var(--primary); transform: scale(1.08); }
.wishlist-btn.selected { color: var(--primary); }
.product-info { padding: 15px; }
.product-category { color: #9ca3af; font-size: 10px; margin-bottom: 6px; }
.product-name { color: #1f2937; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.rating { color: #f59e0b; font-size: 11px; margin-bottom: 9px; }
.rating span { color: #9ca3af; }
.price { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.current-price { color: var(--primary); font-size: 15px; font-weight: 800; }
.old-price { color: #9ca3af; font-size: 11px; text-decoration: line-through; }

.add-cart-btn {
    display: block; width: 100%; margin-top: 10px; padding: 8px; border: 1px solid var(--primary);
    background: white; color: var(--primary); border-radius: 6px; font-size: 11px; font-weight: 700;
    transition: .2s ease; cursor: pointer;
}
.add-cart-btn:hover { background: var(--primary); color: white; }

footer {
    margin-top: 65px; background: linear-gradient(135deg, #101820, #172331); color: white;
    padding: 52px 0 25px; position: relative; overflow: hidden;
}
footer::before {
    content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,94,29,.06); right: -120px; top: -130px;
}
footer::after {
    content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
    background: rgba(124,58,237,.06); left: -100px; bottom: -100px;
}
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; }
.footer-logo { color: white; font-size: 27px; font-weight: 800; letter-spacing: -1px; margin-bottom: 15px; }
.footer-logo span { color: var(--primary); }
.footer-description { max-width: 350px; color: #aeb6c0; font-size: 12px; line-height: 1.8; }
footer h4 { font-size: 14px; margin-bottom: 17px; }
footer ul { list-style: none; }
footer li { color: #aeb6c0; font-size: 12px; margin-bottom: 10px; transition: .2s ease; }
footer li:hover { color: var(--primary); cursor: pointer; }
.copyright { position: relative; z-index: 2; border-top: 1px solid #29333d; margin-top: 40px; padding-top: 20px; text-align: center; color: #87929c; font-size: 11px; }

.notification {
    position: fixed; right: 20px; bottom: 20px; z-index: 20000;
    background: linear-gradient(135deg, #111827, #1f2937); color: white; padding: 13px 18px;
    border-radius: 8px; font-size: 13px; font-weight: 600; box-shadow: 0 12px 35px rgba(0,0,0,.2);
    opacity: 0; transform: translateY(15px); pointer-events: none; transition: .25s ease;
}
.notification.show { opacity: 1; transform: translateY(0); }

.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 9990; background: rgba(0,0,0,.35); }
.mobile-overlay.active { display: block; }

@media (max-width: 1150px) {
    .header-main { gap: 15px; }
    .header-actions { gap: 14px; }
    .action-text { display: none; }
    .categories { grid-template-columns: repeat(4, 1fr); row-gap: 25px; }
    .products { grid-template-columns: repeat(3, 1fr); }
    .hero-content { padding-left: 50px; }
    .hero h1 { font-size: 33px; }
    .hero-image { right: 20px; }
    .hero-product { width: 350px; height: 240px; font-size: 110px; }
    .nav-inner { gap: 23px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 800px) {
    .container { width: calc(100% - 24px); }
    header { position: sticky; top: 0; z-index: 9999; }
    .topbar { height: 32px; }
    .topbar-inner { height: 32px; justify-content: center; }
    .delivery-message { font-size: 10px; }
    .top-links { display: none; }
    .header-main { min-height: 65px; gap: 9px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
    .mobile-menu { display: flex; flex-shrink: 0; }
    .logo { font-size: 24px; }
    .category-button { display: none; }
    .header-actions { margin-left: auto; gap: 13px; }
    .action-icon { font-size: 20px; }
    .search { order: 10; flex-basis: 100%; max-width: none; }
    .search input, .search button { height: 42px; }
    .nav { display: none; height: auto; position: absolute; left: 0; right: 0; top: 100%; border-top: 1px solid var(--border); box-shadow: 0 15px 30px rgba(0,0,0,.10); }
    .nav.mobile-visible { display: block; }
    .nav-inner { height: auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link { height: 48px; padding: 0 5px; border-bottom: 1px solid #f1f1f1; }
    .nav-link::after { display: none; }
    .hero { height: 510px; margin-top: 10px; }
    .hero-content { width: 100%; padding: 40px 25px 0; text-align: center; }
    .hero h1 { font-size: 29px; letter-spacing: -.8px; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-image { width: 100%; right: 0; height: 235px; bottom: 0; }
    .hero-product { width: 270px; height: 175px; font-size: 80px; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .feature { min-height: 80px; padding: 13px 16px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
    .feature:nth-child(2), .feature:nth-child(4) { border-right: none; }
    .products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-image { height: 170px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
}

@media (max-width: 480px) {
    .container { width: calc(100% - 18px); }
    .header-main { gap: 7px; }
    .mobile-menu { width: 38px; height: 38px; }
    .logo { font-size: 22px; }
    .header-actions { gap: 8px; }
    .action-icon { font-size: 19px; }
    .badge { top: -7px; left: 12px; }
    .hero { height: 475px; }
    .hero-content { padding-top: 32px; }
    .hero h1 { font-size: 27px; }
    .hero-product { width: 240px; height: 160px; font-size: 70px; }
    .features { grid-template-columns: 1fr; }
    .feature { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .feature:last-child { border-bottom: none !important; }
    .categories { grid-template-columns: repeat(4, 1fr); gap: 20px 5px; }
    .category-image { width: 64px; height: 64px; font-size: 27px; }
    .category-name { font-size: 10px; }
    .section { padding-top: 30px; }
    .section-title { font-size: 18px; }
    .view-all { font-size: 11px; }
    .product-image { height: 145px; font-size: 58px; }
    .product-info { padding: 10px; }
    .product-name { font-size: 12px; }
    .current-price { font-size: 13px; }
    .old-price { font-size: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Cart styles */
.cart-section { padding-top: 40px; }
.cart-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--border); border-radius: 11px; overflow: hidden; }
.cart-table th { background: #f8fafc; color: #64748b; text-align: left; padding: 12px; font-size: 11px; font-weight: 700; }
.cart-table td { padding: 15px 12px; border-bottom: 1px solid #edf0f3; font-size: 13px; vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-qty { width: 60px; height: 36px; border: 1px solid var(--border); border-radius: 6px; text-align: center; font-size: 13px; }
.cart-remove { color: #ef4444; font-size: 12px; font-weight: 700; cursor: pointer; }
.cart-total { text-align: right; margin-top: 20px; font-size: 18px; font-weight: 800; color: var(--dark); }
.cart-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 15px; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 24px; border: none; border-radius: 7px; font-size: 13px; font-weight: 700; transition: .2s ease; }
.btn-primary { background: linear-gradient(135deg, #ff6a28, #ff4d0a); color: white; box-shadow: 0 5px 13px rgba(255,94,29,.18); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: white; color: #374151; border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* Checkout styles */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; padding-top: 40px; }
.checkout-form { background: white; border: 1px solid var(--border); border-radius: 11px; padding: 22px; }
.checkout-form h3 { font-size: 16px; color: #162334; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 700; color: #374151; }
.form-control { width: 100%; height: 40px; border: 1px solid #dfe4ea; border-radius: 7px; padding: 0 11px; font-size: 12px; background: white; transition: .2s ease; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,94,29,.08); outline: none; }
textarea.form-control { height: 80px; padding-top: 8px; resize: vertical; }
.order-summary { background: white; border: 1px solid var(--border); border-radius: 11px; padding: 22px; height: fit-content; }
.order-summary h3 { font-size: 16px; color: #162334; margin-bottom: 18px; }
.order-summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #f0f2f5; }
.order-summary-row.total { font-size: 18px; font-weight: 800; color: var(--primary); border-bottom: none; padding-top: 12px; }
.payment-option { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; cursor: pointer; transition: .2s ease; }
.payment-option:hover { border-color: var(--primary); }
.payment-option input[type="radio"] { accent-color: var(--primary); }

/* Auth pages */
.auth-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 60px 0; }
.auth-box { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 40px; width: 100%; max-width: 440px; }
.auth-box h2 { font-size: 24px; font-weight: 800; color: #162334; margin-bottom: 6px; }
.auth-box p { color: #718096; font-size: 12px; margin-bottom: 24px; }
.auth-link { color: var(--primary); font-weight: 600; }
.alert { padding: 10px 14px; border-radius: 7px; font-size: 12px; margin-bottom: 15px; }
.alert-danger { background: #fee2e2; color: #dc2626; }
.alert-success { background: #dcfce7; color: #15803d; }

/* Order history */
.orders-section { padding-top: 40px; }
.order-card { background: white; border: 1px solid var(--border); border-radius: 11px; padding: 18px; margin-bottom: 14px; transition: .2s ease; }
.order-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,.05); }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-number { font-size: 15px; font-weight: 800; color: #162334; }
.order-date { color: #718096; font-size: 11px; }
.order-status { display: inline-flex; padding: 4px 10px; border-radius: 5px; font-size: 10px; font-weight: 700; }
.order-status.pending { color: #b45309; background: #fef3c7; }
.order-status.processing { color: #2563eb; background: #dbeafe; }
.order-status.shipped { color: #7c3aed; background: #f3e8ff; }
.order-status.delivered { color: #15803d; background: #dcfce7; }
.order-status.cancelled { color: #dc2626; background: #fee2e2; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid #f0f2f5; }
.order-total { font-size: 16px; font-weight: 800; color: var(--primary); }
.empty-state { text-align: center; padding: 60px 20px; color: #9ca3af; }
.empty-state .icon { font-size: 48px; margin-bottom: 15px; }
.empty-state h3 { font-size: 18px; color: #374151; margin-bottom: 8px; }

/* Campaign banners */
.campaign-banners { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin: 8px 0 0; }
.campaign-banner {
    display: flex; align-items: flex-end; justify-content: flex-start; min-height: 140px;
    padding: 20px; border-radius: 16px; background-color: #f3f4f6; background-size: cover;
    background-position: center; position: relative; overflow: hidden; text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.campaign-banner:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,.12); }
.campaign-name {
    position: relative; z-index: 2; font-size: 18px; font-weight: 800; color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,.35); background: rgba(0,0,0,.28);
    padding: 8px 14px; border-radius: 8px;
}

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.review-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.review-stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; }
.review-text { font-size: 13px; color: #374151; line-height: 1.6; margin: 0; flex: 1; }
.review-meta { border-top: 1px solid #f0f2f5; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review-author { font-size: 13px; font-weight: 700; color: #162334; }
.review-product { font-size: 11px; color: #9ca3af; }