/* ===========================
   HONDA VĂN HẢI - GLOBAL CSS
   Reset, Variables, Layout, Header, Footer
=========================== */
:root {
  --red: #DC143C;
  --red-dark: #b01030;
  --red-darker: #8B0000;
  --dark: #0f0f14;
  --dark2: #1a1a2e;
  --text: #1a1a2a;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-secondary: #f5f5f7;
  --border: rgba(0, 0, 0, 0.06);
  --shadow: rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, sans-serif;
  --max-w: 1280px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff !important;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

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

ul,
ol {
  list-style: none
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none
}

button {
  cursor: pointer
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.text-red {
  color: var(--red)
}

/* ===== HEADER / NAVBAR FIX ===== */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar {
  width: 100%;
  background: linear-gradient(to right, var(--dark), var(--dark2));
  color: rgba(255, 255, 255, .8);
  display: none;
}

.navbar {
  width: 100%;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  transition: box-shadow .3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .3s;
  cursor: pointer
}

.btn--primary {
  background: linear-gradient(to right, var(--red), var(--red-dark));
  color: #fff;
  padding: 12px 28px;
  font-size: 14px
}

.btn--primary:hover {
  box-shadow: 0 8px 25px rgba(220, 20, 60, .25);
  transform: translateY(-2px)
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 12px 28px;
  font-size: 14px
}

.btn--outline:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff
}

.badge--new {
  background: var(--red)
}

.badge--hot {
  background: #ff9800
}

.badge--sale {
  background: #10b981
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  position: relative;
  display: inline-block
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 4px;
  background: var(--red);
  border-radius: 2px
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000
}

.topbar {
  background: #0f0f14;
  color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  font-size: 12px;
  letter-spacing: .03em
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s
}

.topbar__link:hover {
  color: #fff
}

.navbar {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  transition: box-shadow .3s
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar__inner > * {
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.logo__icon-wrap {
  position: relative;
  width: 44px;
  height: 44px
}

.logo__icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 12px;
  transform: rotate(-10deg);
  transition: transform .3s
}

.logo:hover .logo__icon-bg {
  transform: rotate(0)
}

.logo__icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px
}

.logo__title {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a2a;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo__title span {
  color: var(--red);
}

.logo__subtitle {
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Nav Desktop */
.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 2;
}

@media(min-width:1024px) {
  .nav-desktop {
    display: flex
  }
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  transition: color .2s
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .3s
}

.nav__link:hover {
  color: var(--red)
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%
}

.nav__link.active {
  color: var(--red)
}

/* Navbar Right */
.navbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1;
}

.header-search {
  display: none;
  position: relative;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1280px) {
  .header-search {
    display: flex;
  }
}

.header-search svg {
  color: var(--text);
  opacity: 0.7;
}

.header-search__input {
  width: 110px;
  font-size: 14px;
  color: var(--text);
  border: none;
  outline: none;
  background: transparent;
  padding: 4px 0;
}

.header-search__input::placeholder {
  color: #9ca3af;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px
}

@media(min-width:1024px) {
  .hamburger {
    display: none
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: .3s
}

.navbar__cta {
  display: none
}

@media(min-width:640px) {
  .navbar__cta {
    display: inline-flex
  }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: transparent;
  color: #1a1a2a;
}

.mobile-nav__inner {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav__search {
  position: relative;
  margin-bottom: 32px;
}

.mobile-nav__search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.mobile-nav__search-input {
  width: 100%;
  background: #f3f4f6;
  border: none;
  border-radius: 12px;
  padding: 12px 16px 12px 44px;
  font-size: 14px;
  color: #1f2937;
}

.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2a;
  padding: 12px 0;
}

.mobile-nav__link.active {
  color: var(--red);
}

.mobile-nav__item {
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.mobile-nav__link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__link-row svg {
  color: #9ca3af;
}

.mobile-nav__sub {
  padding-left: 20px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__sublink {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  padding: 8px 0;
}

.mobile-nav__bottom {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
}

.mobile-nav__contact-item svg {
  color: var(--red);
  margin-top: 2px;
}

.mobile-nav__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-weight: 700;
  border-radius: 12px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 60px 0;
  background: #0f0f14;
  color: #fff;
  position: relative;
  overflow: hidden
}

.page-header__glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 20, 60, .15) 0%, transparent 70%);
  pointer-events: none
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px
}

.breadcrumb a {
  transition: color .2s
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb__sep {
  opacity: .5
}

.breadcrumb__current {
  color: #fff
}

.page-header__title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px
}

.page-header__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  max-width: 600px
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden
}

.footer__accent {
  height: 4px;
  background: linear-gradient(to right, var(--red), #ff4d6d, var(--red))
}

.footer__newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.footer__newsletter-inner {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

@media(min-width:768px) {
  .footer__newsletter-inner {
    flex-direction: row
  }
}

.footer__newsletter-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px
}

.footer__newsletter-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5)
}

.footer__newsletter-form {
  display: flex;
  width: 100%
}

@media(min-width:768px) {
  .footer__newsletter-form {
    width: auto
  }
}

.footer__newsletter-input {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  width: 100%;
  transition: border-color .2s
}

@media(min-width:768px) {
  .footer__newsletter-input {
    width: 280px
  }
}

.footer__newsletter-input:focus {
  border-color: var(--red)
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, .3)
}

.footer__newsletter-btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  flex-shrink: 0;
  padding: 12px 24px
}

.footer__grid {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px
}

@media(min-width:768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.footer__brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800
}

.footer__brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em
}

.footer__brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .1em
}

.footer__about {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  margin-bottom: 24px
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  color: #fff
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer__links a,
.footer__links span {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  transition: all .2s;
  display: block
}

.footer__links a:hover {
  color: #fff;
  transform: translateX(4px)
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.4
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px
}

.footer__social {
  display: flex;
  gap: 12px
}

.footer__social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s
}

.footer__social-icon:hover {
  background: var(--red);
  transform: translateY(-3px)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .3)
}

@media(min-width:768px) {
  .footer__bottom-inner {
    flex-direction: row
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #10b981;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10000;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.toast.show {
  transform: translateX(-50%) translateY(0)
}

/* ===== FILTER PAGE (XE MAY / PHU KIEN) ===== */
.filter-page {
  padding: 40px 0 80px;
  background: #f8f9fa
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .02)
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .2s
}

@media(min-width:1024px) {
  .filter-toggle {
    display: none
  }
}

.filter-bar__right {
  display: flex;
  align-items: center;
  gap: 20px
}

.filter-bar__count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500
}

.filter-bar__sort {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer
}

.filter-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

@media(min-width:1024px) {
  .filter-layout {
    grid-template-columns: 280px 1fr
  }
}

/* Sidebar Styling */
.sidebar__inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .03);
  border: 1px solid var(--border)
}

.sidebar__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border)
}

.sidebar__header-text {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--dark)
}

.sidebar__search {
  position: relative;
  margin-bottom: 24px
}

.sidebar__search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted)
}

.sidebar__search input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: #f8f9fa;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 13px;
  transition: all .2s
}

.sidebar__search input:focus {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 20, 60, .1)
}

.sidebar__section {
  margin-bottom: 24px
}

.sidebar__section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
  cursor: pointer
}

.sidebar__section-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

/* Custom Radio Styling */
.radio-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  transition: all .2s;
  cursor: pointer;
  background: none;
  text-align: left;
  color: var(--text)
}

.radio-btn:hover {
  background: rgba(245, 245, 247, .7)
}

.radio-btn.active {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(220, 20, 60, .15)
}

.radio-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.radio-btn.active .radio-circle {
  border-color: #fff
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: none
}

.radio-btn.active .radio-dot {
  display: block
}

/* Custom Checkbox Styling */
.check-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  transition: all .2s;
  cursor: pointer;
  background: none;
  text-align: left;
  color: var(--text)
}

.check-btn:hover {
  background: rgba(245, 245, 247, .7)
}

.check-btn.active {
  background: rgba(220, 20, 60, .1);
  color: var(--red);
  font-weight: 600
}

.check-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.check-btn.active .check-box {
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.clear-filters {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
  background: none;
  cursor: pointer
}

.clear-filters:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(220, 20, 60, .05)
}

/* Category Filter Buttons */
.filter-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
  background: none;
  cursor: pointer
}

.filter-btn:hover {
  background: #f8f9fa
}

.filter-btn.active {
  background: var(--red);
  color: #fff;
  font-weight: 600
}

.filter-btn__count {
  font-size: 11px;
  opacity: .6;
  background: rgba(0, 0, 0, .05);
  padding: 2px 6px;
  border-radius: 4px
}

.filter-btn.active .filter-btn__count {
  background: rgba(255, 255, 255, .2)
}

/* ===== PRODUCT CARD (PREMIUM) ===== */
.product-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .5s;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease-out;
}

.product-card:hover .product-card__img {
  transform: scale(1.1);
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-card__body {
  padding: 20px;
}

.product-card__sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
  display: block;
}

.product-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  transition: color .2s;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.product-card:hover .product-card__name {
  color: var(--red)
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto
}

.product-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--red)
}

.product-card__price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: .6
}

.product-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(220, 20, 60, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s;
  backdrop-filter: blur(4px)
}

.product-card:hover .product-card__hover {
  opacity: 1
}

.product-card__eye {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
}

.product-card:hover .product-card__eye {
  transform: translateY(0)
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

@media(min-width:640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1280px) {
  .products-grid--4 {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* Animations */
[data-animate] {
  opacity: 0;
  transition: all .8s cubic-bezier(.4, 0, .2, 1)
}

[data-animate="fade-up"] {
  transform: translateY(30px)
}

[data-animate="slide-right"] {
  transform: translateX(-30px)
}

[data-animate="slide-left"] {
  transform: translateX(30px)
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0)
}

[data-animate="fade"].animated {
  opacity: 1
}

.no-results {
  grid-column: 1/-1;
  padding: 60px 0;
  text-align: center;
  color: var(--text-muted);
  font-weight: 500
}