@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f3f5f9;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --text: #101828;
    --muted: #667085;
    --muted-2: #475467;
    --line: #e7edf5;
    --line-2: #d8e1ec;
    --primary: #ff6000;
    --primary-dark: #e65400;
    --primary-soft: #fff3e1;
    --danger: #dc2626;
    --success: #16a34a;
    --chip: #f2f4f7;
    --shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
    --shadow-2: 0 14px 38px rgba(16, 24, 40, 0.08);
    --radius: 16px;
    --radius-lg: 24px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: var(--container);
    max-width: calc(100% - 30px);
    margin: 0 auto;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */

.site-shell-container {
    width: min(100% - 24px, 1400px);
    margin: 0 auto;
}

.site-main-wrap {
    width: min(100% - 24px, 1400px);
    margin: 24px auto 0;
    min-height: auto !important;
    padding-bottom: 0 !important;
}

.site-main-wrap.is-wide {
    width: min(100% - 24px, 1520px);
}

.site-main-wrap:empty {
    display: none;
}

/* =========================================================
   TOP STRIP / HEADER / NAV
   ========================================================= */

.top-strip {
    background: #111827;
    color: #fff;
    font-size: 13px;
}

.top-strip-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.top-strip-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
}

.top-strip-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.top-strip a {
    text-decoration: none;
    color: rgba(255,255,255,0.88);
}

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

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(16,24,40,.04);
}

.header-main {
    background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
    border-bottom: 1px solid var(--line);
    padding: 0;
}

.header-main-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    min-width: 0;
}

.logo-main {
    color: #111827;
}

.logo-accent {
    color: var(--primary);
}

/* search */

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 20px rgba(255,96,0,.08);
}

.search-box input {
    flex: 1;
    min-height: 52px;
    border: 0;
    outline: none;
    padding: 0 16px 0 18px;
    font: inherit;
    font-size: 15px;
    color: #111827;
    background: transparent;
}

.search-box input::placeholder {
    color: #98a2b3;
}

.search-box button {
    width: 58px;
    min-width: 58px;
    height: 52px;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 0 14px 14px 0;
}

.search-box-live {
    position: relative;
}

.search-suggest-box {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    display: none;
    padding: 8px;
    z-index: 1100;
}

.search-suggest-box.active {
    display: block;
}

.search-suggest-item {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.search-suggest-item:hover {
    background: #f8fafc;
}

/* header actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.header-user,
.header-mini-cart,
.dropdown-user {
    position: relative;
}

.header-icon {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(16,24,40,.04);
    position: relative;
}

.header-icon.cart {
    background: #fff4ec;
    border-color: #ffd7bf;
}

.header-icon-emoji {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.cart-count {
    position: static;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* dropdowns */

.user-dropdown-menu,
.mini-cart-dropdown,
.dropdown-menu,
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
}

.user-dropdown-menu,
.mini-cart-dropdown {
    right: 0;
}

.dropdown-user:hover .user-dropdown-menu,
.dropdown-user:hover .mini-cart-dropdown,
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu {
    min-width: 220px;
    padding: 10px;
}

.user-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.user-dropdown-menu a:hover {
    background: #f8fafc;
}

.mini-cart-dropdown {
    width: 330px;
    min-width: 330px;
    padding: 10px;
}

.mini-cart-list {
    max-height: 320px;
    overflow: auto;
    display: grid;
    gap: 10px;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    text-decoration: none;
    padding: 10px;
    border-radius: 14px;
}

.mini-cart-item:hover {
    background: #f8fafc;
}

.mini-cart-thumb {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mini-cart-thumb img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.mini-cart-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-cart-text strong {
    font-size: 13px;
    line-height: 1.45;
    color: #111827;
}

.mini-cart-text span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.mini-cart-footer {
    border-top: 1px solid #eef2f7;
    padding-top: 12px;
    margin-top: 10px;
    display: grid;
    gap: 12px;
}

.mini-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mini-cart-total span {
    color: #475467;
    font-size: 13px;
    font-weight: 700;
}

.mini-cart-total strong {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.mini-cart-empty {
    padding: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* nav */

.header-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 54px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-inner::-webkit-scrollbar {
    display: none;
}

.nav-inner > a,
.nav-item > span,
.nav-item > a {
    text-decoration: none;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
}

.nav-item {
    position: relative;
    flex: 0 0 auto;
}

.nav-item.dropdown > span {
    min-height: 40px;
    padding: 0 14px;
    margin: 7px 0;
    border-radius: 12px;
    background: #fff4ec;
    color: #c2410c;
}

.dropdown-menu,
.nav-dropdown {
    left: 0;
    min-width: 240px;
    padding: 10px;
}

.dropdown-menu {
    columns: 1;
    column-gap: 0;
}

.dropdown-menu a,
.nav-dropdown a {
    display: block;
    break-inside: avoid;
    margin-bottom: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.dropdown-menu a:hover,
.nav-dropdown a:hover {
    background: #f8fafc;
}

/* =========================================================
   GENERIC
   ========================================================= */

main.container {
    padding-top: 16px;
    padding-bottom: 0;
}

.alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin: 15px 0;
}

.alert-danger {
    background: #ffe7e7;
    color: #9b1c1c;
}

.alert-success {
    background: #e8fff0;
    color: #17663a;
}

.alert-info {
    background: #eaf4ff;
    color: #1a4c7d;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    background: var(--primary);
    color: #fff;
    padding: 0 18px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(255, 96, 0, 0.22);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-light {
    background: #fff;
    color: #1f2937;
    border: 1px solid var(--line-2);
    box-shadow: none;
}

.btn-light:hover {
    background: #f8fafc;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin: 34px 0 18px;
}

.section-head h1,
.section-head h2 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* =========================================================
   MONSTER HERO
   ========================================================= */

.monster-hero {
    margin: 10px 0 22px;
}

.monster-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 300px;
    gap: 18px;
    align-items: stretch;
}

.monster-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.monster-slide {
    display: none;
    position: relative;
    min-height: 320px;
}

.monster-slide.active {
    display: block;
}

.monster-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

.monster-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.monster-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
    transition: all 0.2s ease;
}

.monster-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.monster-prev {
    left: 12px;
}

.monster-next {
    right: 12px;
}

.monster-dots {
    position: absolute;
    left: 28px;
    bottom: 12px;
    display: flex;
    gap: 7px;
    z-index: 3;
}

.monster-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.2s ease;
}

.monster-dot.active {
    width: 24px;
    background: #fff;
}

.monster-hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.monster-promo-card {
    border-radius: 20px;
    padding: 20px 18px;
    min-height: 151px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
}

.monster-promo-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.monster-promo-content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
}

.monster-promo-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
}

.monster-promo-content small {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
}

.promo-red {
    background: linear-gradient(135deg, #ff5a36, #f97316);
}

.promo-gold {
    background: linear-gradient(135deg, #f7b500, #e78911);
}

.monster-hero-empty {
    background: linear-gradient(135deg, #111827, #334155);
    color: #fff;
    border-radius: 20px;
    min-height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow);
}

.monster-hero-empty h1 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.08;
}

.monster-hero-empty p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.86);
    max-width: 560px;
    line-height: 1.7;
}

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

.category-carousel-wrap {
    margin-bottom: 28px;
}

.category-carousel-head {
    margin-top: 0;
}

.carousel-nav {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    box-shadow: var(--shadow);
}

.category-carousel {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-carousel::-webkit-scrollbar {
    display: none;
}

.category-carousel-track {
    display: flex;
    gap: 12px;
}

.category-slide-item {
    min-width: 145px;
    max-width: 145px;
    flex: 0 0 145px;
}

.icon-category-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    text-align: center;
    padding: 14px 8px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(16, 24, 40, 0.03);
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-category-item:hover {
    transform: translateY(-2px);
    border-color: #d6dee8;
    box-shadow: var(--shadow);
}

.icon-category-icon {
    font-size: 22px;
    margin-bottom: 8px;
}

.icon-category-item span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: #344054;
}

/* =========================================================
   CATEGORY SHOWCASE
   ========================================================= */

.category-showcase {
    margin-bottom: 32px;
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
}

.category-showcase-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-content: start;
}

.showcase-mini-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 14px;
    text-decoration: none;
    color: #111827;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: 0.2s ease;
}

.showcase-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.showcase-mini-image {
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-mini-image img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.showcase-mini-title {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: #0f172a;
}

.showcase-mini-price {
    margin-top: 8px;
    font-weight: 800;
    font-size: 16px;
    color: var(--primary);
}

.category-showcase-banner {
    background: linear-gradient(135deg, #fff8ef, #fef3df);
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    border: 1px solid #f6e6c8;
}

.category-showcase-placeholder {
    padding: 32px;
    text-align: center;
}

.category-showcase-placeholder h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.2;
}

.category-showcase-placeholder p {
    margin-bottom: 18px;
    color: var(--muted);
}

/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
    border-color: #d5dde8;
}

.product-image-wrap {
    background: linear-gradient(180deg, #f9fbfd 0%, #f3f6fa 100%);
    padding: 22px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eef2f6;
}

.product-card img,
.detail-image {
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    border-radius: 12px;
}

.product-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.product-category {
    display: inline-flex;
    align-self: flex-start;
    font-size: 12px;
    color: #475467;
    background: var(--chip);
    padding: 7px 12px;
    border-radius: 999px;
    margin: 0;
    font-weight: 600;
    text-decoration: none;
}

.product-body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    min-height: 78px;
}

.product-brand-line {
    font-size: 13px;
    color: var(--muted);
    margin: -4px 0 0;
}

.price {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.product-meta-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-meta-row .btn {
    min-width: 110px;
}

/* =========================================================
   SHOP / CATEGORY / BRAND
   ========================================================= */

.shop-page-head {
    margin: 20px 0 24px;
    background: linear-gradient(135deg, #fff8ef, #fef3df);
    border: 1px solid #f5e3bf;
    border-radius: 24px;
    padding: 28px 30px;
    box-shadow: var(--shadow);
}

.shop-page-head-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.shop-page-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff3e1;
    color: #9a5b07;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.shop-page-head h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.shop-page-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.shop-page-stats {
    min-width: 140px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
    text-align: center;
}

.shop-page-stats strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.shop-page-stats span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #475467;
}

.shop-layout.premium-shop-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.shop-filter-card {
    position: sticky;
    top: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.shop-filter-head {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f7;
}

.shop-filter-head h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.shop-filter-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.premium-filter-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 13px;
    font-weight: 700;
    color: #475467;
}

.premium-filter-box input,
.premium-filter-box select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
    font: inherit;
    color: #0f172a;
    margin: 0;
}

.premium-filter-box input:focus,
.premium-filter-box select:focus {
    outline: none;
    border-color: #f1b454;
    box-shadow: 0 0 0 4px rgba(255, 96, 0, 0.10);
}

.filter-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.filter-actions .btn {
    flex: 1;
}

.shop-content {
    min-width: 0;
}

.shop-toolbar,
.category-toolbar,
.brand-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: var(--shadow);
}

.shop-toolbar-left h2,
.category-toolbar-left h2 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.shop-toolbar-left p,
.category-toolbar-left p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.category-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-shop-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.empty-shop-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #0f172a;
}

.empty-shop-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

/* =========================================================
   PRODUCT DETAIL - FINAL CLEAN
   ========================================================= */

.product-detail-shell {
    margin: 20px 0 0;
}

.product-detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
}

/* ======================
   GALERİ
====================== */

.product-detail-gallery {
    min-width: 0;
}

.product-detail-image-box {
    position: relative;
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
    border: 1px solid #edf2f7;
    border-radius: 22px;

    height: 560px; /* SABİT YÜKSEKLİK */
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px; /* ESKİ 28px -> küçüldü */
    overflow: hidden;
}

/* ANA GÖRSEL WRAP */
.product-detail-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ANA GÖRSEL */
.detail-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    /* EN KRİTİK KISIM */
    transform: scale(1.45);
    transform-origin: center;

    transition: transform 0.3s ease;
}

/* HOVER ZOOM */
.product-detail-image-box:hover .detail-image {
    transform: scale(1.6);
}

/* ======================
   BADGE
====================== */

.product-detail-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(255, 96, 0, 0.22);
}

.product-detail-badge.soft {
    background: #e9f8ef;
    color: #157347;
    box-shadow: none;
}

/* ======================
   INFO
====================== */

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.product-detail-topline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

/* ======================
   META
====================== */

.product-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 2px;
}

.product-detail-meta-item {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 14px 14px 12px;
}

.product-detail-meta-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
}

.product-detail-meta-item strong,
.product-detail-meta-item a {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

/* ======================
   PRICE
====================== */

.product-detail-price-row {
    padding: 8px 0 2px;
    border-bottom: 1px solid #eef2f7;
}

.product-detail-price {
    font-size: 34px;
}

/* ======================
   SHORT DESC
====================== */

.product-detail-short {
    color: var(--muted-2);
    line-height: 1.75;
    font-size: 15px;
    background: #fffaf1;
    border: 1px solid #f7e4bc;
    border-radius: 16px;
    padding: 16px 18px;
}

/* ======================
   PURCHASE
====================== */

.purchase-card {
    background: #f8fafc;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    padding: 18px;
}

.premium-add-cart-form {
    display: flex;
    align-items: end;
    gap: 14px;
}

.quantity-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 110px;
}

.quantity-box input {
    height: 46px;
    border-radius: 12px;
    padding: 0 12px;
}

/* ======================
   FEATURE
====================== */

.product-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff3e1;
    color: #9a5b07;
    font-size: 13px;
    font-weight: 700;
}

/* ======================
   DESCRIPTION
====================== */

.product-description-card {
    margin-top: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px 26px;
    box-shadow: var(--shadow);
}

.product-description {
    margin: 0;
    line-height: 1.85;
    color: var(--muted-2);
    font-size: 15px;
}

/* ======================
   MOBILE
====================== */

@media (max-width: 900px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image-box {
        height: 420px;
    }

    .detail-image {
        transform: scale(1.3);
    }
}

@media (max-width: 600px) {
    .product-detail-image-box {
        height: 320px;
    }

    .detail-image {
        transform: scale(1.2);
    }

    .product-detail-title {
        font-size: 26px;
    }
}
/* =========================================================
   CART
   ========================================================= */

.cart-page-head {
    margin: 20px 0 24px;
    background: linear-gradient(135deg, #fff8ef, #fef3df);
    border: 1px solid #f5e3bf;
    border-radius: 24px;
    padding: 28px 30px;
    box-shadow: var(--shadow);
}

.cart-page-head-content h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.cart-page-head-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.shipping-progress-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.shipping-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.shipping-progress-head strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.shipping-progress-head span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.shipping-progress-bar {
    width: 100%;
    height: 10px;
    background: #eef2f7;
    border-radius: 999px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f7b500, #e78911);
    border-radius: 999px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 360px;
    gap: 24px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(180deg, #f9fbfd 0%, #f3f6fa 100%);
    border: 1px solid #eef2f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.cart-item-top h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.cart-item-link {
    text-decoration: none;
    color: #9a5b07;
    font-size: 13px;
    font-weight: 700;
}

.cart-item-link:hover {
    color: var(--primary);
}

.cart-variation-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f8fafc;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.cart-item-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.cart-meta-box {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    padding: 14px;
}

.cart-meta-box span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cart-meta-box strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
}

.cart-meta-box.total strong {
    color: var(--primary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.cart-qty-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.qty-btn:hover {
    background: #f8fafc;
}

.qty-input {
    width: 72px;
    height: 42px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    text-align: center;
    font: inherit;
    font-weight: 700;
    color: #0f172a;
    background: #fff;
}

.qty-update-btn {
    min-width: 110px;
}

.cart-remove-btn {
    border: none;
    background: transparent;
    color: var(--danger);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.cart-remove-btn:hover {
    text-decoration: underline;
}

.cart-summary-card {
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.cart-summary-head {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f7;
}

.cart-summary-head h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.cart-summary-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.coupon-card {
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f7;
}

.coupon-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #475467;
}

.coupon-row {
    display: flex;
    gap: 10px;
}

.coupon-row input {
    flex: 1;
    height: 42px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 0 12px;
    font: inherit;
}

.cart-summary-row,
.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.cart-summary-row span,
.cart-summary-total span {
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}

.cart-summary-row strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

.cart-summary-total {
    border-top: 1px solid #eef2f7;
    margin-top: 4px;
    padding-top: 16px;
}

.cart-summary-total strong {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}

.cart-summary-btn {
    width: 100%;
    margin-top: 12px;
}

.cart-clear-btn {
    width: 100%;
    min-height: 42px;
    border: 1px solid #fecaca;
    background: #fff5f5;
    color: #b91c1c;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: 14px;
}

.cart-clear-btn:hover {
    background: #fee2e2;
}

.cart-empty-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 42px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cart-empty-icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 14px;
}

.cart-empty-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #0f172a;
}

.cart-empty-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 40px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    padding: 0;
}

.footer-top-benefits{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:16px;
    padding:30px 0 10px;
    margin-bottom:10px;
}

.footer-benefit-pill{
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:16px;
    box-shadow:var(--shadow);
    min-width:0;
}

.footer-benefit-icon{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:14px;
    background:#fff3e1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    line-height:1;
    flex-shrink:0;
}

.footer-benefit-text{
    min-width:0;
}

.footer-benefit-pill strong{
    display:block;
    margin:0 0 4px;
    font-size:14px;
    line-height:1.3;
    color:#0f172a;
    font-weight:800;
}

.footer-benefit-pill small{
    display:block;
    margin:0;
    font-size:12px;
    line-height:1.5;
    color:var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 30px 0 28px;
}

.footer-col h4 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.footer-logo-main {
    color: #0f172a;
}

.footer-logo-accent {
    color: var(--primary);
}

.footer-text {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 360px;
    font-size: 14px;
}

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

.footer-contact-list a {
    text-decoration: none;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: #475467;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-right span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff3e1;
    color: #9a5b07;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1200px){
    .footer-top-benefits{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .footer-top-benefits{
        grid-template-columns:1fr;
        padding:24px 0 6px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   BRANDS
   ========================================================= */

.brand-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.brand-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
    border: 1px solid #e7edf5;
    transition: 0.2s ease;
}

.brand-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
    border-color: #d5dde8;
}

/* =========================================================
   AUTH
   ========================================================= */

.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fb;
    padding: 40px 20px;
}

.auth-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.auth-left {
    background: linear-gradient(135deg, #ff7a00, #ff9a2f);
    color: #fff;
    padding: 50px;
}

.auth-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-left p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.auth-left ul {
    list-style: none;
    padding: 0;
}

.auth-left li {
    margin-bottom: 12px;
    font-size: 15px;
}

.auth-right {
    padding: 50px;
}

.auth-right h1 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: #ff7a00;
    outline: none;
}

.btn-auth {
    width: 100%;
    margin-top: 10px;
    background: #ff7a00;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.btn-auth:hover {
    background: #e56700;
}

.auth-links {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.auth-links a {
    color: #ff7a00;
    text-decoration: none;
}

.auth-register-wrap {
    padding: 24px 0 10px;
}

.auth-register-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

.auth-register-side {
    background: linear-gradient(135deg, #f7b500, #e78911);
    color: #fff;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-register-badge {
    display: inline-flex;
    align-self: flex-start;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
}

.auth-register-side h1 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
}

.auth-register-side p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

.auth-register-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-feature-item {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    font-size: 14px;
    font-weight: 700;
}

.auth-register-form-area {
    padding: 34px 34px 30px;
    background: #fff;
}

.auth-register-head {
    margin-bottom: 20px;
}

.auth-register-head h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.auth-register-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.account-type-switch {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.account-type-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #f3b2ba;
    border-radius: 12px;
    background: #fff;
    color: #e11d48;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.account-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-type-option.active {
    background: #f43f5e;
    color: #fff;
    border-color: #f43f5e;
}

.register-form-premium {
    display: flex;
    flex-direction: column;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.register-form-premium .form-group {
    margin-bottom: 0;
}

.register-form-premium label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #475467;
}

.register-form-premium input,
.register-form-premium select,
.register-form-premium textarea {
    width: 100%;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    padding: 0 14px;
    font: inherit;
    color: #0f172a;
    background: #fff;
    transition: 0.2s ease;
}

.register-form-premium input,
.register-form-premium select {
    height: 50px;
}

.register-form-premium textarea {
    min-height: 110px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.register-form-premium input:focus,
.register-form-premium select:focus,
.register-form-premium textarea:focus {
    outline: none;
    border-color: #f0ac43;
    box-shadow: 0 0 0 4px rgba(255, 96, 0, 0.10);
}

.register-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 4px;
}

.custom-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #475467;
    cursor: pointer;
}

.custom-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex-shrink: 0;
}

.register-submit-btn {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    font-size: 16px;
    border-radius: 14px;
}

.auth-bottom-link {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

.auth-bottom-link a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.auth-bottom-link a:hover {
    text-decoration: underline;
}

/* =========================================================
   ACCOUNT
   ========================================================= */

.account-page-head {
    margin: 20px 0 24px;
    background: linear-gradient(135deg, #fff8ef, #fef3df);
    border: 1px solid #f5e3bf;
    border-radius: 24px;
    padding: 28px 30px;
    box-shadow: var(--shadow);
}

.account-page-head-content h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.account-page-head-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.account-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.account-user-card,
.account-menu-card,
.account-info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.account-user-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.account-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7b500, #e78911);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.account-user-info h3 {
    margin: 0 0 4px;
    font-size: 20px;
    color: #0f172a;
    line-height: 1.2;
}

.account-user-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.account-menu-card {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-menu-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.account-menu-link:hover {
    background: #f8fafc;
    color: #0f172a;
}

.account-menu-link.active {
    background: #fff3e1;
    color: #9a5b07;
}

.account-menu-link.danger {
    color: #b91c1c;
}

.account-menu-link.danger:hover {
    background: #fff5f5;
    color: #991b1b;
}

.account-content {
    min-width: 0;
}

.account-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.account-info-card {
    padding: 22px;
}

.account-card-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f7;
}

.account-card-head h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.account-card-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.account-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.account-info-item {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 14px;
}

.account-info-item.full {
    grid-column: 1 / -1;
}

.account-info-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.account-info-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.6;
    word-break: break-word;
}

/* =========================================================
   ORDERS
   ========================================================= */

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.order-card,
.order-detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.order-card-top {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.order-top-item {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 14px;
}

.order-top-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.order-top-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-pending {
    background: #fff7ed;
    color: #b45309;
}

.status-processing {
    background: #eff6ff;
    color: #1d4ed8;
}

.status-shipped {
    background: #ecfeff;
    color: #0f766e;
}

.status-delivered {
    background: #ecfdf3;
    color: #15803d;
}

.status-cancelled {
    background: #fef2f2;
    color: #b91c1c;
}

.status-muted {
    background: #f3f4f6;
    color: #4b5563;
}

.order-progress-box {
    margin-top: 6px;
}

.order-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.order-progress-head span {
    font-size: 14px;
    font-weight: 700;
    color: #475467;
}

.order-progress-bar {
    width: 100%;
    height: 10px;
    background: #eef2f7;
    border-radius: 999px;
    overflow: hidden;
}

.order-progress-fill {
    height: 100%;
    border-radius: 999px;
}

.order-progress-fill.status-pending {
    background: #f59e0b;
}

.order-progress-fill.status-processing {
    background: #3b82f6;
}

.order-progress-fill.status-shipped {
    background: #14b8a6;
}

.order-progress-fill.status-delivered {
    background: #22c55e;
}

.order-progress-fill.status-cancelled {
    background: #ef4444;
}

.order-card-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}

.order-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 360px;
    gap: 24px;
    align-items: start;
}

.order-detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-detail-side {
    min-width: 0;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-item-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 14px;
}

.order-item-image {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.order-item-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.order-item-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    color: #0f172a;
}

.order-item-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.order-item-meta span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.order-item-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.order-back-btn {
    width: 100%;
    margin-top: 18px;
}

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

@media (max-width: 1200px) {
    .category-showcase-grid {
        grid-template-columns: 1fr;
    }

    .brand-strip,
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .monster-hero-grid,
    .shop-layout.premium-shop-layout,
    .product-detail-card,
    .cart-layout,
    .account-layout,
    .order-detail-layout {
        grid-template-columns: 1fr;
    }

    .monster-hero-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
    }

    .shop-filter-card,
    .cart-summary-card {
        position: static;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .auth-register-card {
        grid-template-columns: 1fr;
    }

    .auth-register-side {
        padding: 28px 24px;
    }

    .header-main-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px 0;
    }

    .logo {
        justify-self: start;
    }

    .header-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-showcase-products,
    .product-grid,
    .cart-item-meta,
    .product-detail-meta,
    .account-info-grid,
    .account-info-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-body h3 {
        min-height: auto;
    }

    .order-card-top {
        grid-template-columns: 1fr 1fr;
    }

    .order-item-row {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .order-item-total {
        grid-column: 2;
    }
}

@media (max-width: 768px) {
    .site-shell-container,
    .site-main-wrap,
    .site-main-wrap.is-wide {
        width: min(100% - 16px, 100%);
    }

    .site-main-wrap {
        margin: 18px auto 28px;
    }

    .top-strip-inner {
        min-height: auto;
        padding: 8px 0;
    }

    .top-strip-left,
    .top-strip-right {
        width: 100%;
        justify-content: center;
    }

    .monster-slider,
    .monster-slide,
    .monster-slide img,
    .monster-hero-empty {
        min-height: 300px;
        height: 300px;
    }

    .monster-slide-overlay {
        left: 20px;
        right: 20px;
        bottom: 24px;
        max-width: calc(100% - 40px);
    }

    .monster-slide-overlay h1,
    .monster-hero-empty h1,
    .shop-page-head h1,
    .cart-page-head-content h1,
    .product-detail-title,
    .account-page-head-content h1 {
        font-size: 28px;
    }

    .monster-slide-overlay p {
        font-size: 14px;
        line-height: 1.55;
    }

    .monster-dots {
        left: 20px;
        bottom: 12px;
    }

    .monster-hero-side,
    .product-grid,
    .category-showcase-products,
    .footer-grid,
    .brand-strip,
    .filter-price-grid,
    .shop-product-grid,
    .cart-item-meta,
    .register-grid,
    .account-info-grid,
    .account-info-list {
        grid-template-columns: 1fr;
    }

    .product-meta-row,
    .premium-add-cart-form,
    .filter-actions,
    .coupon-row,
    .cart-qty-form {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cart-item-image {
        width: 100%;
        height: 220px;
    }

    .cart-item-top,
    .shop-page-head-content,
    .shop-toolbar,
    .category-toolbar,
    .brand-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-page-head,
    .cart-page-head,
    .product-detail-card,
    .product-description-card,
    .cart-empty-card,
    .account-page-head {
        padding: 20px;
        border-radius: 18px;
    }

    .category-slide-item {
        min-width: 132px;
        max-width: 132px;
        flex-basis: 132px;
    }

    .search-box {
        width: 100%;
    }

    .mini-cart-dropdown {
        right: auto;
        left: 0;
        width: min(330px, calc(100vw - 32px));
        min-width: min(330px, calc(100vw - 32px));
    }

    .auth-card {
        grid-template-columns: 1fr;
    }

    .auth-left {
        display: none;
    }

    .auth-register-wrap {
        padding-top: 14px;
    }

    .auth-register-card {
        border-radius: 20px;
    }

    .auth-register-form-area,
    .auth-register-side {
        padding: 22px 18px;
    }

    .auth-register-side h1,
    .auth-register-head h2 {
        font-size: 28px;
    }

    .form-group.full {
        grid-column: auto;
    }

    .account-info-item.full {
        grid-column: auto;
    }

    .account-info-card,
    .account-user-card,
    .account-menu-card,
    .order-card,
    .order-detail-card {
        border-radius: 18px;
    }

    .account-info-card,
    .order-card,
    .order-detail-card {
        padding: 16px 18px;
    }

    .order-card-top {
        grid-template-columns: 1fr;
    }

    .order-item-row {
        grid-template-columns: 1fr;
    }

    .order-item-image {
        width: 100%;
        height: 180px;
    }

    .order-card-actions {
        justify-content: stretch;
    }

    .order-card-actions .btn {
        width: 100%;
    }

    .header-icon {
        min-height: 48px;
        padding: 0 14px;
    }

    .nav-inner {
        gap: 16px;
        min-height: 50px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: calc(100% - 20px);
    }

    .nav-inner {
        flex-direction: row;
        align-items: center;
    }

    .dropdown-menu,
    .nav-dropdown,
    .user-dropdown-menu {
        position: absolute;
        width: 240px;
        min-width: 240px;
        box-shadow: 0 18px 40px rgba(15,23,42,.12);
        margin-top: 0;
    }

    .logo {
        font-size: 24px;
    }

    .section-head h1,
    .section-head h2 {
        font-size: 24px;
    }

    .cart-summary-total strong {
        font-size: 22px;
    }

    .account-type-switch {
        width: 100%;
    }

    .account-type-option {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .brand-strip {
        grid-template-columns: 1fr;
    }
}
.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}

.footer-social-link{
    width:44px;
    height:44px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:linear-gradient(135deg,#1f2937,#111827);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    font-size:16px;
    transition:transform .25s ease, box-shadow .25s ease, color .25s ease;
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

.footer-social-link:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(0,0,0,0.35);
}

.footer-social-link:hover i.fa-facebook-f{ color:#1877f2; }
.footer-social-link:hover i.fa-instagram{ color:#e1306c; }
.footer-social-link:hover i.fa-x-twitter{ color:#ffffff; }
.footer-social-link:hover i.fa-youtube{ color:#ff0000; }
.footer-social-link:hover i.fa-tiktok{ color:#00f2ea; }
.footer-social-link:hover i.fa-linkedin-in{ color:#0a66c2; }
.footer-social-link:hover i.fa-whatsapp{ color:#25d366; }
/* =========================================================
   FULL FIX OVERRIDES - HEADER / MEGA MENU / SEARCH PANEL
   Added to align with new header.php structure.
   ========================================================= */

:root {
    --hdr-bg:#ffffff;
    --hdr-line:#e6ebf3;
    --hdr-text:#101828;
    --hdr-muted:#667085;
    --hdr-orange:#ff6000;
    --hdr-orange-dark:#e65400;
    --hdr-blue:#2563eb;
    --hdr-soft:#fff4ec;
    --hdr-shadow:0 12px 32px rgba(16,24,40,.08);
    --hdr-shadow-2:0 20px 48px rgba(16,24,40,.14);
}

body {
    overflow-x: hidden;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--hdr-line);
    box-shadow: 0 1px 0 rgba(16,24,40,.04);
}

.header-main {
    background: linear-gradient(180deg, #ffffff 20%, #fffdfb 100%);
    border-bottom: 1px solid var(--hdr-line);
    padding: 0;
}

.header-main-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 220px minmax(0,1fr) auto;
    align-items: center;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    min-width: 0;
}

.logo-main { color: #111827; }
.logo-accent { color: var(--hdr-orange); }

.search-trigger-wrap {
    position: relative;
    min-width: 0;
}

.search-trigger {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    border: 2px solid var(--hdr-orange);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255,96,0,.08);
    cursor: pointer;
}

.search-trigger input {
    flex: 1;
    min-height: 54px;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 18px;
    font: inherit;
    font-size: 15px;
    color: #111827;
    cursor: text;
}

.search-trigger input::placeholder {
    color: #98a2b3;
}

.search-trigger-btn {
    width: 58px;
    min-width: 58px;
    height: 54px;
    border: 0;
    background: linear-gradient(135deg, var(--hdr-orange), var(--hdr-orange-dark));
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 16px 16px 0;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.48);
    opacity: 0;
    visibility: hidden;
    transition: .18s ease;
    z-index: 1200;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-panel {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: min(1180px, calc(100vw - 28px));
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--hdr-shadow-2);
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    overflow: hidden;
}

.search-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.search-panel-head {
    background: #ff2028;
    padding: 14px 22px;
}

.search-panel-form {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 56px;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
}

.search-panel-form input {
    flex: 1;
    min-height: 56px;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 22px;
    font: inherit;
    font-size: 16px;
    color: #111827;
}

.search-panel-form button {
    width: 58px;
    min-width: 58px;
    height: 56px;
    border: 0;
    background: transparent;
    color: #ff2028;
    font-size: 24px;
    cursor: pointer;
}

.search-panel-body {
    padding: 22px 26px 18px;
}

.search-history-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.search-side-title,
.search-main-block h4 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #26457a;
    font-weight: 800;
}

.search-clear-btn {
    border: 0;
    background: transparent;
    color: #3b82f6;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
}

.search-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #dbe4f0;
    background: #fff;
    color: #526381;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.search-panel-grid {
    display: grid;
    grid-template-columns: 180px minmax(0,1fr);
    gap: 24px;
    align-items: start;
}

.search-side,
.search-main,
.search-main-block,
.search-product-content {
    min-width: 0;
}

.search-cat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 8px;
}

.search-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #dbe4f0;
    background: #fff;
    color: #526381;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: max-content;
    max-width: 100%;
}

.search-main-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.search-product-list {
    display: grid;
    gap: 10px;
}

.search-product-item {
    display: grid;
    grid-template-columns: 72px minmax(0,1fr);
    gap: 12px;
    text-decoration: none;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    padding: 12px;
    color: #101828;
    background: #fff;
}

.search-product-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-product-thumb img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.search-product-brand {
    font-size: 13px;
    font-weight: 800;
    color: #26457a;
    margin-bottom: 4px;
}

.search-product-name {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5d79;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-panel-footer {
    background: #ff2028;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.search-panel-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.header-user,
.header-mini-cart,
.dropdown-user {
    position: relative;
}

.header-icon {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--hdr-line);
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(16,24,40,.04);
}

.header-icon.cart {
    background: var(--hdr-soft);
    border-color: #ffd7bf;
}

.header-icon-emoji {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.cart-count {
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--hdr-orange);
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.user-dropdown-menu,
.mini-cart-dropdown,
.dropdown-menu,
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--hdr-line);
    border-radius: 18px;
    box-shadow: var(--hdr-shadow);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
}

.user-dropdown-menu,
.mini-cart-dropdown {
    right: 0;
}

.dropdown-user:hover .user-dropdown-menu,
.dropdown-user:hover .mini-cart-dropdown,
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu {
    min-width: 220px;
    padding: 10px;
}

.user-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.user-dropdown-menu a:hover,
.dropdown-menu a:hover,
.nav-dropdown a:hover {
    background: #f8fafc;
}

.mini-cart-dropdown {
    width: 330px;
    min-width: 330px;
    padding: 10px;
}

.header-nav {
    background: #fff;
    border-bottom: 1px solid var(--hdr-line);
    position: relative;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 54px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-inner::-webkit-scrollbar {
    display: none;
}

.nav-item,
.nav-inner > a {
    position: relative;
    flex: 0 0 auto;
}

.nav-inner > a,
.nav-item > span,
.nav-item > a {
    text-decoration: none;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
}

.mega-trigger {
    padding: 0 18px;
    min-height: 40px !important;
    margin: 7px 0;
    border-radius: 14px;
    background: #fff4ec;
    color: #c2410c !important;
    cursor: pointer;
    user-select: none;
}

.mega-trigger .caret {
    font-size: 12px;
    margin-left: 8px;
}

.mega-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.18);
    opacity: 0;
    visibility: hidden;
    transition: .18s ease;
    z-index: 1190;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: min(1220px, calc(100vw - 24px));
    background: #fff;
    border: 1px solid var(--hdr-line);
    border-radius: 0 0 22px 22px;
    box-shadow: var(--hdr-shadow-2);
    z-index: 1210;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
    overflow: hidden;
}



.dropdown-menu,
.nav-dropdown {
    left: 0;
    min-width: 240px;
    padding: 10px;
}

.dropdown-menu a,
.nav-dropdown a {
    display: block;
    break-inside: avoid;
    margin-bottom: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .search-panel-grid {
        grid-template-columns: 1fr;
    }

    .search-main-columns {
        grid-template-columns: 1fr;
    }

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

    .mega-featured-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 1100px) {
    .header-main-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px 0;
    }

    .logo {
        justify-self: start;
    }

    .header-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
    }

    .mega-menu {
        width: min(1000px, calc(100vw - 24px));
    }
}

@media (max-width: 768px) {
    .top-strip-inner {
        min-height: auto;
        padding: 8px 0;
    }

    .top-strip-left,
    .top-strip-right {
        width: 100%;
        justify-content: center;
    }

    .header-icon {
        min-height: 48px;
        padding: 0 14px;
    }

    .mini-cart-dropdown {
        right: auto;
        left: 0;
        width: min(330px, calc(100vw - 32px));
        min-width: min(330px, calc(100vw - 32px));
    }

    .search-panel {
        top: 10px;
        width: calc(100vw - 12px);
        border-radius: 18px;
    }

    .search-panel-body {
        padding: 16px;
    }

    .search-panel-head {
        padding: 12px;
    }

    .search-panel-footer {
        padding: 10px 14px;
    }

    .mega-menu {
        width: calc(100vw - 12px);
        left: 6px;
        border-radius: 18px;
        position: fixed;
        top: 110px;
        max-height: calc(100vh - 130px);
        overflow: auto;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mega-left {
        border-right: 0;
        border-bottom: 1px solid var(--hdr-line);
    }

    .mega-featured-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .nav-inner {
        gap: 16px;
        min-height: 50px;
    }
}

@media (max-width: 520px) {
    .search-history-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .mega-featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
/* =========================================================
   FOOTER ELITE UPGRADE
   ========================================================= */

.footer-elite{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(255,96,0,.06), transparent 20%),
        linear-gradient(180deg,#ffffff 0%, #fbfcfe 100%);
}

.footer-elite-top{
    display:grid;
    grid-template-columns: 1fr 1.15fr;
    gap:24px;
    padding:8px 0 10px;
}

.footer-brand-box{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow);
}

.footer-brand-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}

.footer-brand-pills span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 12px;
    border-radius:999px;
    background:#fff3e1;
    color:#9a5b07;
    font-size:12px;
    font-weight:800;
}

.footer-live-showcase{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

.footer-live-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:18px;
}

.footer-mini-kicker{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:#eef4ff;
    color:#1d4ed8;
    font-size:12px;
    font-weight:800;
    margin-bottom:10px;
}

.footer-live-head h3{
    margin:0;
    font-size:24px;
    line-height:1.15;
    color:#0f172a;
    letter-spacing:-0.02em;
}

.footer-slider-nav{
    display:flex;
    gap:8px;
}

.footer-slider-btn{
    width:38px;
    height:38px;
    border:1px solid var(--line);
    background:#fff;
    border-radius:12px;
    cursor:pointer;
    font-size:18px;
    font-weight:800;
    color:#111827;
    transition:.2s ease;
}

.footer-slider-btn:hover{
    background:#fff3e1;
    color:#9a5b07;
}

.footer-live-slider{
    overflow-x:auto;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.footer-live-slider::-webkit-scrollbar{
    display:none;
}

.footer-live-track{
    display:flex;
    gap:14px;
}

.footer-live-card{
    min-width:250px;
    max-width:250px;
    flex:0 0 250px;
    display:grid;
    grid-template-columns:78px minmax(0,1fr);
    gap:12px;
    text-decoration:none;
    background:#f8fafc;
    border:1px solid #e7edf5;
    border-radius:18px;
    padding:12px;
    transition:.22s ease;
}

.footer-live-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-2);
    border-color:#d8e1ec;
}

.footer-live-thumb{
    width:78px;
    height:78px;
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.footer-live-thumb img{
    width:88%;
    height:88%;
    object-fit:contain;
}

.footer-live-body{
    min-width:0;
}

.footer-live-brand{
    font-size:12px;
    font-weight:800;
    color:#2563eb;
    margin-bottom:4px;
}

.footer-live-title{
    font-size:14px;
    line-height:1.45;
    color:#0f172a;
    font-weight:700;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:40px;
}

.footer-live-price{
    margin-top:8px;
    font-size:16px;
    font-weight:900;
    color:var(--primary);
}

.footer-live-empty{
    padding:16px;
    color:var(--muted);
    font-size:14px;
}

.footer-grid-elite{
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap:24px;
    padding-top:20px;
}

.footer-live-orders-col{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:18px;
    box-shadow:var(--shadow);
}

.footer-orders-feed{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-order-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid #edf2f7;
}

.footer-order-dot{
    width:10px;
    height:10px;
    border-radius:999px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    margin-top:6px;
    flex-shrink:0;
    box-shadow:0 0 0 6px rgba(34,197,94,.10);
}

.footer-order-text strong{
    display:block;
    margin-bottom:4px;
    font-size:13px;
    font-weight:800;
    color:#0f172a;
}

.footer-order-text span{
    display:block;
    font-size:13px;
    line-height:1.6;
    color:var(--muted);
}

@media (max-width: 1200px){
    .footer-elite-top{
        grid-template-columns:1fr;
    }

    .footer-grid-elite{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px){
    .footer-live-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-grid-elite{
        grid-template-columns:1fr;
    }

    .footer-live-card{
        min-width:220px;
        max-width:220px;
        flex-basis:220px;
    }
}
.site-footer{
    background:#0f172a;
    color:#cbd5f5;
    padding:60px 0 0;
    font-size:14px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
}

.footer-logo{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
}

.logo-main{color:#000;}
.logo-accent{color:#ff6000;}

.footer-desc{
    color:#94a3b8;
    line-height:1.6;
    margin-bottom:15px;
}

.footer-col h4{
    color:#fff;
    margin-bottom:14px;
    font-size:15px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:8px;
}

.footer-col a{
    color:#94a3b8;
    text-decoration:none;
    transition:0.2s;
}

.footer-col a:hover{
    color:#fff;
    padding-left:4px;
}

/* SOSYAL */
.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:#1e293b;
    color:#fff;
    transition:0.2s;
}

.footer-social a:hover{
    background:#ff6000;
    transform:translateY(-2px);
}

/* NEWSLETTER */
.newsletter-form{
    display:flex;
    gap:8px;
    margin-bottom:8px;
}

.newsletter-form input{
    flex:1;
    height:42px;
    border-radius:8px;
    border:1px solid #1e293b;
    background:#020617;
    color:#fff;
    padding:0 10px;
}

.newsletter-form button{
    background:#ff6000;
    border:none;
    color:#fff;
    padding:0 14px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
}

/* ALT BAR */
.footer-bottom{
    border-top:1px solid #1e293b;
    margin-top:40px;
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#94a3b8;
}

.footer-badges{
    display:flex;
    gap:12px;
}	
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 240px;
    height: 70px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.logo svg,
.logo img {
    display: block;
    width: 235px;
    max-width: 100%;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

.header-main-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 250px minmax(360px, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.search-box-live,
.search-box {
    width: 100%;
    min-width: 0;
}
@media (max-width: 900px) {
    .header-main-inner {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .logo {
        min-width: 0;
        height: 58px;
    }

    .logo svg,
    .logo img {
        width: 205px;
        max-height: 54px;
    }

    .search-box-live {
        grid-column: 1 / -1;
    }
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 13px;
}

.powered-by-kktcsoft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 11px 6px 7px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255,122,0,.12), rgba(255,60,0,.08));
    border: 1px solid rgba(255,106,0,.28);
    box-shadow: 0 8px 20px rgba(255,106,0,.10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    animation: kktcsoftPulse 2.8s ease-in-out infinite;
}

.powered-by-kktcsoft:hover {
    transform: translateY(-2px);
    border-color: rgba(255,106,0,.55);
    box-shadow: 0 12px 30px rgba(255,106,0,.24);
}

.powered-mini {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3af;
}

.kktcsoft-mark {
    width: 24px;
    height: 24px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffb000, #ff6a00 55%, #ff3c00);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

.kktcsoft-name {
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .02em;
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-right span {
    font-size: 12px;
    font-weight: 800;
    color: #374151;
}

@keyframes kktcsoftPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255,106,0,.10);
    }
    50% {
        box-shadow: 0 8px 26px rgba(255,106,0,.28);
    }
}

@media (max-width: 768px) {
    .footer-bottom,
    .footer-signature,
    .footer-bottom-right {
        justify-content: center;
        text-align: center;
    }
}