/* =====================================================
   DSP Website — Stylesheet
   Brand colors: #0d2b7d (primary), #1a4fbf (secondary),
   #0a1f5c (dark), #f59e0b (amber accent)
   ===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    color: #1f2937; background: #fff; line-height: 1.6; font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
.main-content { min-height: 50vh; }

/* ---------- Typography ---------- */
h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.75rem; font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 700; }
@media (min-width: 1024px) { h1 { font-size: 2.5rem; } h2 { font-size: 2.25rem; } }
.text-blue { color: #2563eb; }
.text-gray { color: #6b7280; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px;
    font-weight: 600; font-size: 0.875rem; transition: all 0.2s;
    border: 2px solid transparent; cursor: pointer; text-align: center;
}
.btn--primary { background: #0d2b7d; color: #fff; }
.btn--primary:hover { background: #1a4fbf; }
.btn--amber { background: #f59e0b; color: #78350f; }
.btn--amber:hover { background: #fbbf24; }
.btn--outline { background: #fff; color: #374151; border-color: #e5e7eb; }
.btn--outline:hover { background: #f9fafb; }
.btn--sm { padding: 8px 16px; font-size: 0.8125rem; }
.btn--block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- Top Bar ---------- */
.top-bar { background: #0d2b7d; color: #fff; font-size: 0.8125rem; padding: 8px 0; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar__right { display: flex; gap: 12px; align-items: center; }
.top-bar__right .sep { color: #93c5fd; }
.top-bar__right span { color: #bfdbfe; }
@media (max-width: 767px) { .top-bar { display: none; } }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px); border-bottom: 1px solid #f3f4f6; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 1024px) { .navbar__inner { height: 80px; } }
.navbar__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar__logo-img { height: 40px; width: auto; object-fit: contain; }
@media (min-width: 1024px) { .navbar__logo-img { height: 48px; } }
.navbar__logo-text { display: none; }
@media (min-width: 640px) { .navbar__logo-text { display: flex; flex-direction: column; } }
.navbar__logo-name { font-weight: 700; color: #0d2b7d; font-size: 1rem; line-height: 1.2; }
@media (min-width: 1024px) { .navbar__logo-name { font-size: 1.125rem; } }
.navbar__logo-sub { font-size: 0.6875rem; color: #6b7280; line-height: 1.2; }
@media (min-width: 1024px) { .navbar__logo-sub { font-size: 0.75rem; } }

.navbar__menu { display: none; gap: 4px; }
@media (min-width: 1024px) { .navbar__menu { display: flex; align-items: center; } }
.navbar__menu a {
    padding: 8px 16px; border-radius: 8px; font-size: 0.875rem; font-weight: 500;
    color: #374151; transition: all 0.2s;
}
.navbar__menu a:hover, .navbar__menu a.active { color: #0d2b7d; background: #eff6ff; }

.navbar__actions { display: flex; align-items: center; gap: 8px; }
@media (min-width: 640px) { .navbar__actions { gap: 12px; } }
.navbar__cart { position: relative; padding: 8px; font-size: 1.375rem; }
.cart-badge {
    position: absolute; top: -4px; right: -4px;
    background: #ef4444; color: #fff; font-size: 0.625rem; font-weight: 700;
    border-radius: 50%; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
}
.navbar__partner-btn { display: none; }
@media (min-width: 640px) { .navbar__partner-btn { display: inline-flex; } }
.navbar__toggle { display: none; font-size: 1.5rem; padding: 8px; }
@media (max-width: 1023px) { .navbar__toggle { display: block; } }

.navbar__mobile { display: none; background: #fff; border-top: 1px solid #f3f4f6; padding: 12px 16px; }
.navbar__mobile.open { display: block; }
.navbar__mobile a { display: block; padding: 12px 16px; border-radius: 8px; font-weight: 500; color: #374151; }
.navbar__mobile a:hover, .navbar__mobile a.active { color: #0d2b7d; background: #eff6ff; }
.navbar__mobile .btn { margin: 8px 0; }
.navbar__mobile-contact { border-top: 1px solid #f3f4f6; margin-top: 8px; padding-top: 12px; font-size: 0.875rem; color: #6b7280; }
.navbar__mobile-contact div { margin-bottom: 4px; }

/* ---------- Hero / Banner Slider ---------- */
.hero { position: relative; height: 500px; overflow: hidden; background: #0a1f5c; }
@media (min-width: 640px) { .hero { height: 560px; } }
@media (min-width: 1024px) { .hero { height: 620px; } }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
.hero__slide.active { opacity: 1; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,31,92,0.9), rgba(10,31,92,0.7), transparent); }
.hero__content { position: relative; height: 100%; display: flex; align-items: center; }
.hero__text { max-width: 640px; color: #fff; }
.hero__badge { display: inline-block; background: #f59e0b; color: #78350f;
    font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; }
.hero__title { font-size: 1.875rem; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
@media (min-width: 640px) { .hero__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3rem; } }
.hero__subtitle { font-size: 1.125rem; color: #bfdbfe; margin-bottom: 16px; }
@media (min-width: 640px) { .hero__subtitle { font-size: 1.25rem; } }
.hero__desc { font-size: 0.875rem; color: #e5e7eb; margin-bottom: 24px; max-width: 36rem; }
@media (min-width: 640px) { .hero__desc { font-size: 1rem; } }

.hero__nav { position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.2); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; transition: background 0.2s; }
.hero__nav:hover { background: rgba(255,255,255,0.4); }
.hero__nav--prev { left: 16px; }
.hero__nav--next { right: 16px; }
.hero__dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero__dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.5); transition: all 0.3s; }
.hero__dot.active { width: 32px; background: #f59e0b; }

/* ---------- Trust Bar ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid #f3f4f6; }
.trust-bar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px 0; }
@media (min-width: 1024px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item__icon { width: 44px; height: 44px; border-radius: 12px; background: #eff6ff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.375rem; }
.trust-item__title { font-weight: 600; font-size: 0.875rem; color: #111827; }
.trust-item__desc { font-size: 0.75rem; color: #6b7280; }

/* ---------- Section ---------- */
.section { padding: 64px 0; }
@media (min-width: 1024px) { .section { padding: 80px 0; } }
.section--gray { background: #f9fafb; }
.section--dark { background: #0a1f5c; color: #fff; }
.section__heading { text-align: center; margin-bottom: 48px; }
.section__label { font-size: 0.875rem; font-weight: 600; color: #2563eb; text-transform: uppercase; letter-spacing: 0.05em; }
.section__title { font-size: 1.875rem; font-weight: 700; color: #111827; margin-top: 8px; }
@media (min-width: 1024px) { .section__title { font-size: 2.25rem; } }
.section__subtitle { color: #6b7280; margin-top: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section--dark .section__title { color: #fff; }
.section--dark .section__subtitle { color: #bfdbfe; }

/* ---------- Category Grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.cat-card {
    background: #fff; border-radius: 16px; padding: 24px;
    border: 1px solid #f3f4f6; transition: all 0.3s; cursor: pointer;
    display: block; text-align: left;
}
.cat-card:hover { border-color: #93c5fd; box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.cat-card__icon { width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.625rem; margin-bottom: 16px; transition: all 0.3s; }
.cat-card:hover .cat-card__icon { background: linear-gradient(135deg, #0d2b7d, #1a4fbf); }
.cat-card__name { font-weight: 600; font-size: 0.875rem; color: #111827; }
.cat-card__desc { font-size: 0.75rem; color: #6b7280; margin-top: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Product Grid & Cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.product-grid--compact { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .product-grid--compact { grid-template-columns: repeat(4, 1fr); } }

.product-card {
    background: #fff; border-radius: 16px; border: 1px solid #f3f4f6;
    overflow: hidden; transition: all 0.3s; cursor: pointer;
    display: flex; flex-direction: column; position: relative;
}
.product-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.1); border-color: #bfdbfe; }
.product-card__image { position: relative; aspect-ratio: 1; background: linear-gradient(135deg, #f9fafb, #f3f4f6); overflow: hidden; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 3rem; font-weight: 700; color: #d1d5db; }
.product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.badge { font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.badge--discount { background: #ef4444; color: #fff; }
.badge--featured { background: #f59e0b; color: #78350f; }
.product-card__out { position: absolute; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center; }
.product-card__out-text { background: #fff; color: #111827; padding: 6px 16px; border-radius: 999px;
    font-size: 0.875rem; font-weight: 600; }
.product-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-card__category { font-size: 0.6875rem; font-weight: 500; color: #2563eb; text-transform: uppercase; letter-spacing: 0.03em; }
.product-card__name { font-weight: 600; font-size: 0.875rem; color: #111827; margin-top: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__desc { font-size: 0.75rem; color: #6b7280; margin-top: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__footer { margin-top: 12px; padding-top: 12px; border-top: 1px solid #f9fafb;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.product-card__price { font-size: 1.125rem; font-weight: 700; color: #0d2b7d; }
.product-card__old-price { font-size: 0.75rem; color: #9ca3af; text-decoration: line-through; }
.product-card__add { width: 36px; height: 36px; border-radius: 8px; background: #eff6ff; color: #0d2b7d;
    display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.2s; }
.product-card__add:hover { background: #0d2b7d; color: #fff; }
.product-card__add:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- Featured section header ---------- */
.section-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.section-flex__link { display: inline-flex; align-items: center; gap: 8px; color: #0d2b7d; font-weight: 600; }
.section-flex__link:hover { gap: 12px; transition: gap 0.2s; }

/* ---------- CTA Banner ---------- */
.cta-banner { position: relative; padding: 64px 0; background: #0a1f5c; overflow: hidden; }
@media (min-width: 1024px) { .cta-banner { padding: 96px 0; } }
.cta-banner__bg { position: absolute; inset: 0; opacity: 0.1; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__content { position: relative; text-align: center; max-width: 800px; margin: 0 auto; color: #fff; }
.cta-banner__title { font-size: 1.875rem; font-weight: 700; margin-bottom: 16px; }
@media (min-width: 1024px) { .cta-banner__title { font-size: 2.25rem; } }
.cta-banner__text { font-size: 1.125rem; color: #bfdbfe; margin-bottom: 32px; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__value { font-size: 2.5rem; font-weight: 700; color: #0d2b7d; }
@media (min-width: 1024px) { .stat__value { font-size: 3rem; } }
.stat__label { font-size: 0.875rem; color: #6b7280; margin-top: 8px; }
.section--dark .stat__value { color: #f59e0b; }
.section--dark .stat__label { color: #bfdbfe; }

/* ---------- Blog Preview Cards ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #f3f4f6;
    transition: all 0.3s; display: block; }
.blog-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.blog-card__image { aspect-ratio: 16/10; overflow: hidden; background: #f3f4f6; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 20px; }
.blog-card__category { font-size: 0.75rem; font-weight: 600; color: #2563eb; text-transform: uppercase; }
.blog-card__title { font-weight: 600; color: #111827; margin-top: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__excerpt { font-size: 0.875rem; color: #6b7280; margin-top: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__more { margin-top: 16px; font-size: 0.75rem; color: #2563eb; font-weight: 600; }

/* ---------- Contact strip ---------- */
.contact-strip { background: linear-gradient(to right, #0d2b7d, #1a4fbf); padding: 48px 0; }
.contact-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: #fff; }
.contact-strip__info { display: flex; align-items: center; gap: 16px; }
.contact-strip__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.contact-strip__title { font-size: 1.125rem; font-weight: 600; }
.contact-strip__sub { font-size: 0.875rem; color: #bfdbfe; }
.contact-strip__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-strip__btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #0d2b7d;
    font-weight: 600; padding: 10px 20px; border-radius: 12px; transition: all 0.2s; }
.contact-strip__btn:hover { background: #f59e0b; color: #78350f; }

/* ---------- Page Header ---------- */
.page-header { background: linear-gradient(to right, #0a1f5c, #1a4fbf); color: #fff; padding: 48px 0; }
.page-header h1 { color: #fff; }
.page-header__sub { color: #bfdbfe; margin-top: 8px; font-size: 1rem; }

/* ---------- Shop Sidebar ---------- */
.shop-layout { display: flex; gap: 24px; padding: 32px 0; align-items: flex-start; }
.shop-sidebar { width: 100%; }
@media (min-width: 1024px) { .shop-sidebar { width: 256px; flex-shrink: 0; } }
.shop-sidebar__panel { background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 20px; position: sticky; top: 96px; }
.shop-sidebar__heading { font-weight: 600; color: #111827; margin-bottom: 16px; }
.shop-sidebar__cat { display: block; width: 100%; text-align: left; padding: 8px 12px; border-radius: 8px;
    font-size: 0.875rem; color: #4b5563; transition: all 0.2s; }
.shop-sidebar__cat:hover { background: #f9fafb; }
.shop-sidebar__cat.active { background: #eff6ff; color: #0d2b7d; font-weight: 500; }
.shop-main { flex: 1; min-width: 0; }

/* ---------- Shop search bar ---------- */
.shop-search-bar { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.shop-search { position: relative; flex: 1; }
.shop-search input { width: 100%; padding: 12px 16px 12px 40px; border-radius: 12px;
    border: 1px solid #e5e7eb; font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
.shop-search input:focus { border-color: #60a5fa; }
.shop-search__icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #9ca3af; }
.shop-sort { padding: 12px 16px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; font-size: 0.875rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 10px 16px; border-radius: 12px;
    border: 1px solid #e5e7eb; font-size: 0.875rem; outline: none;
    transition: border-color 0.2s; background: #fff;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #60a5fa; }
.form-textarea { resize: vertical; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Contact Page ---------- */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 24px; text-align: center; }
.contact-card__icon { width: 56px; height: 56px; border-radius: 16px; background: #eff6ff;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.625rem; color: #0d2b7d; }
.contact-card__title { font-weight: 600; color: #111827; margin-bottom: 8px; }
.contact-card__line { font-size: 0.875rem; color: #6b7280; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-form-panel { background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 32px; }
.form-success { background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 12px; padding: 16px;
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #065f46; font-size: 0.875rem; }

.inquiry-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 640px) { .inquiry-types { grid-template-columns: repeat(5, 1fr); } }
.inquiry-type-btn { padding: 8px; border-radius: 8px; font-size: 0.75rem; font-weight: 500;
    background: #f3f4f6; color: #4b5563; transition: all 0.2s; }
.inquiry-type-btn.active { background: #0d2b7d; color: #fff; }

/* ---------- Product Detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
@media (min-width: 1024px) { .product-detail { grid-template-columns: 1fr 1fr; gap: 48px; } }
.product-detail__image { border-radius: 24px; overflow: hidden; aspect-ratio: 1;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6); position: relative; }
.product-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__category { font-size: 0.875rem; font-weight: 600; color: #2563eb; text-transform: uppercase; }
.product-detail__name { font-size: 1.5rem; font-weight: 700; color: #111827; margin-top: 8px; }
@media (min-width: 1024px) { .product-detail__name { font-size: 1.875rem; } }
.product-detail__short { color: #4b5563; margin-top: 12px; }
.product-detail__price-row { display: flex; align-items: flex-end; gap: 12px; margin-top: 24px; }
.product-detail__price { font-size: 1.875rem; font-weight: 700; color: #0d2b7d; }
.product-detail__old-price { font-size: 1.125rem; color: #9ca3af; text-decoration: line-through; }
.product-detail__unit { font-size: 0.875rem; color: #6b7280; margin-bottom: 4px; }
.product-detail__stock { display: flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.875rem; }
.stock-in { color: #16a34a; font-weight: 500; }
.stock-out { color: #dc2626; font-weight: 500; }
.qty-selector { display: flex; align-items: center; border: 1px solid #e5e7eb; border-radius: 12px; }
.qty-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    color: #4b5563; font-size: 1.125rem; }
.qty-btn:hover { color: #0d2b7d; }
.qty-display { width: 48px; text-align: center; font-weight: 600; }
.product-detail__actions { display: flex; gap: 12px; margin-top: 32px; }
.product-detail__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-top: 32px; padding-top: 32px; border-top: 1px solid #f3f4f6; }
.trust-mini { text-align: center; }
.trust-mini__icon { font-size: 1.375rem; color: #0d2b7d; margin-bottom: 6px; }
.trust-mini__label { font-size: 0.75rem; color: #4b5563; }
.product-detail__desc { margin-top: 48px; max-width: 768px; }
.product-detail__desc h2 { font-size: 1.25rem; margin-bottom: 16px; }
.product-detail__desc p { color: #4b5563; white-space: pre-wrap; }
.product-detail__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tag { padding: 4px 12px; background: #f3f4f6; color: #4b5563; font-size: 0.75rem; border-radius: 999px; }
.related { margin-top: 64px; }
.related h2 { font-size: 1.25rem; margin-bottom: 24px; }

/* ---------- Cart Page ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 2fr 1fr; } }
.cart-item { display: flex; gap: 16px; background: #fff; border: 1px solid #f3f4f6; border-radius: 16px; padding: 16px; margin-bottom: 12px; }
.cart-item__image { width: 80px; height: 80px; border-radius: 12px; background: #f9fafb; overflow: hidden; flex-shrink: 0; }
@media (min-width: 640px) { .cart-item__image { width: 96px; height: 96px; } }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; font-size: 0.875rem; color: #111827;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item__category { font-size: 0.75rem; color: #2563eb; margin-top: 2px; }
.cart-item__price { font-weight: 700; color: #0d2b7d; margin-top: 4px; font-size: 0.875rem; }
.cart-item__controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-qty { display: flex; align-items: center; border: 1px solid #e5e7eb; border-radius: 8px; }
.cart-qty button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: #4b5563; }
.cart-qty span { width: 40px; text-align: center; font-weight: 600; font-size: 0.875rem; }
.cart-remove { color: #9ca3af; padding: 8px; font-size: 1.125rem; }
.cart-remove:hover { color: #ef4444; }
.cart-item__subtotal { text-align: right; }
.cart-item__subtotal-label { font-size: 0.875rem; color: #6b7280; }
.cart-item__subtotal-value { font-weight: 700; color: #111827; }
.cart-summary { background: #f9fafb; border-radius: 16px; padding: 24px; position: sticky; top: 96px; }
.cart-summary h2 { font-size: 1.125rem; margin-bottom: 16px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 8px; }
.cart-summary__total { border-top: 1px solid #e5e7eb; margin-top: 16px; padding-top: 16px;
    display: flex; justify-content: space-between; align-items: flex-end; }
.cart-summary__total-value { font-size: 1.5rem; font-weight: 700; color: #0d2b7d; }
.cart-empty { text-align: center; padding: 80px 16px; }
.cart-empty__icon { width: 80px; height: 80px; border-radius: 50%; background: #f3f4f6;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 2.25rem; }
.cart-empty h1 { font-size: 1.5rem; margin-bottom: 8px; }
.cart-empty p { color: #6b7280; margin-bottom: 24px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .checkout-layout { grid-template-columns: 2fr 1fr; } }
.checkout-panel { background: #fff; border: 1px solid #f3f4f6; border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.checkout-panel h2 { font-size: 1.125rem; margin-bottom: 16px; }
.order-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.order-type-btn { padding: 12px; border-radius: 12px; border: 2px solid #e5e7eb; font-weight: 500;
    font-size: 0.875rem; color: #4b5563; transition: all 0.2s; text-align: center; }
.order-type-btn.active { border-color: #0d2b7d; background: #eff6ff; color: #0d2b7d; }
.checkout-summary { background: #f9fafb; border-radius: 16px; padding: 24px; position: sticky; top: 96px; }
.checkout-summary__items { max-height: 256px; overflow-y: auto; margin-bottom: 16px; }
.checkout-summary__item { display: flex; gap: 12px; font-size: 0.875rem; margin-bottom: 12px; }
.checkout-summary__item img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.checkout-success { text-align: center; max-width: 640px; margin: 80px auto; }
.checkout-success__icon { width: 80px; height: 80px; border-radius: 50%; background: #ecfdf5;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 2.5rem; }

/* ---------- Footer ---------- */
.footer { background: #0a1f5c; color: #d1d5db; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 48px; } }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo { height: 48px; background: #fff; border-radius: 4px; padding: 4px; }
.footer__brand-name { font-weight: 700; color: #fff; font-size: 0.875rem; }
.footer__brand-sub { font-size: 0.75rem; color: #93c5fd; }
.footer__about { font-size: 0.875rem; color: #9ca3af; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700;
    font-size: 0.875rem; transition: background 0.2s; }
.footer__social-link.fb:hover { background: #1877f2; }
.footer__social-link.tg:hover { background: #0088cc; }
.footer__social-link.tt:hover { background: #111; }
.footer__heading { font-weight: 600; color: #fff; font-size: 0.875rem; text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 16px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: #9ca3af; font-size: 0.875rem; }
.footer__links a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; color: #9ca3af; }
.footer__contact-icon { flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
    font-size: 0.75rem; color: #6b7280; }
.footer__bottom-right { display: flex; gap: 16px; }
.footer__bottom-right a { color: #6b7280; }
.footer__bottom-right a:hover { color: #fff; }

/* ---------- Blog Page ---------- */
.blog-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .blog-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-list { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Blog Detail ---------- */
.blog-detail { max-width: 800px; margin: 0 auto; padding: 32px 0; }
.blog-detail__image { border-radius: 16px; overflow: hidden; margin-bottom: 24px; aspect-ratio: 16/9; }
.blog-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail__meta { font-size: 0.875rem; color: #6b7280; margin-bottom: 16px; }
.blog-detail__content { font-size: 1rem; line-height: 1.8; color: #374151; }
.blog-detail__content p { margin-bottom: 16px; }

/* ---------- About Page ---------- */
.about-hero { position: relative; height: 340px; background: #0a1f5c; overflow: hidden; display: flex; align-items: center; }
.about-hero__bg { position: absolute; inset: 0; opacity: 0.2; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__content { position: relative; color: #fff; max-width: 640px; }
.about-hero__title { font-size: 2rem; font-weight: 700; }
@media (min-width: 1024px) { .about-hero__title { font-size: 2.5rem; } }
.about-hero__sub { font-size: 1.125rem; color: #bfdbfe; margin-top: 12px; }
.about-story { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-story { grid-template-columns: 1fr 1fr; } }
.about-story__text p { color: #4b5563; margin-bottom: 16px; line-height: 1.7; }
.about-story__image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); aspect-ratio: 4/3; }
.about-story__image img { width: 100%; height: 100%; object-fit: cover; }
.mvv-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .mvv-grid { grid-template-columns: repeat(3, 1fr); } }
.mvv-card { background: #fff; border-radius: 16px; padding: 32px; border: 1px solid #f3f4f6; }
.mvv-card__icon { width: 56px; height: 56px; border-radius: 16px; background: #eff6ff;
    display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 20px; }
.mvv-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.mvv-card p { font-size: 0.875rem; color: #4b5563; line-height: 1.7; }

/* ---------- Admin Panel ---------- */
.admin-body { background: #f3f4f6; }
.admin-header { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 100; }
.admin-header__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; height: 64px;
    display: flex; align-items: center; justify-content: space-between; }
.admin-header__brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #0d2b7d; }
.admin-header__brand img { height: 36px; }
.admin-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.admin-nav a { padding: 8px 16px; border-radius: 8px; font-size: 0.8125rem; font-weight: 500; color: #4b5563; }
.admin-nav a:hover { background: #f3f4f6; }
.admin-nav a.active { background: #eff6ff; color: #0d2b7d; }
.admin-logout { font-size: 0.8125rem; color: #ef4444; font-weight: 500; }
.admin-container { max-width: 1400px; margin: 0 auto; padding: 24px; }
.admin-page-title { font-size: 1.5rem; font-weight: 700; color: #111827; margin-bottom: 24px; }

/* Admin stats */
.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
@media (min-width: 1024px) { .admin-stats { grid-template-columns: repeat(4, 1fr); } }
.admin-stat { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid #f3f4f6; }
.admin-stat__icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.25rem; margin-bottom: 8px; }
.admin-stat__value { font-size: 1.25rem; font-weight: 700; color: #111827; }
.admin-stat__label { font-size: 0.75rem; color: #6b7280; }

/* Admin tables */
.admin-table { background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; overflow: hidden; overflow-x: auto; }
.admin-table table { width: 100%; font-size: 0.875rem; }
.admin-table th { background: #f9fafb; color: #4b5563; font-weight: 500; text-align: left; padding: 12px 16px; }
.admin-table td { padding: 12px 16px; border-top: 1px solid #f9fafb; }
.admin-table tr:hover td { background: #f9fafb; }
.admin-table img.thumb { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.status-badge { font-size: 0.75rem; font-weight: 500; padding: 4px 8px; border-radius: 999px; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-processing { background: #e0e7ff; color: #3730a3; }
.status-shipped { background: #d1fae5; color: #065f46; }
.status-delivered { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-active { background: #d1fae5; color: #065f46; }
.status-inactive { background: #f3f4f6; color: #6b7280; }
.status-unread { background: #fee2e2; color: #991b1b; }
.status-read { background: #f3f4f6; color: #6b7280; }

/* Admin actions */
.admin-actions { display: flex; gap: 4px; justify-content: flex-end; }
.admin-action-btn { padding: 8px; border-radius: 8px; color: #9ca3af; }
.admin-action-btn:hover { color: #0d2b7d; background: #eff6ff; }
.admin-action-btn.delete:hover { color: #ef4444; background: #fef2f2; }

/* Admin toolbar */
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; flex-wrap: wrap; }
.admin-search { position: relative; flex: 1; max-width: 320px; }
.admin-search input { width: 100%; padding: 8px 16px 8px 36px; border-radius: 8px; border: 1px solid #e5e7eb; font-size: 0.8125rem; }
.admin-search__icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #9ca3af; }

/* Admin cards */
.admin-card { background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 24px; margin-bottom: 16px; }

/* Admin login */
.admin-login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #0a1f5c; }
.admin-login-box { background: #fff; border-radius: 16px; padding: 40px; width: 100%; max-width: 400px; }
.admin-login-box h1 { font-size: 1.5rem; text-align: center; margin-bottom: 8px; }
.admin-login-box p { text-align: center; color: #6b7280; margin-bottom: 24px; font-size: 0.875rem; }
.admin-login-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; padding: 12px;
    color: #991b1b; font-size: 0.875rem; margin-bottom: 16px; }

/* Admin form panel */
.admin-form-panel { background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 24px; }

/* Image uploader (admin) */
.image-uploader__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
@media (min-width: 640px) { .image-uploader__grid { grid-template-columns: repeat(4, 1fr); } }
.image-uploader__item { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; background: #f9fafb; }
.image-uploader__item img { width: 100%; height: 100%; object-fit: cover; }
.image-uploader__remove { position: absolute; top: 4px; right: 4px; width: 24px; height: 24px;
    border-radius: 50%; background: rgba(239,68,68,0.9); color: #fff; display: flex; align-items: center;
    justify-content: center; font-size: 0.875rem; }
.image-uploader__cover { position: absolute; bottom: 4px; left: 4px; font-size: 0.625rem; background: #2563eb;
    color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: 500; }
.image-uploader__drop { border: 2px dashed #e5e7eb; border-radius: 12px; padding: 32px 16px; text-align: center;
    cursor: pointer; transition: all 0.2s; }
.image-uploader__drop:hover { border-color: #9ca3af; background: #f9fafb; }
.image-uploader__drop.dragover { border-color: #60a5fa; background: #eff6ff; }
.image-uploader__drop-icon { font-size: 1.75rem; margin-bottom: 8px; }
.image-uploader__drop-text { font-size: 0.875rem; font-weight: 500; color: #374151; }
.image-uploader__drop-hint { font-size: 0.75rem; color: #9ca3af; margin-top: 4px; }

/* Bulk edit */
.bulk-bar { position: sticky; bottom: 16px; margin-top: 16px; background: #0d2b7d; color: #fff;
    border-radius: 12px; padding: 12px 20px; display: flex; justify-content: space-between;
    align-items: center; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.bulk-bar__count { font-size: 0.875rem; font-weight: 500; }
.bulk-bar__save { background: #fff; color: #0d2b7d; padding: 8px 16px; border-radius: 8px; font-weight: 700; font-size: 0.875rem; }
.bulk-input { width: 80px; padding: 6px 8px; border-radius: 8px; border: 1px solid #e5e7eb; font-size: 0.75rem; }
.bulk-select { padding: 6px 8px; border-radius: 8px; border: 1px solid #e5e7eb; font-size: 0.75rem; background: #fff; }

/* Admin tabs */
.admin-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.admin-tab { padding: 8px 16px; border-radius: 8px; font-size: 0.8125rem; font-weight: 500;
    background: #fff; color: #4b5563; border: 1px solid #e5e7eb; }
.admin-tab.active { background: #0d2b7d; color: #fff; }

/* Category chips */
.cat-chip { display: inline-flex; align-items: center; gap: 8px; background: #f3f4f6; border: 1px solid #e5e7eb;
    border-radius: 8px; padding: 6px 12px; font-size: 0.875rem; }
.cat-chip__actions { display: flex; gap: 2px; }
.cat-chip__btn { padding: 2px 4px; font-size: 0.75rem; color: #9ca3af; }
.cat-chip__btn:hover { color: #0d2b7d; }
.cat-chip__btn.delete:hover { color: #ef4444; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200;
    display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal { background: #fff; border-radius: 16px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; }
.modal__header { padding: 16px 24px; border-bottom: 1px solid #f3f4f6; display: flex; justify-content: space-between; align-items: center; }
.modal__header h2 { font-size: 1.125rem; }
.modal__close { font-size: 1.5rem; color: #9ca3af; padding: 4px; }
.modal__body { padding: 24px; }
.modal__footer { padding: 16px 24px; border-top: 1px solid #f3f4f6; display: flex; gap: 12px; }

/* Responsive admin nav */
@media (max-width: 768px) {
    .admin-nav { display: none; }
    .admin-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid #e5e7eb; padding: 12px; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .gap-2 { gap: 8px; } .gap-4 { gap: 16px; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.hidden { display: none; }
.text-sm { font-size: 0.875rem; } .text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; } .font-medium { font-weight: 500; }
.text-gray-500 { color: #6b7280; } .text-gray-600 { color: #4b5563; }
.bg-white { background: #fff; } .bg-gray { background: #f9fafb; }
.rounded { border-radius: 8px; }
.w-full { width: 100%; }

/* =====================================================
   ADDITIONAL MOBILE FIXES
   ===================================================== */

/* Fix for mobile menu toggle button */
@media (max-width: 1023px) {
    .navbar__toggle {
        display: block !important;
        font-size: 1.5rem;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        color: #0d2b7d;
    }
    
    .navbar__menu {
        display: none !important;
    }
    
    .navbar__mobile.open {
        display: block !important;
    }
}

/* Fix product grid on mobile */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .product-card__body {
        padding: 10px !important;
    }
    
    .product-card__name {
        font-size: 12px !important;
        min-height: 32px;
    }
    
    .product-card__price {
        font-size: 14px !important;
    }
    
    .product-card__add {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }
}

/* Fix category grid on mobile */
@media (max-width: 480px) {
    .cat-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .cat-card {
        padding: 16px !important;
    }
    
    .cat-card__icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
    
    .cat-card__name {
        font-size: 12px !important;
    }
}

/* Fix hero slider on mobile */
@media (max-width: 640px) {
    .hero {
        height: 300px !important;
    }
    
    .hero__title {
        font-size: 1.25rem !important;
    }
    
    .hero__subtitle {
        font-size: 0.875rem !important;
    }
    
    .hero__desc {
        display: none !important;
    }
    
    .hero__badge {
        font-size: 0.625rem !important;
        padding: 4px 12px !important;
    }
}

/* Fix navbar on mobile */
@media (max-width: 640px) {
    .navbar__logo-text {
        display: none !important;
    }
    
    .navbar__logo-img {
        height: 32px !important;
    }
    
    .navbar__partner-btn {
        display: none !important;
    }
}

/* Fix shop layout on mobile */
@media (max-width: 1024px) {
    .shop-layout {
        flex-direction: column !important;
    }
    
    .shop-sidebar {
        width: 100% !important;
    }
    
    .shop-sidebar__panel {
        position: relative !important;
        top: 0 !important;
    }
}

/* Fix contact form on mobile */
@media (max-width: 640px) {
    .form-grid--2 {
        grid-template-columns: 1fr !important;
    }
    
    .contact-cards {
        grid-template-columns: 1fr !important;
    }
    
    .contact-layout {
        grid-template-columns: 1fr !important;
    }
}

/* Fix footer on mobile */
@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .footer__bottom-inner {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* Fix cart on mobile */
@media (max-width: 640px) {
    .cart-item {
        flex-wrap: wrap !important;
    }
    
    .cart-item__controls {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .cart-item__subtotal {
        width: 100% !important;
        text-align: left !important;
    }
}

/* Fix admin panel on mobile */
@media (max-width: 768px) {
    .admin-header__inner {
        flex-wrap: wrap !important;
        height: auto !important;
        padding: 12px 16px !important;
    }
    
    .admin-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .admin-stat {
        padding: 12px !important;
    }
    
    .admin-stat__value {
        font-size: 1rem !important;
    }
    
    .admin-table {
        font-size: 0.75rem !important;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 8px !important;
    }
}

/* Fix product detail on mobile */
@media (max-width: 640px) {
    .product-detail__actions {
        flex-direction: column !important;
    }
    
    .product-detail__actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .product-detail__trust {
        grid-template-columns: 1fr !important;
    }
}

/* Fix blog on mobile */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fix about page on mobile */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr !important;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fix contact strip on mobile */
@media (max-width: 640px) {
    .contact-strip__inner {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .contact-strip__info {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* Fix order type grid on mobile */
@media (max-width: 480px) {
    .order-type-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fix inquiry types on mobile */
@media (max-width: 480px) {
    .inquiry-types {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Fix trust bar on mobile */
@media (max-width: 640px) {
    .trust-bar__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    
    .trust-item {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* Fix stats grid on mobile */
@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
    
    .stat__value {
        font-size: 1.75rem !important;
    }
}

/* Fix cart summary on mobile */
@media (max-width: 640px) {
    .cart-summary {
        position: relative !important;
        top: 0 !important;
    }
}

/* Fix checkout summary on mobile */
@media (max-width: 640px) {
    .checkout-summary {
        position: relative !important;
        top: 0 !important;
    }
}
