  :root {
    --primary: #044394;
    --accent: #FD5003;
    --accent2: #e8a045;
    --dark: #0d0d1a;
    --bg: #f5f5f7;
    --surface: #ffffff;
    --muted: #6b7280;
    --border: #e4e0d8;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .07);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);
    --ff: 'Sarabun', sans-serif;
    --ff-head: 'Kanit', sans-serif;
    --transition: .28s cubic-bezier(.4, 0, .2, 1);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: var(--ff);
    background: var(--bg);
    color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
    font-size: 16px
  }

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

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

  ul {
    list-style: none
  }

  .topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    padding: 8px 0;
    text-align: center
  }

  .topbar a {
    color: rgba(255, 255, 255, .9);
    margin: 0 12px;
    transition: color .2s
  }

  .topbar a:hover {
    color: #fff
  }

  nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05)
  }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
	justify-content: space-between;
    gap: 24px
  }

  .nav-logo {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary)
  }

  .nav-logo span {
    color: var(--accent)
  }

  .nav-links {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center
  }

  .nav-links a {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    transition: var(--transition)
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: #EFF6FF;
    color: var(--primary)
  }

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

  .nav-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition)
  }

  .nav-btn.outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary)
  }

  .nav-btn.fill {
    background: var(--accent);
    color: #fff
  }

  .nav-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px)
  }

  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #374151
  }

  .hero {
    background: black;
    padding: 72px 24px 64px;
    position: relative;
    overflow: hidden
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 80, 3, .22) 0%, transparent 68%);
    border-radius: 50%
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(4, 67, 148, .3) 0%, transparent 68%);
    border-radius: 50%
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253, 80, 3, .18);
    border: 1px solid rgba(253, 80, 3, .4);
    color: #fca97b;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px
  }

  .hero h1 {
    font-family: var(--ff-head);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px
  }

  .hero h1 span {
    color: var(--accent)
  }

  .hero-desc {
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 560px
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none
  }

  .cta-btn.primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(253, 80, 3, .35)
  }

  .cta-btn.secondary {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3)
  }

  .cta-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08)
  }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .stat {
    text-align: center
  }

  .stat-num {
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: 800;
    color: #fff
  }

  .stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px
  }

  .hero-image {
    position: relative;
    z-index: 1
  }

  .hero-img-wrap {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3
  }

  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }

  .hero-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700
  }

  .section {
    padding: 64px 24px
  }

  .container {
    max-width: 1280px;
    margin: 0 auto
  }

  .section-head {
    text-align: center;
    margin-bottom: 48px
  }

  .section-head h2 {
    font-family: var(--ff-head);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
  }

  .section-head p {
    color: var(--muted);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75
  }

  .divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 14px auto 0
  }

  /* ─── Category Cards ────────────────────────── */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
  }

  .cat-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column
  }

  .cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
  }

  .cat-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f4ff
  }

  .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
  }

  .cat-card:hover .cat-img img {
    transform: scale(1.07)
  }

  .cat-body {
    padding: 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
  }

  .cat-body h3 {
    font-family: var(--ff-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark)
  }

  .cat-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1
  }

  .cat-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    margin-top: 8px
  }

  .cat-btn:hover {
    filter: brightness(1.12)
  }

  .trust-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
  }

  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px
  }

  .trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EFF6FF;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
  }

  .trust-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark)
  }

  .trust-text span {
    font-size: 12px;
    color: var(--muted)
  }

  .product-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap
  }

  .product-count {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .prod-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 44% 56%;
    transition: var(--transition);
    position: relative
  }

  .prod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
  }

  .prod-img {
    overflow: hidden;
    background: #f5f5f7;
    position: relative
  }

  .prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    aspect-ratio: 1
  }

  .prod-card:hover .prod-img img {
    transform: scale(1.06)
  }

  .prod-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2
  }

  .prod-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px
  }

  .prod-body h3 {
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
  }

  .prod-sub {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
  }

  .prod-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto
  }

  .prod-spec {
    background: #EFF6FF;
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500
  }

  .prod-price {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent)
  }

  .prod-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px
  }

  .prod-actions a {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
    min-width: 0
  }

  .prod-actions .btn-buy {
    background: var(--accent);
    color: #fff
  }

  .prod-actions .btn-quote {
    background: var(--primary);
    color: #fff
  }

  .prod-actions .btn-view {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--primary)
  }

  .prod-actions a:hover {
    filter: brightness(1.1)
  }

  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px
  }

  .page-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: #374151;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition)
  }

  .page-btn:hover,
  .page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
  }

  .page-btn:disabled {
    opacity: .4;
    cursor: default
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
  }

  .about-content h2 {
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px
  }

  .about-content p {
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px
  }

  .check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px
  }

  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #374151
  }

  .check-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0
  }

  .highlight-box {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-left: 4px solid var(--accent2);
    padding: 20px 22px;
    border-radius: 0 12px 12px 0;
    margin-top: 24px
  }

  .highlight-box p {
    color: #78350f;
    font-size: 15px;
    line-height: 1.8;
    margin: 0
  }

  .about-cards {
    display: flex;
    flex-direction: column;
    gap: 16px
  }

  .about-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition)
  }

  .about-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px)
  }

  .about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0
  }

  .about-card h4 {
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
  }

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

  .cta-section {
    background: black;
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
  }

  .cta-section h2 {
    font-family: var(--ff-head);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px
  }

  .cta-section p {
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.7
  }

  .cta-contact-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none
  }

  .contact-btn.line {
    background: #06C755;
    color: #fff;
    box-shadow: 0 6px 20px rgba(6, 199, 85, .3)
  }

  .contact-btn.phone {
    background: var(--accent2);
    color: #fff;
    box-shadow: 0 6px 20px rgba(232, 160, 69, .3)
  }

  .contact-btn.fb {
    background: #1877F2;
    color: #fff;
    box-shadow: 0 6px 20px rgba(24, 119, 242, .3)
  }

  .contact-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1)
  }

  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
  }

  .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition)
  }

  .faq-item.open {
    box-shadow: var(--shadow)
  }

  .faq-q {
    width: 100%;
    padding: 20px 22px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    text-align: left
  }

  .faq-q h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #EFF6FF;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform .3s ease
  }

  .faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    padding: 0 22px
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 22px 20px
  }

  .faq-a p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8
  }

  .mini-cats {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow)
  }

  .mini-cats h2 {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark)
  }

  .mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
  }

  .mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer
  }

  .mini-item:hover {
    background: #EFF6FF
  }

  .mini-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f7;
    flex-shrink: 0
  }

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

  .mini-item span {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.3
  }

  footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    padding: 48px 24px 0
  }

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

  .footer-brand .logo {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px
  }

  .footer-brand .logo span {
    color: var(--accent)
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    margin-bottom: 10px;
    transition: .2s
  }

  .footer-contact a:hover {
    color: #fff
  }

  footer h4 {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
  }

  .footer-links li {
    margin-bottom: 8px
  }

  .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    transition: .2s
  }

  .footer-links a:hover {
    color: #fff
  }

  .social-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
  }

  .social-btn:hover {
    background: var(--accent);
    color: #fff
  }

  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4)
  }

  .float-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999
  }

  .float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    color: #fff
  }

  .float-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25)
  }

  .float-btn.line {
    background: #06C755
  }

  .float-btn.phone {
    background: var(--accent)
  }

  .float-btn.top {
    background: var(--dark);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s
  }

  .float-btn.top.show {
    opacity: 1;
    pointer-events: auto
  }

  .skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px
  }

  @keyframes shimmer {
    0% {
      background-position: 200% 0
    }

    100% {
      background-position: -200% 0
    }
  }

  .skel-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 44% 56%;
    box-shadow: var(--shadow)
  }

  .skel-img {
    aspect-ratio: 1
  }

  .skel-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px
  }

  .skel-line {
    height: 12px
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(28px)
    }

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

  .fade-up {
    animation: fadeUp .6s ease both
  }

  .fade-up:nth-child(2) {
    animation-delay: .08s
  }

  .fade-up:nth-child(3) {
    animation-delay: .16s
  }

  .fade-up:nth-child(4) {
    animation-delay: .24s
  }

  .fade-up:nth-child(5) {
    animation-delay: .32s
  }

  .fade-up:nth-child(6) {
    animation-delay: .4s
  }

  @media(max-width:1100px) {
    .cat-grid {
      grid-template-columns: repeat(3, 1fr)
    }

    .mini-grid {
      grid-template-columns: repeat(4, 1fr)
    }

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

  @media(max-width:860px) {
    .hero-inner {
      grid-template-columns: 1fr
    }

    .hero-image {
      display: none
    }

    .about-grid {
      grid-template-columns: 1fr
    }

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

    .product-grid {
      grid-template-columns: 1fr
    }

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

    .nav-links {
      display: none
    }

    .hamburger {
      display: block
    }
  }

  @media(max-width:640px) {
    .section {
      padding: 48px 16px
    }

    .cat-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px
    }

    .mini-grid {
      grid-template-columns: repeat(3, 1fr)
    }

    .trust-inner {
      justify-content: flex-start
    }

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

    .cta-contact-btns {
      flex-direction: column;
      align-items: center
    }

    .hero-stats {
      gap: 20px
    }

    .prod-card {
      grid-template-columns: 40% 60%
    }
  }

  /* Mobile nav */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
    display: none;
    justify-content: flex-end
  }

  .mobile-nav.open {
    display: flex
  }

  .mobile-nav-panel {
    background: #fff;
    width: 280px;
    height: 100%;
    padding: 32px 20px;
    overflow-y: auto;
    animation: slideIn .3s ease
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%)
    }

    to {
      transform: translateX(0)
    }
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 24px
  }

  .mobile-nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    transition: .2s
  }

  .mobile-nav-links a:hover {
    background: #EFF6FF;
    color: var(--primary)
  }

  .btn-compare.active {
    background: #044394;
    color: #fff;
  }

  .btn-wishlist.active {
    color: red;
  }

  .btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #444;
    cursor: pointer;
    transition: all .2s ease;
  }

  .btn-action i {
    font-size: 12px;
  }

  .btn-action:hover {
    background: #f3f4f6;
  }

  .btn-compare.active {
    background: #044394;
    color: #fff;
    border-color: #044394;
  }

  .btn-wishlist.active {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
  }

  .btn-wishlist.active i {
    animation: pop .25s ease;
  }

  .block-compare {
    font-size: 13px;
    color: #6b7280;
  }

  .block-wishlist {
    font-size: 13px;
    color: #6b7280;
  }

  .head-compare-wishlist {
    font-size: 14px;
    font-weight: 600;
    color: #044394;
    margin-bottom: 6px;
  }

  .block-compare-wishlist {
    border: 1px solid #e4e0d8;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
  }

  @keyframes pop {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.3);
    }

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