/* =========================================
   CO KHI TAN PHAT - Modern Industrial Theme
   ========================================= */

:root {
  /* ============================================================
     Color palette — derived from the Tân Phát logo
       cyan gear:  #00B5E2
       magenta P:  #E91E63
       purple T:   #2D1B5E
     The CSS variable NAMES (--navy, --orange) are kept the same
     so existing rules don't break, but the VALUES are now the
     logo colors. Treat:
       --navy        = primary dark   (deep purple)
       --orange      = primary accent (magenta — CTAs, highlights)
       --yellow/cyan = secondary accent (cyan — badges, icons)
     ============================================================ */
  --navy: #2D1B5E;          /* deep purple — was navy #0A2540 */
  --navy-light: #3F2A9F;    /* purple lighter */
  --steel: #4A3F8E;         /* mid purple-grey */
  --orange: #E91E63;        /* magenta — primary accent */
  --orange-dark: #C2185B;   /* darker magenta */
  --cyan: #00B5E2;          /* logo cyan — secondary accent */
  --cyan-dark: #0095BD;
  --yellow: #00B5E2;        /* alias of cyan for legacy var(--yellow) usage */
  --light: #F5F7FA;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --shadow-sm: 0 2px 8px rgba(45, 27, 94, 0.08);
  --shadow-md: 0 8px 24px rgba(45, 27, 94, 0.12);
  --shadow-lg: 0 20px 50px rgba(45, 27, 94, 0.18);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}

.topbar-info .icon {
  color: var(--orange);
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 12px;
}

.topbar-social a:hover {
  background: var(--orange);
}

/* ============ HEADER ============ */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 32px;
}

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

.logo-mark {
  width: 56px;
  height: 56px;
  background: url('../images/logo.png') center/contain no-repeat, linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-weight: 800;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.footer .logo-mark {
  background: white url('../images/logo.png') center/contain no-repeat;
  padding: 4px;
}

.logo-text h1 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-text span {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

.nav > ul > li {
  position: relative;
}

.nav > ul > li > a {
  display: block;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  border-radius: 6px;
  position: relative;
}

.nav > ul > li > a:hover,
.nav > ul > li.active > a {
  color: var(--orange);
  background: rgba(233,30,99, 0.08);
}

.nav .has-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.6;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  border-top: 3px solid var(--orange);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--navy);
}

.dropdown li a:hover {
  background: var(--light);
  color: var(--orange);
  padding-left: 18px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  text-align: right;
}

.header-phone small {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-phone strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(233,30,99, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233,30,99, 0.45);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

.btn-ghost {
  background: white;
  color: var(--navy);
  border: 2px solid var(--gray-light);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 12px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--steel) 100%);
  color: white;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(233,30,99,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,184,0,0.10), transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(233,30,99, 0.15);
  border: 1px solid rgba(233,30,99, 0.4);
  color: var(--orange);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero h2 .accent::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(233,30,99, 0.25);
  z-index: -1;
}

.hero p.lead {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 540px;
}

.hero-stats .stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
}

.hero-stats .stat span {
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  height: 460px;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-6px);
}

.hero-card-1 {
  top: 0;
  left: 0;
  right: 60px;
  height: 240px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-1 .icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.hero-card-1 h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-card-1 p {
  font-size: 14px;
  opacity: 0.95;
}

.hero-card-2 {
  bottom: 30px;
  left: 40px;
  width: 220px;
}

.hero-card-2 .badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(233,30,99, 0.1);
  color: var(--orange);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card-2 h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.hero-card-2 small {
  color: var(--gray);
  font-size: 12px;
}

.hero-card-3 {
  bottom: 0;
  right: 0;
  width: 200px;
  background: var(--navy);
  color: white;
}

.hero-card-3 .ring {
  width: 50px;
  height: 50px;
  border: 3px solid var(--orange);
  border-right-color: transparent;
  border-radius: 50%;
  margin-bottom: 12px;
}

.hero-card-3 strong {
  font-size: 22px;
  font-weight: 800;
  display: block;
}

.hero-card-3 small {
  font-size: 12px;
  opacity: 0.7;
}

/* ============ SECTION ============ */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(233,30,99, 0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--gray);
  font-size: 17px;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--navy);
  color: white;
}

.section-dark .section-head h2 {
  color: white;
}

.section-dark .section-head p {
  color: rgba(255,255,255,0.7);
}

/* ============ FEATURE GRID ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--orange);
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature:hover::before {
  width: 100%;
}

.feature .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(233,30,99,0.1), rgba(233,30,99,0.2));
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ============ PRODUCT CATEGORIES =============
   NOTE: actual .cat-card / .cat-card-img / .cat-card-body rules
   live near the bottom of this file (search "Cat card") so they
   match the markup output by front-page.php.
   ============================================== */

/* ============ PRODUCT CARDS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

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

.product-card .product-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--steel);
  position: relative;
  overflow: hidden;
}

.product-card .product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(54,79,107,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.product-card .product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card .product-body {
  padding: 20px;
}

.product-card .product-body small {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card .product-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 12px;
  line-height: 1.4;
}

.product-card .product-body p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-card .product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .product-cta::after {
  content: '→';
  transition: var(--transition);
}

.product-card:hover .product-cta::after {
  transform: translateX(4px);
}

/* ============ CUSTOMERS LOGOS ============ */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}

.logo-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.logo-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.logo-card .logo-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.logo-card .logo-sub {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '⚙';
  position: absolute;
  font-size: 320px;
  opacity: 0.08;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-banner h3 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  background: white;
  color: var(--orange);
  position: relative;
  z-index: 1;
}

.cta-banner .btn:hover {
  background: var(--navy);
  color: white;
}

/* ============ PROCESS / STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -20px;
  left: 24px;
  background: var(--orange);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.step h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* ============ PAGE HERO (sub pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.85;
  max-width: 640px;
}

/* ============ TWO COLUMN ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col h2 {
  font-size: clamp(28px, 3.8vw, 38px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.two-col p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 16px;
}

.two-col .check-list {
  list-style: none;
  margin: 24px 0;
}

.two-col .check-list li {
  padding: 10px 0 10px 36px;
  position: relative;
  color: var(--text);
  font-weight: 500;
}

.two-col .check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.two-col .visual {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 180px;
  color: rgba(255,255,255,0.15);
}

.two-col .visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(233,30,99,0.3), transparent 60%);
}

.two-col .visual .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.two-col .visual .badge strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
}

.two-col .visual .badge small {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--navy);
  color: white;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(233,30,99,0.2), transparent 60%);
}

.contact-info-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item small {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--gray-light);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--gray);
  margin-bottom: 24px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(233,30,99,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============ FOOTER ============ */
.footer {
  background: #061B30;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer h4 {
  color: white;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--orange);
}

.footer p, .footer li {
  font-size: 14px;
  line-height: 1.8;
}

.footer ul {
  list-style: none;
}

.footer a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-info .small {
  font-size: 12px;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ============ FLOATING CONTACTS ============ */
.float-contacts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(233,30,99,0.4);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.zalo {
  background: #0068FF;
  box-shadow: 0 8px 20px rgba(0,104,255,0.4);
  font-weight: 800;
  font-size: 13px;
}

.float-btn.fb {
  background: #1877F2;
  box-shadow: 0 8px 20px rgba(24,119,242,0.4);
}

.float-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid currentColor;
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; max-width: 500px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-md);
    padding: 16px;
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; gap: 0; width: 100%; }
  .nav > ul > li { width: 100%; }
  .nav > ul > li > a { padding: 12px 16px; }
  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: 0;
    background: var(--light);
    margin: 0 0 0 16px;
    padding: 4px;
  }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .header .container { padding-top: 12px; padding-bottom: 12px; }

  section { padding: 56px 0; }
  .hero { padding: 56px 0 70px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-visual { height: 320px; }
  .hero-card-1 { right: 0; height: 200px; }
  .hero-card-2 { width: 180px; }

  .cta-banner { padding: 32px; flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .logo-text h1 { font-size: 16px; }
  .logo-text span { font-size: 10px; }
}
/* ============================================================================
   WordPress / WooCommerce specific additions for Tan Phat theme.
   This file is appended onto theme.css via the build script,
   so it inherits all CSS variables defined there (--navy, --orange, etc).
   ========================================================================= */

/* ---------- Shop archive (product category) ---------- */
.shop-layout{
	display:grid;
	grid-template-columns:280px 1fr;
	gap:32px;
	align-items:start;
}
.shop-sidebar{position:sticky; top:120px;}
.shop-toolbar{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	padding:14px 18px;
	background:#fff;
	border:1px solid #e7eaee;
	border-radius:10px;
	margin-bottom:20px;
	font-size:14px;
}
.shop-toolbar .woocommerce-result-count{margin:0; color:var(--steel);}
.shop-toolbar select.orderby{
	padding:8px 12px;
	border:1px solid #d6dadf;
	border-radius:8px;
	background:#fff;
	font:inherit;
}

.filter-card{
	background:#fff;
	border:1px solid #e7eaee;
	border-radius:12px;
	padding:18px 20px;
	margin-bottom:18px;
	box-shadow:var(--shadow-sm, 0 2px 6px rgba(45,27,94,.06));
}
.filter-card h4{
	margin:0 0 14px;
	font-size:15px;
	font-weight:700;
	color:var(--navy);
	text-transform:uppercase;
	letter-spacing:.5px;
}
.filter-cta{background:linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); color:#fff; border:none;}
.filter-cta h4, .filter-cta p{color:#fff;}
.filter-cta .btn-primary{background:#fff; color:var(--orange-dark);}
.filter-cta .btn-primary:hover{background:#fff8f1;}

.cat-list{list-style:none; margin:0; padding:0;}
.cat-list li{margin:0;}
.cat-list li a{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:9px 0;
	border-bottom:1px solid #f0f2f5;
	color:var(--navy);
	font-weight:500;
	font-size:14px;
	text-decoration:none;
}
.cat-list li:last-child a{border-bottom:0;}
.cat-list li a span{color:var(--steel); font-size:12px; font-weight:400;}
.cat-list li a:hover{color:var(--orange);}
.cat-list li.active > a{color:var(--orange); font-weight:700;}

/* ---------- Product cards (catalog) ---------- */
.products,
.shop-main ul.products{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:20px;
	list-style:none;
	margin:0;
	padding:0;
}
.product-card{
	background:#fff;
	border:1px solid #e7eaee;
	border-radius:12px;
	overflow:hidden;
	transition:transform .2s ease, box-shadow .2s ease;
	display:flex;
	flex-direction:column;
}
.product-card:hover{
	transform:translateY(-3px);
	box-shadow:0 12px 30px rgba(45,27,94,.10);
}
.product-card-link{display:block; color:inherit; text-decoration:none;}
.product-card-img{
	position:relative;
	aspect-ratio:4/3;
	background:linear-gradient(135deg,#eef2f7 0%,#e0e5ec 100%);
	overflow:hidden;
}
.product-card-img img,
.product-card-img .wp-post-image{width:100%; height:100%; object-fit:cover; display:block;}
.product-card-img .placeholder{
	width:100%; height:100%;
	display:flex; align-items:center; justify-content:center;
	font-size:54px; color:rgba(45,27,94,.18);
}
.product-card .badge-sale,
.product-card .onsale{
	position:absolute; top:10px; left:10px;
	background:var(--orange); color:#fff;
	font-size:11px; font-weight:700;
	padding:4px 10px; border-radius:4px;
	letter-spacing:.5px;
}
.product-card-body{padding:16px 18px 8px;}
.product-card-body .product-cat{
	display:block; font-size:11px; text-transform:uppercase; letter-spacing:1px;
	color:var(--orange); margin-bottom:6px; font-weight:700;
}
.product-card-body .product-cat a{color:inherit; text-decoration:none;}
.product-card-body h3,
.product-card-body .woocommerce-loop-product__title{
	font-size:16px; font-weight:700; color:var(--navy);
	margin:0 0 6px; line-height:1.4;
}
.product-card-body .product-sku{
	display:block; font-size:12px; color:var(--steel);
	margin-bottom:8px;
}
.product-card-price,
.product-card .price{
	font-size:18px; font-weight:800; color:var(--orange);
	margin-top:6px;
}
.product-card-price del,
.product-card .price del{color:var(--steel); font-weight:500; font-size:14px; margin-right:6px;}

.product-card-foot{
	display:flex; gap:8px;
	padding:0 18px 18px;
	margin-top:auto;
}
.product-card-foot .button,
.product-card-foot .added_to_cart{
	flex:1;
	display:inline-flex; align-items:center; justify-content:center;
	padding:10px 14px; border-radius:8px;
	background:var(--navy); color:#fff;
	font-size:13px; font-weight:600;
	text-decoration:none; border:0; cursor:pointer;
	transition:background .2s ease;
}
.product-card-foot .button:hover{background:var(--navy-light, #133653);}
.product-card-foot .btn-quote{
	flex:1;
	display:inline-flex; align-items:center; justify-content:center;
	padding:10px 14px; border-radius:8px;
	background:rgba(233,30,99,.1); color:var(--orange-dark);
	font-size:13px; font-weight:700;
	text-decoration:none;
}
.product-card-foot .btn-quote:hover{background:rgba(233,30,99,.18);}

/* ---------- Single product page ---------- */
.single-product-layout{margin:30px 0 50px;}
.single-product-grid{
	display:grid; grid-template-columns:1fr 1fr;
	gap:48px; align-items:start;
}
.single-product-gallery img{border-radius:12px;}
.woocommerce-product-gallery{margin:0;}
.woocommerce-product-gallery__wrapper{border:1px solid #e7eaee; border-radius:12px; overflow:hidden;}

.single-product-summary .product_title{
	font-size:32px; line-height:1.25; color:var(--navy); margin-bottom:14px;
}
.single-product-summary .price{
	font-size:30px; font-weight:800; color:var(--orange);
	padding:14px 0; border-top:1px dashed #e7eaee; border-bottom:1px dashed #e7eaee;
	margin-bottom:20px;
}
.single-product-summary .price del{font-size:18px; color:var(--steel); margin-right:10px;}
.single-product-summary .woocommerce-product-details__short-description{
	color:#3a4a5e; line-height:1.7; margin-bottom:24px;
}
.single-product-summary form.cart{
	display:flex; gap:10px; align-items:center; flex-wrap:wrap;
	margin:0 0 24px;
}
.single-product-summary .quantity input.qty{
	width:74px; padding:12px 10px;
	border:1px solid #d6dadf; border-radius:8px;
	text-align:center; font-weight:600;
}
.single-product-summary button.single_add_to_cart_button{
	background:var(--orange); color:#fff; border:0;
	padding:14px 28px; border-radius:8px;
	font-size:15px; font-weight:700; cursor:pointer;
	transition:background .2s ease;
}
.single-product-summary button.single_add_to_cart_button:hover{background:var(--orange-dark);}
.single-product-summary .product_meta{
	font-size:13px; color:var(--steel);
	border-top:1px solid #e7eaee; padding-top:14px;
}
.single-product-summary .product_meta > span{display:block; margin-bottom:4px;}

.single-quote-cta{
	background:linear-gradient(135deg,var(--navy),var(--navy-light));
	color:#fff; padding:16px 20px; border-radius:10px;
	margin:14px 0 20px; font-size:14px;
}
.single-quote-cta strong{display:block; font-size:13px; opacity:.7; margin-bottom:6px;}
.single-quote-cta a{color:var(--yellow,#ffb627); font-weight:800; font-size:18px; text-decoration:none;}
.single-quote-cta span{color:rgba(255,255,255,.5);}

.single-trust-list{list-style:none; margin:0; padding:0; font-size:14px;}
.single-trust-list li{padding:6px 0; color:#3a4a5e;}

.single-product-tabs .woocommerce-tabs ul.tabs{
	border-bottom:2px solid #e7eaee; padding:0; margin:0 0 20px;
	display:flex; flex-wrap:wrap; gap:4px; list-style:none;
}
.single-product-tabs .woocommerce-tabs ul.tabs li{
	margin:0; padding:0; background:none; border:0;
}
.single-product-tabs .woocommerce-tabs ul.tabs li a{
	display:block; padding:14px 22px;
	color:var(--steel); font-weight:600;
	text-decoration:none;
	border-bottom:3px solid transparent; margin-bottom:-2px;
}
.single-product-tabs .woocommerce-tabs ul.tabs li.active a{
	color:var(--navy); border-bottom-color:var(--orange);
}
.single-product-tabs .woocommerce-Tabs-panel h2{
	font-size:22px; color:var(--navy); margin:0 0 14px;
}

.related.products,
.upsells.products{margin-top:60px;}
.related.products > h2,
.upsells.products > h2{
	font-size:24px; color:var(--navy); margin-bottom:24px;
	padding-bottom:14px; border-bottom:2px solid var(--orange);
	display:inline-block;
}

/* ---------- News (blog) ---------- */
.news-layout{
	display:grid; grid-template-columns:1fr 320px;
	gap:36px; align-items:start;
}
.news-grid{
	display:grid; grid-template-columns:repeat(3, 1fr);
	gap:24px;
}
.news-main .news-grid{grid-template-columns:repeat(2, 1fr);}
.news-card{
	display:block; text-decoration:none; color:inherit;
	background:#fff; border:1px solid #e7eaee; border-radius:12px;
	overflow:hidden;
	transition:transform .2s ease, box-shadow .2s ease;
}
.news-card:hover{transform:translateY(-3px); box-shadow:0 12px 28px rgba(45,27,94,.08);}
.news-card-img{
	aspect-ratio:16/9;
	background:linear-gradient(135deg,#eef2f7,#e0e5ec) center/cover no-repeat;
}
.news-card-body{padding:18px 20px 22px;}
.news-card-body small{
	color:var(--steel); font-size:12px;
	text-transform:uppercase; letter-spacing:.5px; font-weight:600;
}
.news-card-body h3{
	font-size:17px; line-height:1.4; color:var(--navy);
	margin:8px 0 8px;
}
.news-card-body p{color:#5a6675; font-size:14px; line-height:1.6; margin:0 0 12px;}
.news-link{color:var(--orange); font-weight:700; font-size:13px;}

.news-sidebar{position:sticky; top:120px;}
.recent-posts{list-style:none; padding:0; margin:0;}
.recent-posts li{margin-bottom:14px;}
.recent-posts li a{
	display:flex; gap:12px; align-items:center;
	color:var(--navy); text-decoration:none;
}
.recent-thumb{
	width:64px; height:48px; flex-shrink:0;
	background:#eef2f7 center/cover no-repeat;
	border-radius:6px;
}
.recent-posts li span{display:flex; flex-direction:column; font-size:14px; font-weight:600; line-height:1.4;}
.recent-posts li small{color:var(--steel); font-weight:400; font-size:12px; margin-top:3px;}

/* ---------- Single news post ---------- */
.single-news{
	background:#fff;
	border:1px solid #e7eaee;
	border-radius:14px;
	padding:36px 40px;
}
.single-news-thumb{margin:-36px -40px 28px;}
.single-news-thumb img{display:block; width:100%; height:auto;}
.single-news-content{
	color:#2c3a4d; line-height:1.85; font-size:16px;
}
.single-news-content h2,
.single-news-content h3{color:var(--navy); margin:30px 0 12px;}
.single-news-content p{margin:0 0 16px;}
.single-news-content img{max-width:100%; height:auto; border-radius:10px; margin:16px 0;}
.single-news-content blockquote{
	border-left:4px solid var(--orange);
	padding:14px 20px; margin:20px 0;
	background:rgba(233,30,99,.05);
	font-style:italic; color:#3a4a5e;
}
.single-news-content ul, .single-news-content ol{padding-left:24px; margin:0 0 16px;}
.single-news-content li{margin-bottom:8px;}

.single-news-tags,
.single-news-share{
	margin-top:22px; padding-top:18px;
	border-top:1px solid #eaedf1;
	font-size:14px;
}
.single-news-tags a,
.single-news-share a{
	display:inline-block; padding:6px 12px; margin:0 4px 4px 0;
	background:#f5f7fa; color:var(--navy);
	border-radius:6px; text-decoration:none; font-weight:600;
}
.single-news-tags a:hover,
.single-news-share a:hover{background:var(--orange); color:#fff;}

.news-pager{
	display:flex; justify-content:space-between; gap:20px;
	margin-top:30px;
}
.news-pager a{
	display:block; padding:14px 18px;
	background:#f5f7fa; border-radius:10px;
	color:var(--navy); font-weight:600; text-decoration:none;
	max-width:48%;
}
.news-pager a:hover{background:var(--navy); color:#fff;}

.related-news{margin-top:40px;}
.related-news h3{
	font-size:22px; color:var(--navy); margin:0 0 20px;
	padding-bottom:12px; border-bottom:2px solid var(--orange);
	display:inline-block;
}

.post-meta{
	display:flex; flex-wrap:wrap; gap:20px;
	margin-top:14px; color:rgba(255,255,255,.85); font-size:14px;
}
.post-meta a{color:inherit;}

/* ---------- Pagination ---------- */
.tp-pagination,
.woocommerce-pagination{margin:36px 0; text-align:center;}
.tp-pagination .nav-links,
.woocommerce-pagination ul.page-numbers{
	display:inline-flex; gap:6px; list-style:none; padding:0; margin:0;
}
.tp-pagination .page-numbers,
.woocommerce-pagination .page-numbers{
	display:inline-flex; align-items:center; justify-content:center;
	min-width:42px; height:42px; padding:0 12px;
	background:#fff; border:1px solid #e1e5ea; border-radius:8px;
	color:var(--navy); font-weight:600; text-decoration:none;
}
.tp-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers.current{
	background:var(--orange); border-color:var(--orange); color:#fff;
}
.tp-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers:hover{
	background:var(--navy); color:#fff; border-color:var(--navy);
}

/* ---------- Page hero (compact variant) ---------- */
.page-hero.compact{padding:30px 0 18px;}
.page-hero.compact .breadcrumb a{color:rgba(255,255,255,.85);}

/* ---------- CTA section spacing wrapper ---------- */
.cta-section{padding:56px 0; background:var(--navy);}

/* ---------- Hero refinements ---------- */
.hero-grid{display:grid; grid-template-columns:1.15fr 1fr; gap:50px; align-items:center;}
.hero-content h1{font-size:54px; line-height:1.1; font-weight:900; color:#fff; margin:14px 0 18px;}
.hero-content p{font-size:18px; color:rgba(255,255,255,.85); line-height:1.7; max-width:560px;}
.text-orange{color:var(--orange);}
.hero-cta{display:flex; gap:14px; margin:28px 0;}
.btn-ghost{background:transparent; color:#fff; border:2px solid rgba(255,255,255,.4);}
.btn-ghost:hover{background:rgba(255,255,255,.1);}
.hero-stats{display:flex; gap:36px; margin-top:30px; padding-top:30px; border-top:1px solid rgba(255,255,255,.15);}
.hero-stats div strong{display:block; font-size:32px; font-weight:900; color:var(--orange);}
.hero-stats div small{color:rgba(255,255,255,.65); font-size:13px;}

.hero-visual{display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto auto; gap:18px;}
.hero-visual .hero-card{
	background:rgba(255,255,255,.07); backdrop-filter:blur(8px);
	border:1px solid rgba(255,255,255,.15);
	border-radius:14px; padding:24px;
	color:#fff;
}
.hero-visual .hero-card.big{grid-column:1/3;}
.hero-card-icon{font-size:38px; margin-bottom:10px;}
.hero-visual .hero-card h3{margin:0 0 8px; font-size:20px; color:#fff;}
.hero-visual .hero-card h4{margin:0; font-size:15px; color:#fff;}
.hero-visual .hero-card p{margin:0; color:rgba(255,255,255,.7); font-size:14px;}

/* ---------- Cat card (home product categories) ---------- */
.cat-card-img{aspect-ratio:4/3; background:linear-gradient(135deg,#eef2f7,#e0e5ec) center/cover no-repeat;}
.cat-card-img.placeholder{display:flex; align-items:center; justify-content:center; font-size:60px; color:rgba(45,27,94,.18);}
.cat-card-body{padding:18px 22px 22px;}
.cat-card-body h3{font-size:19px; color:var(--navy); margin:0 0 8px;}
.cat-card-body p{color:#5a6675; font-size:14px; margin:0 0 10px;}
.cat-link{color:var(--orange); font-weight:700; font-size:14px;}

.cat-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;}
.cat-card{
	display:block; text-decoration:none; color:inherit;
	background:#fff; border:1px solid #e7eaee; border-radius:12px;
	overflow:hidden; transition:transform .2s, box-shadow .2s;
}
.cat-card:hover{transform:translateY(-4px); box-shadow:0 14px 32px rgba(45,27,94,.10);}

/* ---------- Eyebrow (Elementor friendly) ---------- */
.eyebrow{
	display:inline-block;
	padding:6px 14px;
	background:rgba(233,30,99,.1);
	color:var(--orange);
	font-size:12px; font-weight:700;
	text-transform:uppercase; letter-spacing:1.5px;
	border-radius:4px;
	margin-bottom:14px;
}

.text-center{text-align:center;}

/* ---------- WP custom logo ---------- */
.custom-logo{
	width:56px; height:56px; border-radius:8px;
	display:block; object-fit:contain;
}
.custom-logo-link{display:block; line-height:0;}
.footer .custom-logo{background:#fff; padding:4px;}

/* ---------- Comments ---------- */
.comments-area{
	margin-top:40px; padding-top:30px;
	border-top:1px solid #eaedf1;
}
.comments-area h2.comments-title{
	font-size:22px; color:var(--navy); margin-bottom:20px;
}
.comment-list{list-style:none; padding:0; margin:0 0 30px;}
.comment-body{padding:16px; background:#f5f7fa; border-radius:10px; margin-bottom:14px;}
.comment-author .fn{color:var(--navy); font-weight:700;}
.comment-meta{font-size:12px; color:var(--steel); margin-bottom:8px;}
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input{
	width:100%; padding:11px 14px;
	border:1px solid #d6dadf; border-radius:8px; font:inherit;
}
.comment-form .form-submit input{
	background:var(--orange); color:#fff; border:0;
	padding:12px 24px; border-radius:8px; font-weight:700; cursor:pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
	.shop-layout{grid-template-columns:1fr;}
	.shop-sidebar{position:static;}
	.products, .shop-main ul.products{grid-template-columns:repeat(2, 1fr);}
	.news-layout{grid-template-columns:1fr;}
	.news-sidebar{position:static;}
	.news-main .news-grid{grid-template-columns:repeat(2, 1fr);}
	.single-product-grid{grid-template-columns:1fr; gap:30px;}
	.hero-grid{grid-template-columns:1fr; gap:30px;}
	.hero-content h1{font-size:42px;}
	.cat-grid{grid-template-columns:repeat(2, 1fr);}
}
@media (max-width: 640px){
	.products, .shop-main ul.products{grid-template-columns:1fr;}
	.news-grid{grid-template-columns:1fr;}
	.news-main .news-grid{grid-template-columns:1fr;}
	.cat-grid{grid-template-columns:1fr;}
	.single-news{padding:24px 20px;}
	.single-news-thumb{margin:-24px -20px 22px;}
	.product-card-foot{flex-direction:column;}
	.shop-toolbar{flex-direction:column; align-items:stretch; gap:10px;}
	.hero-content h1{font-size:34px;}
	.hero-stats{flex-wrap:wrap; gap:18px;}
	.hero-visual .hero-card.big{grid-column:1/2;}
	.hero-visual{grid-template-columns:1fr;}
}


.woocommerce ul.products li.product .button {
  display: inline-block;
  margin-top: 0 !important; border-radius: 8px !important;
  text-align: center;
}
